Skip to content

Instantly share code, notes, and snippets.

@jrmontag
Last active March 4, 2024 02:48
Show Gist options
  • Save jrmontag/1f46b64d986b04603b105ca3979a7afe to your computer and use it in GitHub Desktop.
Save jrmontag/1f46b64d986b04603b105ca3979a7afe to your computer and use it in GitHub Desktop.
shotspotter geojson (building on https://github.com/kevee/shotspotter-locations ) - map sometimes takes some refreshes
import json
import logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(message)s",
)
def main(input_file, output_file) -> None:
with open(input_file, "r") as f:
data: dict = json.load(f)
events = data["events"]
features = []
for idx, event in enumerate(events):
lat = float(event["lat"])
lon = float(event["lon"])
metadata = event["metadata"]
# geojson spec:
# https://datatracker.ietf.org/doc/html/rfc7946
geometry = {"type": "Point", "coordinates": [lon, lat]}
properties = {"metadata": ":".join(metadata)}
feature = {"type": "Feature", "geometry": geometry, "properties": properties}
features.append(feature)
if idx % 1000 == 0:
logging.info(f"Processed {idx} events")
geojson = {"type": "FeatureCollection", "features": features}
with open(output_file, "w") as f:
json.dump(geojson, f)
if __name__ == "__main__":
input_file = "shots.json"
output_file = "shots.geojson"
logging.info(f"Reading: {input_file}; writing: {output_file}")
main(input_file, output_file)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.5544,
-33.907734
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.555531,
-33.910441
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.553066,
-33.910902
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.55266,
-33.908872
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.547553,
-33.910655
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.5413866667,
-33.9120166667
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.54607,
-33.909441
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.547939,
-33.906135
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.551743,
-33.906051
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.5420583333,
-33.9091583333
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.538727,
-33.910557
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.539237,
-33.907721
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.540957,
-33.905915
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.54244,
-33.907363
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.544308,
-33.904622
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.548189,
-33.903531
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.546569,
-33.901628
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.5434233333,
-33.9020933333
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.549899,
-33.909751
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.535508,
-33.911478
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.532189,
-33.914263
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.533853,
-33.915837
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
25.536604,
-33.913565
]
},
"properties": {
"metadata": "ZANelsonMandelaBayHelenvale:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6463316667,
-25.3529516667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6383383333,
-25.37138
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.635444,
-25.342125
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6687116667,
-25.363075
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.626065,
-25.3565283333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.618135,
-25.346003
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6569733333,
-25.3481633333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.637771,
-25.360839
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.621675,
-25.370371
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6249516667,
-25.3370533333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.551397,
-25.279837
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6600716667,
-25.3339083333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6349,
-25.3500516667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6524166667,
-25.3790483333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6170716667,
-25.3577716667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.629235,
-25.364365
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.66928,
-25.3518833333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6474216667,
-25.3341716667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6576516667,
-25.3588233333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.630915,
-25.377787
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6399966667,
-25.382595
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6626716667,
-25.37229
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6490983333,
-25.3431933333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6362866667,
-25.3260433333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6523416667,
-25.371875
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6125466667,
-25.36575
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6021166667,
-25.3682033333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6034883333,
-25.3782233333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5906083333,
-25.3744366667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5719116667,
-25.3703616667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5607166667,
-25.3652466667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.585015,
-25.3543733333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.522397,
-25.354195
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6035216667,
-25.3782933333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5792266667,
-25.3340983333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.591508,
-25.328655
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.604943,
-25.358568
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6182183333,
-25.380135
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.586465,
-25.34041
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5491566667,
-25.3632183333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6677933333,
-25.3424316667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5379516667,
-25.3629683333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.582507,
-25.365825
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5728183333,
-25.359225
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.57574,
-25.34586
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5386833333,
-25.3188216667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5624133333,
-25.312495
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5740316667,
-25.3243583333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5818416667,
-25.3228083333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5991516667,
-25.338365
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6079116667,
-25.3464216667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.536935,
-25.303995
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6354583333,
-25.3422
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5664533333,
-25.3309766667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.552495,
-25.33697
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5385216667,
-25.3407783333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5639816667,
-25.342275
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5959483333,
-25.3503866667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.53634,
-25.35093
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5251333333,
-25.3410383333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5301966667,
-25.3276916667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5572866667,
-25.3260866667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5509983333,
-25.3490633333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6061616667,
-25.325225
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5411816667,
-25.3296433333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.59363,
-25.36189
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5508083333,
-25.3183666667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6117116667,
-25.3353216667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6061733333,
-25.38556
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.59601,
-25.3505816667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.52757,
-25.25798
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5896366667,
-25.38254
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6473633333,
-25.3342833333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.560145,
-25.354405
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.5969133333,
-25.385305
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.620925,
-25.3265366667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.52565,
-25.267772
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.626035,
-25.3565716667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.493803,
-25.243342
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.64589,
-25.3650183333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.520307,
-25.231032
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.508593,
-25.2281
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.6308866667,
-25.3777316667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.600995,
-25.264501
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.540537,
-25.250178
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.566981,
-25.259184
]
},
"properties": {
"metadata": "ZAKrugerNationalParkIPZ:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4330216667,
-25.465355
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.44526,
-25.46193
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.454888,
-25.461538
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4681666667,
-25.4484983333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.45606,
-25.4556116667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4407666667,
-25.4521433333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.42262,
-25.4599033333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.42532,
-25.448765
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4649266667,
-25.443355
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4566,
-25.432675
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.435565,
-25.43351
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.430065,
-25.440697
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.406995,
-25.443782
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.3969616667,
-25.4340833333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4467383333,
-25.40698
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.438515,
-25.3846816667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4013566667,
-25.4002033333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.431018,
-25.424573
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.407042,
-25.431065
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4196333333,
-25.4272283333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4347316667,
-25.4106683333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4654666667,
-25.458795
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4530166667,
-25.4163533333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4210416667,
-25.3927566667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.42016,
-25.407115
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.39047,
-25.410085
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4652133333,
-25.4695816667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4072933333,
-25.4173383333
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4524083333,
-25.442145
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.393508,
-25.427545
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
31.4126283333,
-25.4156716667
]
},
"properties": {
"metadata": "ZAKrugerNationalParkBergenDal:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6712583333,
41.07223
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6454116667,
41.0717333333
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6416116667,
41.0681966667
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6422083333,
41.072065
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6556966667,
41.06498
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.661725,
41.0666666667
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.657155,
41.06051
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6658816667,
41.06638
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.645845,
41.0759083333
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.65937,
41.07904
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.656956,
41.071312
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6517216667,
41.0734066667
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6426183333,
41.0785466667
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.66367,
41.0783133333
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.661969,
41.07202
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6763483333,
41.0708
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.6573383333,
41.0759116667
]
},
"properties": {
"metadata": "YoungstownOH:Youngstown-Warren, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7863116667,
42.2641983333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79062,
42.266525
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7914533333,
42.2700766667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79335,
42.2739083333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7878633333,
42.2716133333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7945666667,
42.27774
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7907716667,
42.2798066667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.784405,
42.2669233333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7796166667,
42.2720716667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7774433333,
42.2766233333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7754466667,
42.2716116667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7696883333,
42.2709983333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7703633333,
42.26591
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.772625,
42.2622333333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78364,
42.2600416667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7956833333,
42.2601633333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7975866667,
42.2565183333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7827133333,
42.25651
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7738066667,
42.2572316667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7784683333,
42.254565
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77555,
42.2527916667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.790595,
42.25157
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7926633333,
42.2547333333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.792155,
42.25028
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7849016667,
42.24932
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-9999,
-9999
]
},
"properties": {
"metadata": "WorcesterMA:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78182,
42.2463
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7851933333,
42.244515
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7907566667,
42.2410783333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7951633333,
42.2428966667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8008783333,
42.2430283333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7962866667,
42.2385716667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7979983333,
42.2709366667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.800332,
42.271885
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.81057,
42.2736366667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8055566667,
42.2723233333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8145316667,
42.2705116667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.804515,
42.2444583333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.811375,
42.2425433333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8177616667,
42.2435033333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8236883333,
42.243285
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.832115,
42.2510483333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8231733333,
42.2516866667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.828065,
42.2547916667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.82375,
42.2582216667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8193983333,
42.2623416667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79622,
42.26789
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7993533333,
42.2625833333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8007,
42.2665666667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8035716667,
42.2692183333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.809977,
42.266873
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8151216667,
42.2592216667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.80326,
42.25928
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.80678,
42.2628816667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8178166667,
42.25425
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.809855,
42.2492033333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8039116667,
42.2509933333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8148883333,
42.2499766667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8020283333,
42.2647966667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.80722,
42.269015
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8351983333,
42.24786
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8279583333,
42.2437216667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8174233333,
42.2662716667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8356016667,
42.2441733333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7833866667,
42.25265
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.8241566667,
42.247645
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79492,
42.24665
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.792325,
42.2390283333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7843433333,
42.2755516667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77783,
42.2667683333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7786433333,
42.261335
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7872316667,
42.25576
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7780316667,
42.2506516667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7768866667,
42.2806333333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7795116667,
42.2796416667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7794183333,
42.2825583333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78248,
42.28152
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78647,
42.28213
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.783815,
42.2768533333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.795805,
42.280282
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.796855,
42.28416
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7946616667,
42.2879916667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7905283333,
42.2895583333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78604,
42.2898116667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.785325,
42.287535
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7905416667,
42.2857383333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79885,
42.2764983333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7936416667,
42.28291
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7901033333,
42.28211
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.788605,
42.28791
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.783155,
42.2927016667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.79069,
42.2933683333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7888516667,
42.2965016667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7894133333,
42.3002966667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7895433333,
42.303425
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7891083333,
42.3066233333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7845983333,
42.308825
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7751266667,
42.3115883333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7705816667,
42.3137283333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7691083333,
42.309175
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7750983333,
42.3080683333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77044,
42.3042083333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77176374,
42.30671291
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7676166667,
42.3050966667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7636733333,
42.3031866667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7652516667,
42.2987666667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7688033333,
42.2963416667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77523,
42.294375
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.789055,
42.291695
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7792683333,
42.293215
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.775725,
42.3041683333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.768755,
42.29913
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7828116667,
42.3051983333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7716466667,
42.3017316667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7800416667,
42.3071566667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7675266667,
42.3031783333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78462,
42.2984033333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78429,
42.3016066667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.78691,
42.3049633333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7701933333,
42.2753183333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.786205,
42.2945883333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7798633333,
42.3111966667
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.777935,
42.29636
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.775995,
42.2989733333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.77628,
42.3020983333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7795833333,
42.3034483333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-71.7813733333,
42.2995733333
]
},
"properties": {
"metadata": "WorcesterMA:Worcester, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.25051,
36.1327333333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2483816667,
36.1299283333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2436133333,
36.1329083333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2456633333,
36.1271133333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.239055,
36.1314766667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2377416667,
36.1287433333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.232365,
36.128495
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2327783333,
36.1242933333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2280433333,
36.1250716667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22851,
36.1210933333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2228716667,
36.12019
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.233865,
36.120485
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.244735,
36.1213233333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2496133333,
36.124205
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2539766667,
36.1162533333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.239835,
36.1166966667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2343366667,
36.1170083333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.230965,
36.1159366667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2199016667,
36.1185616667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2222,
36.1170916667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2204833333,
36.1124716667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.21832,
36.1152066667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2275966667,
36.1097266667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.233255,
36.1140266667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.23812,
36.11165
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.241386,
36.113752
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.242465,
36.10974
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2461433333,
36.1093033333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2512,
36.1118366667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2343766667,
36.1103333333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2304183333,
36.1075166667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2255516667,
36.1069333333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2205933333,
36.1089416667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2138466667,
36.11149
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2179383333,
36.1061366667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2197416667,
36.09889
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2302783333,
36.1046033333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2308066667,
36.100085
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2384866667,
36.099445
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2347516667,
36.1047883333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.226005,
36.1138966667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2450333333,
36.1324816667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2271333333,
36.1168133333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2412966667,
36.1284416667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2319066667,
36.1189133333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2230066667,
36.1151616667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2476633333,
36.11806
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2122966667,
36.1032183333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2492383333,
36.115565
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.22244,
36.1051633333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2284083333,
36.1054666667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2242033333,
36.1107216667
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.24529,
36.11289
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.2322941667,
36.0980133333
]
},
"properties": {
"metadata": "WinstonSalemNC:Winston-Salem, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.885675,
34.2178666667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8786616667,
34.2131333333
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.874305,
34.2179533333
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8856916667,
34.214395
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8834716667,
34.223315
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8814016667,
34.220455
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.882985,
34.2140883333
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8711083333,
34.2203966667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8730583333,
34.2225466667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8747016667,
34.22767
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.87023,
34.2279416667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8673366667,
34.2279916667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8753116667,
34.229295
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.872085,
34.23653
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8649583333,
34.23665
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8634133333,
34.2356816667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8645566667,
34.2323083333
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.876855,
34.22685
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8675616667,
34.2267033333
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.87844,
34.2238066667
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8672983333,
34.23248
]
},
"properties": {
"metadata": "WilmingtonNCEast:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
0,
0
]
},
"properties": {
"metadata": "WilmingtonNC:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9241266667,
34.226115
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.93997,
34.2421716667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.932745,
34.2125316667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.943485,
34.217034
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9507983333,
34.2385666667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.926644,
34.222495
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9405433333,
34.24992
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9365866667,
34.2288766667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9261866667,
34.230055
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.94531,
34.2258033333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.94134,
34.2527216667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9348766667,
34.2187716667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.946605,
34.2204966667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.936585,
34.2151416667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9423566667,
34.23003
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9457133333,
34.2503966667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9297366667,
34.2154816667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.929165,
34.2413283333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.942335,
34.2215266667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9416583333,
34.2175933333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.93218,
34.23721
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.92904,
34.22915
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.92622,
34.217599
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9382816667,
34.23572
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9383366667,
34.231055
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9304483333,
34.2257033333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.941,
34.2455233333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9266383333,
34.2214316667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9379383333,
34.24875
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9486816667,
34.2408083333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9472366667,
34.2328783333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.94856,
34.2281416667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9381733333,
34.2452083333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9392666667,
34.2265733333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.949536,
34.246364
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9451783333,
34.2376916667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.914285,
34.230365
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9202483333,
34.2392066667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9128366667,
34.2450583333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9004816667,
34.24284
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9010616667,
34.2506466667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9018716667,
34.2384833333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9236966667,
34.2425416667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.920965,
34.2488
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9165866667,
34.252045
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9206233333,
34.2529883333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.92328,
34.2519166667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9133083333,
34.2416666667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.90895,
34.2391983333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9112,
34.237704
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8937716667,
34.2423916667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9004466667,
34.2326566667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9039,
34.2300116667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9061483333,
34.2403916667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.918495,
34.2290016667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9154066667,
34.23885
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.907795,
34.24729
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9189416667,
34.2492966667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9014083333,
34.2516133333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.910335,
34.2344333333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9000033333,
34.2390033333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.8944083333,
34.244295
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.930225,
34.25058
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9191733333,
34.2555866667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9279216667,
34.2355383333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.907039,
34.243656
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9043266667,
34.24063
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9207466667,
34.2311716667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.93067,
34.2433966667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.932028,
34.219838
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.945275,
34.2425183333
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.92551,
34.2135916667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.9021716667,
34.2359716667
]
},
"properties": {
"metadata": "WilmingtonNC:Wilmington, NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5392916667,
39.7402033333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54023,
39.737655
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.540525,
39.7310166667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5499666667,
39.72663
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54652,
39.732145
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5481666667,
39.7368633333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5443083333,
39.7406083333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5403916667,
39.7440833333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5292616667,
39.74863
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5401883333,
39.753355
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5469816667,
39.7428883333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5525516667,
39.740755
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.557375,
39.74041
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5631983333,
39.7386833333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5689883333,
39.7321283333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5733983333,
39.7379416667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5715,
39.7432233333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.562285,
39.745395
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5583466667,
39.7494433333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.53824,
39.760263
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5487666667,
39.7611833333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.56121,
39.7541616667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5627966667,
39.7514
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5489233333,
39.74564
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54816,
39.7578416667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54218,
39.7581
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.570405,
39.7367783333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.566755,
39.749935
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5411783333,
39.732655
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5717366667,
39.7352933333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.552024,
39.747839
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.560925,
39.758605
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5686983333,
39.7348033333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.546945,
39.747185
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5655533333,
39.7406616667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5344383333,
39.7459033333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.557035,
39.7441783333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5500766667,
39.751135
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5455916667,
39.737335
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5273466667,
39.7513266667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5505433333,
39.7432166667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.536775,
39.7576616667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5698383333,
39.7475916667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.551978,
39.76067
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5373966667,
39.74794
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5437583333,
39.7466183333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5389583333,
39.728665
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5477166667,
39.72612
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5448533333,
39.7297166667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5496533333,
39.756525
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5330183333,
39.7481733333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.563962,
39.754253
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.55947,
39.760415
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5414983333,
39.7507166667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.55509,
39.748085
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5543083333,
39.75453
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5709216667,
39.7411333333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5601166667,
39.74218
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5530766667,
39.7457016667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5614516667,
39.7623366667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5658283333,
39.7617966667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5719816667,
39.7581283333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.58128,
39.7420333333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.580805,
39.75157
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5795216667,
39.7490716667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.57699,
39.7483033333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5740933333,
39.7537683333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.57607,
39.7502416667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.566715,
39.75684
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.570245,
39.7539416667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5740116667,
39.7470733333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.574845,
39.7441533333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5687283333,
39.751975
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5361716667,
39.742265
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5323033333,
39.742655
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.54048,
39.76472
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5304116667,
39.7678433333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.53312,
39.7643016667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5211583333,
39.7614533333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.525265,
39.7599916667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5197033333,
39.7519966667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5223383333,
39.7482516667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.52595,
39.750055
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5297266667,
39.7443783333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5277466667,
39.7468083333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5275083333,
39.7550933333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5270066667,
39.7626233333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5317516667,
39.7572783333
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.5321133333,
39.7519216667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.524475,
39.7643866667
]
},
"properties": {
"metadata": "WilmingtonDE:Philadelphia-Camden-Wilmington, PA-NJ-DE-MD"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0993783333,
26.714285
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0929116667,
26.7143483333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.09375,
26.7168966667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0905466667,
26.715105
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0890866667,
26.7163666667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.08482,
26.7267783333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0825183333,
26.7194566667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0808916667,
26.71907
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0870266667,
26.7142966667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0904366667,
26.71228
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.093145,
26.7119933333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.089705,
26.7091183333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0952216667,
26.7091983333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0934883333,
26.70685
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0888166667,
26.7069366667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.08744,
26.7112516667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.085585,
26.7088833333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.08313,
26.710595
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0830066667,
26.7075583333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.080375,
26.7102683333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0792433333,
26.7091
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0775466667,
26.711885
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0790133333,
26.71371
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0772483333,
26.7169433333
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0753,
26.710195
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.08341,
26.7125866667
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0751566667,
26.718735
]
},
"properties": {
"metadata": "WestPalmBeachFLWest:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06023,
26.7702566667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0515616667,
26.77093
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05435,
26.76622
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0642233333,
26.766765
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.056535,
26.770125
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05516,
26.76544
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0571933333,
26.76525
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0671516667,
26.7644766667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0597666667,
26.7669233333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0574683333,
26.76833
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0773366667,
26.71689
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0684016667,
26.6964833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06665,
26.69519
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.065655,
26.6982433333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0623583333,
26.694315
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06209,
26.6977516667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0582866667,
26.6961833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0560766667,
26.6937216667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.055385,
26.6976966667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0568216667,
26.7007633333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.053365,
26.7022383333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.056305,
26.7025033333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05284,
26.706905
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05032,
26.7044833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0506583333,
26.7072866667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0514866667,
26.70888
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.055025,
26.7095833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05337,
26.7114916667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0495066667,
26.7127683333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0543,
26.7140833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0523883333,
26.7160016667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0533816667,
26.7179066667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.049268,
26.72075
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0537983333,
26.7225383333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0496033333,
26.7242366667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0542983333,
26.7251466667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0504083333,
26.7275816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0555283333,
26.7285583333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0504233333,
26.7308916667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0552783333,
26.7337083333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.049813,
26.733048
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05703,
26.7362266667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05334,
26.7388966667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0562033333,
26.7404966667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0523433333,
26.7413383333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0560383333,
26.7430916667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.052195,
26.7450916667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.055175,
26.7467233333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.052695,
26.7495866667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05679,
26.751325
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0533816667,
26.7519216667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.055615,
26.7549816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0530116667,
26.7556433333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0552483333,
26.7580216667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0528133333,
26.7602416667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05516,
26.7609283333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0525366667,
26.7623733333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05453,
26.7630266667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0572766667,
26.7623716667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05945,
26.7521966667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0592166667,
26.74952
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0560466667,
26.749365
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0600166667,
26.7460183333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.060255,
26.743105
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.060295,
26.740335
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0592816667,
26.7365766667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0601883333,
26.73454
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0596983333,
26.730755
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0574283333,
26.7272233333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.058475,
26.7243666667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0582866667,
26.7168233333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0575066667,
26.7141816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05996,
26.71062
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0590066667,
26.7076483333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.055955,
26.708305
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06384,
26.70966
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.062638,
26.714553
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0599333333,
26.7154633333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0628683333,
26.71832
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0618116667,
26.7228
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0604616667,
26.72731
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0611033333,
26.7301733333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06269,
26.732745
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0641883333,
26.7378283333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06367,
26.7402583333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.064,
26.7444666667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0628833333,
26.7472
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0619733333,
26.7502216667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.06303,
26.7522783333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0650533333,
26.75114
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0666866667,
26.7476133333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0689233333,
26.7443816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0700083333,
26.7482683333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0669666667,
26.7407466667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0680766667,
26.7296166667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.069205,
26.7423116667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.063865,
26.7347666667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0664266667,
26.7293783333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0703216667,
26.72901
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0660733333,
26.7257633333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0685633333,
26.7222716667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0650233333,
26.721385
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0676233333,
26.7200033333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05781,
26.7191266667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0614166667,
26.7051866667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0607983333,
26.7013633333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0648366667,
26.7017833333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.068386,
26.69815
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.056925,
26.7118816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0569266667,
26.7177866667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.05479,
26.7207466667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.069405,
26.7259116667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.073275,
26.73009
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.075505,
26.72922
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0762816667,
26.726325
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0756633333,
26.7248616667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0762216667,
26.7226633333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0751566667,
26.718735
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0733133333,
26.72182
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0702316667,
26.7215333333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0708983333,
26.7200866667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0706233333,
26.7239433333
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0721266667,
26.72604
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0573416667,
26.7591966667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-80.0621083333,
26.7200816667
]
},
"properties": {
"metadata": "WestPalmBeachFLEast:Miami-Fort Lauderdale-West Palm Beach, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0728983333,
33.9910866667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0756183333,
33.9952983333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0853983333,
33.9813116667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0807816667,
33.981465
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0858216667,
33.98717
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0831216667,
33.9847166667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0753333333,
33.9831466667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.07063,
33.9861416667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0685516667,
33.9895383333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0732183333,
33.9874983333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0811933333,
33.9908233333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0689033333,
33.99741
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0726316667,
33.9974733333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0866533333,
33.9936616667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0804716667,
33.9938066667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.082545,
34.0002316667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0698033333,
34.0035066667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.07663,
34.0011316667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0747483333,
34.00067
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0763616667,
33.9964733333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.07548,
33.99348
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0772316667,
33.9889916667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0707416667,
34.00186
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0767666667,
33.998615
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0829733333,
33.99256
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0817866667,
33.9837383333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0704583333,
33.993245
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0793466667,
33.9923166667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.0806016667,
33.9958783333
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.078695,
33.9841466667
]
},
"properties": {
"metadata": "WestColumbiaSC:Columbia, SC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9999833333,
38.823365
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9799,
38.8700433333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9719416667,
38.8693633333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.976135,
38.86638
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9819733333,
38.8669083333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.999365,
38.8473566667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99554,
38.85994
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.003215,
38.840775
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.992655,
38.833825
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9717133333,
38.8568966667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.983509,
38.841597
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9849966667,
38.8357733333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0058316667,
38.8374866667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00393,
38.8244516667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.998105,
38.842345
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.96954,
38.8535916667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991855,
38.84112
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9685066667,
38.859175
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9804366667,
38.8480283333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9732416667,
38.8495733333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.986822,
38.844689
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0000683333,
38.8361066667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9969533333,
38.856555
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0072116667,
38.8299283333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9899816667,
38.8415833333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9656916667,
38.85259
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9898566667,
38.86589
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9979766667,
38.8619466667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9858083333,
38.867305
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9936983333,
38.8621116667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9761683333,
38.846365
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9970933333,
38.8460166667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9806966667,
38.844695
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0061416667,
38.8272433333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.992031,
38.84395
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99827,
38.8273116667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.006435,
38.832575
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.984085,
38.8461333333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0007166667,
38.8268333333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0024183333,
38.8277183333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9707433333,
38.8515783333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98807,
38.8612516667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9951266667,
38.82888
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9759083333,
38.8439033333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.970515,
38.84563
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9837333333,
38.8631783333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9657366667,
38.8502033333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9805183333,
38.8620433333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98361,
38.8605183333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.973395,
38.8553683333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9672933333,
38.848115
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9688366667,
38.8471683333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.978805,
38.8505833333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.983395,
38.8480083333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9837116667,
38.8514633333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9875333333,
38.8537616667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9826133333,
38.85644
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9886833333,
38.8563516667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.995377,
38.832321
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.999975,
38.823395
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.001175,
38.82185
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01012,
38.8186066667
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0101683333,
38.8228
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00851,
38.8238033333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0132066667,
38.8251083333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.008375,
38.8267483333
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0135583333,
38.828145
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0094416667,
38.831335
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.007505,
38.83472
]
},
"properties": {
"metadata": "WashingtonDC7D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9936983333,
38.8621116667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9535683333,
38.8874866667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9489166667,
38.8854883333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9329066667,
38.9093833333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9190766667,
38.8854233333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.964015,
38.8747783333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.956618,
38.874542
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9544883333,
38.8704483333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.915035,
38.8955833333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9644766667,
38.87751
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9588983333,
38.87705
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9799,
38.8700433333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9260966667,
38.8926733333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9477866667,
38.8688416667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9502766667,
38.8658083333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9300566667,
38.905775
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9193016667,
38.896075
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9448383333,
38.8692233333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.92058,
38.8903783333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9372416667,
38.9041566667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.93623,
38.91201
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.94902,
38.8931983333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.92909,
38.8972183333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9361466667,
38.873055
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9511166667,
38.891155
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9258616667,
38.8836266667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.93705,
38.8786216667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9170266667,
38.88901
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.933775,
38.8963666667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9687066667,
38.8723883333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9308616667,
38.8856316667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9430483333,
38.8924716667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9369866667,
38.8806516667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9422183333,
38.8767266667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9530916667,
38.8839716667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.93873,
38.8936116667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9399333333,
38.8869433333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9449466667,
38.8909266667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.93402,
38.8824683333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.912015,
38.893505
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9322033333,
38.893175
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9240983333,
38.9003733333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9334516667,
38.8907616667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.948325,
38.8888766667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.924618,
38.904167
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.95984,
38.8686083333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9476883333,
38.897155
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9405633333,
38.9014416667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.941885,
38.8836466667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9524733333,
38.9011083333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.94912,
38.90133
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9381116667,
38.8999483333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.95782,
38.895025
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.96526,
38.8721183333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9334866667,
38.9014783333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9599316667,
38.8938083333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9231433333,
38.8869116667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.96017,
38.87993
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9187916667,
38.8995366667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9411033333,
38.8967366667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.95052,
38.8716466667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9436333333,
38.8798666667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9612066667,
38.8900483333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9477966667,
38.9009566667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.954895,
38.8939666667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9122083333,
38.890765
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.931325,
38.87644
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9467683333,
38.8872183333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9224066667,
38.896895
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9500133333,
38.8891516667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9408633333,
38.9088566667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.943415,
38.9046016667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9396716667,
38.9125066667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9410733333,
38.8858433333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.939975,
38.903515
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9429733333,
38.9047366667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9463166667,
38.9065233333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9508866667,
38.90762
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9529433333,
38.9058416667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9502133333,
38.9036016667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.946165,
38.90216
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9489216667,
38.9047066667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9719416667,
38.8693633333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.976135,
38.86638
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9819733333,
38.8669083333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9578866667,
38.8832216667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9538983333,
38.8822466667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9314533333,
38.906155
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9685066667,
38.859175
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9898566667,
38.86589
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9858083333,
38.867305
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98807,
38.8612516667
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9837333333,
38.8631783333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9805183333,
38.8620433333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98361,
38.8605183333
]
},
"properties": {
"metadata": "WashingtonDC6D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02163,
38.897875
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0217066667,
38.90135
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0185383333,
38.894365
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0146733333,
38.8928816667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00852,
38.897925
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0100483333,
38.8961133333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0134066667,
38.8968716667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0156266667,
38.89799
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0135416667,
38.894095
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.982867,
38.895962
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.990645,
38.888445
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.983245,
38.8895266667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.993575,
38.897561
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9880433333,
38.890375
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.97443,
38.887475
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.978881,
38.892415
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98875,
38.892191
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.988015,
38.8951416667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.972664,
38.890246
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.982065,
38.8880083333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99033,
38.9012266667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.986615,
38.8986983333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9871566667,
38.8876233333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9845566667,
38.8851366667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9875583333,
38.8859316667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0215516667,
38.9080683333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0177766667,
38.9028466667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0180116667,
38.91019
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.017132,
38.904987
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0131933333,
38.9076
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0155566667,
38.9123366667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01444,
38.91942
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0148033333,
38.9270916667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0102766667,
38.9286883333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9762783333,
38.9046016667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9809966667,
38.90568
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9669166667,
38.9324483333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.96625,
38.930115
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9868916667,
38.9074783333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9782633333,
38.927725
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9609016667,
38.9314233333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98645,
38.924165
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991835,
38.9081233333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9846666667,
38.9253516667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0042733333,
38.9198383333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0041633333,
38.91377
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9914533333,
38.90378
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095066667,
38.9050116667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9902783333,
38.910005
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.968225,
38.9363183333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9883516667,
38.9123983333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9844,
38.9136483333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9740983333,
38.917695
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.973345,
38.9295733333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99399,
38.916638
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9883216667,
38.9038433333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9990083333,
38.9195933333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.978495,
38.9209833333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9906283333,
38.9202016667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991405,
38.92498
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9943416667,
38.9221916667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99827,
38.9231083333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.997642,
38.911036
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9762066667,
38.9191866667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9944583333,
38.9072866667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.980235,
38.908105
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0002416667,
38.9069133333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991871,
38.915987
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.005735,
38.910006
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9834566667,
38.9111116667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0036733333,
38.9122416667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0086733333,
38.9223183333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0003883333,
38.9150216667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9683833333,
38.92361
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.972945,
38.92219
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0028566667,
38.923625
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.980065,
38.9175433333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9830083333,
38.9208516667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9724166667,
38.9262733333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00885,
38.9244683333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9700983333,
38.9332933333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9842866667,
38.915215
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9781316667,
38.89704
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9824183333,
38.897355
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9799666667,
38.8992033333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9734633333,
38.8980866667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9761416667,
38.897755
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9711366667,
38.9028533333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9760233333,
38.8945583333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095116667,
38.9005516667
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0141333333,
38.9045433333
]
},
"properties": {
"metadata": "WashingtonDC5D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0279133333,
38.9265583333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0360316667,
38.9295016667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.018875,
38.923835
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028252,
38.922068
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02209,
38.9243816667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0258766667,
38.921615
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0207583333,
38.9271333333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.025114,
38.923449
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0216316667,
38.9199283333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.033503,
38.929405
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028885,
38.9289383333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0148033333,
38.9270916667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0102766667,
38.9286883333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.023815,
38.9571666667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02764,
38.958575
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0274466667,
38.9493883333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0240416667,
38.939965
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0280066667,
38.9403616667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0142133333,
38.9426816667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0160533333,
38.9496283333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.032395,
38.951616
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0220816667,
38.9454666667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.027801,
38.943646
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.017115,
38.9564716667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0224516667,
38.9550866667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.020905,
38.9437666667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02671,
38.9516466667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0289883333,
38.9573966667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0100366667,
38.9409983333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.029575,
38.95405
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0241666667,
38.9539866667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.03023,
38.947275
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02119,
38.9343016667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0243216667,
38.9343816667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.022165,
38.9498916667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0198116667,
38.9532866667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0191583333,
38.9411316667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01675,
38.9387966667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0159283333,
38.9541583333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0180816667,
38.947815
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.019825,
38.9583983333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0239616667,
38.957425
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02493,
38.96156
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028145,
38.9621216667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0269883333,
38.9656016667
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0298666667,
38.96507
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.03023,
38.96065
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0294183333,
38.93265
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.034111,
38.938352
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0148766667,
38.9290133333
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.024045,
38.93134
]
},
"properties": {
"metadata": "WashingtonDC4D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0041633333,
38.91377
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0407516667,
38.91125
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0093633333,
38.9165483333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02119,
38.9343016667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0028566667,
38.923625
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0280066667,
38.9403616667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0366816667,
38.9054916667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01288,
38.9018833333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095116667,
38.9005516667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0240416667,
38.939965
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0042733333,
38.9198383333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0003883333,
38.9150216667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095066667,
38.9050116667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02369,
38.9062766667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02546,
38.916183
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0215516667,
38.9080683333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0196416667,
38.9179616667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0279133333,
38.9265583333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0177766667,
38.9028466667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0360316667,
38.9295016667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.018875,
38.923835
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0325433333,
38.9172516667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02259,
38.9152216667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0180116667,
38.91019
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028252,
38.922068
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02209,
38.9243816667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0236183333,
38.9038616667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0258766667,
38.921615
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0288316667,
38.9139266667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0207583333,
38.9271333333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.025114,
38.923449
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0284583333,
38.9063133333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0216483333,
38.9118633333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0267483333,
38.9033833333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.017132,
38.904987
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0351916667,
38.9207916667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0216316667,
38.9199283333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0335416667,
38.92962
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028885,
38.9289383333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0384183333,
38.9237783333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0131933333,
38.9076
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0155566667,
38.9123366667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01444,
38.91942
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0148033333,
38.9270916667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0102766667,
38.9286883333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0370183333,
38.9273166667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0243216667,
38.9343816667
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0294183333,
38.93265
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0148766667,
38.9290133333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.024045,
38.93134
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.005735,
38.910006
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0086733333,
38.9223183333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00885,
38.9244683333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0141333333,
38.9045433333
]
},
"properties": {
"metadata": "WashingtonDC3D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9944583333,
38.9072866667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9809966667,
38.90568
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9799666667,
38.8992033333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.980235,
38.908105
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9734633333,
38.8980866667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9781316667,
38.89704
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991835,
38.9081233333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9902783333,
38.910005
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9868916667,
38.9074783333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.982867,
38.895962
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.990645,
38.888445
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.983245,
38.8895266667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.993575,
38.897561
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-73.586548,
40.709006
]
},
"properties": {
"metadata": "WashingtonDC1D:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9880433333,
38.890375
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.97443,
38.887475
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.978881,
38.892415
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98875,
38.892191
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.988015,
38.8951416667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9726866667,
38.8902683333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.982065,
38.8880083333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0141716667,
38.866185
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00377,
38.878175
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.008745,
38.8736416667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.011814,
38.870171
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0193866667,
38.8756333333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0100216667,
38.8714833333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0205066667,
38.8790483333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0155466667,
38.8742966667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.016575,
38.87611
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01264,
38.86509
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0125833333,
38.8767666667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.010044,
38.866626
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0154,
38.8733166667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0172216667,
38.8749883333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.01581,
38.8817516667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0194233333,
38.8770816667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02152,
38.8799966667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.024015,
38.8805916667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.001775,
38.87664
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.012395,
38.880385
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.99033,
38.9012266667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.986615,
38.8986983333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0000783333,
38.8803533333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9871566667,
38.8876233333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9845566667,
38.8851366667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9835616667,
38.8819516667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.986076,
38.882923
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.98663,
38.8803933333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.991345,
38.8785866667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.989745,
38.88069
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9919566667,
38.8811283333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9899766667,
38.8831816667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9875583333,
38.8859316667
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9914533333,
38.90378
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9883216667,
38.9038433333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9824183333,
38.897355
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9761416667,
38.897755
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.9760233333,
38.8945583333
]
},
"properties": {
"metadata": "WashingtonDC1D:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0599616667,
38.9190083333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.071005,
38.9236033333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.06637,
38.9247466667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0684266667,
38.9187
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0495333333,
38.9118083333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0616616667,
38.92468
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.060295,
38.923115
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.06321,
38.9211566667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0636816667,
38.918375
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.06753,
38.915565
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0646266667,
38.9146766667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.066905,
38.91416
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.05999,
38.91902
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0574916667,
38.9215316667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0530533333,
38.918965
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.057775,
38.916405
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0363316667,
38.89239
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0595616667,
38.9127333333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.055465,
38.9100533333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0530816667,
38.9139683333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0457916667,
38.9151266667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0481433333,
38.907105
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.045515,
38.9126183333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0433233333,
38.9139116667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0382383333,
38.9132766667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0345933333,
38.899325
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0444333333,
38.9092033333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0452966667,
38.90629
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0411266667,
38.905015
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.03546,
38.9079533333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0358583333,
38.9108183333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02952,
38.9103716667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0335816667,
38.9055183333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0322183333,
38.9022666667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0381516667,
38.901675
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0438683333,
38.9006383333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0465716667,
38.8991733333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0492616667,
38.8946033333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0426133333,
38.8940183333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0401,
38.8939716667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0386916667,
38.898135
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.034065,
38.8975816667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0333,
38.8924866667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0248016667,
38.89254
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0287216667,
38.8947
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02163,
38.897875
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0217066667,
38.90135
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.029225,
38.8989716667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0248133333,
38.8954516667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.028565,
38.8926616667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0208816667,
38.8925266667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0185383333,
38.894365
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0146733333,
38.8928816667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0322,
38.8951833333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0424,
38.898045
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.00852,
38.897925
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0100483333,
38.8961133333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0134066667,
38.8968716667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02868,
38.9020516667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0249983333,
38.89937
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.042335,
38.90693
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.06901,
38.92257
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0156266667,
38.89799
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0399033333,
38.89711
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0135416667,
38.894095
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.06647,
38.91921
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0663566667,
38.9264716667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0697316667,
38.9260583333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0645983333,
38.9212883333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.066545,
38.92305
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0407516667,
38.91125
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0634966667,
38.9226666667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.032905,
38.89121
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0367316667,
38.888315
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0470516667,
38.90174
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0366816667,
38.9054916667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.02369,
38.9062766667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0215516667,
38.9080683333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0177766667,
38.9028466667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0325433333,
38.9172516667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0180116667,
38.91019
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0236183333,
38.9038616667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0284583333,
38.9063133333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0267483333,
38.9033833333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0171233333,
38.9049633333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0351916667,
38.9207916667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0131933333,
38.9076
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0155566667,
38.9123366667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095066667,
38.9050116667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0095116667,
38.9005516667
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-77.0141333333,
38.9045433333
]
},
"properties": {
"metadata": "WashDC2D-USSS:Washington-Arlington-Alexandria, DC-VA-MD-WV"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5469483333,
41.4583766667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5456616667,
41.4550183333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5408116667,
41.4561333333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5409633333,
41.4534383333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5375633333,
41.4576583333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5334533333,
41.4554816667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5349616667,
41.451735
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5331866667,
41.4540233333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5336998333,
41.4589011667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.529305,
41.4506633333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.53737,
41.4480283333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5408566667,
41.451305
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5450633333,
41.4484716667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5429883333,
41.4470283333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5451866667,
41.4439133333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5422266667,
41.4429333333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5396933333,
41.4446316667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5342266667,
41.4466
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.530515,
41.4430833333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5328366667,
41.4415566667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5359433333,
41.45005
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5360366667,
41.453615
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.546735,
41.4528666667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5468333333,
41.450335
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5273116667,
41.4442
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5262583333,
41.4402266667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5237683333,
41.4361316667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5165933333,
41.4353933333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.52255,
41.4314166667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.51469,
41.4328333333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5161616667,
41.44068
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5162716667,
41.43813
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.51254,
41.43882
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5144383333,
41.435735
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5121533333,
41.4370033333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5084733333,
41.4406116667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5073016667,
41.43502
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5064533333,
41.4322933333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5120383333,
41.43033
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5057566667,
41.4373733333
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.517495,
41.4312716667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5278816667,
41.4330016667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.527195,
41.4373516667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.51404,
41.4426116667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-81.5389016667,
41.4481166667
]
},
"properties": {
"metadata": "WarrensvilleHeightsOH:Cleveland, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.318153333,
36.32235
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.31786,
36.317725
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.314471667,
36.3262683333
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.31511,
36.32426
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.312921667,
36.3216233333
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.316606667,
36.322795
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.318216667,
36.3267016667
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.31787,
36.3204066667
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.31342,
36.3166933333
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-119.315028333,
36.3172683333
]
},
"properties": {
"metadata": "VisaliaCACollegeofSequoias:Visalia, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1803966667,
36.8712516667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.17911,
36.8686566667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.173865,
36.8722883333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1705016667,
36.873965
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1686933333,
36.870905
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.171699,
36.871412
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.18063,
36.86664
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1859316667,
36.8681266667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.185885,
36.8652516667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.176705,
36.861645
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1661116667,
36.8651183333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.162267,
36.865964
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15901,
36.86622
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1664416667,
36.8619033333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1711383333,
36.8630116667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1753466667,
36.8592966667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1868033333,
36.8606866667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.181195,
36.8584683333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1764116667,
36.85502
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1729266667,
36.8574683333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.167037,
36.85967
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1639783333,
36.8640583333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1601133333,
36.8618533333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1561,
36.8636466667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1540033333,
36.8609866667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1711116667,
36.8540166667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1739566667,
36.8520416667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1616183333,
36.850925
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1626616667,
36.8562433333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1557316667,
36.8572533333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15296,
36.85471
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1533866667,
36.8509833333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.164155,
36.8488566667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1607083333,
36.8478266667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15582,
36.84863
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15922,
36.8432433333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1562,
36.8457116667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.177385,
36.853655
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.17443,
36.8610233333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1673333333,
36.8687966667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.154845,
36.845775
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1757216667,
36.8608883333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1557783333,
36.8525533333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1700683333,
36.8652633333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.17768,
36.856238
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1618583333,
36.86565
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1816566667,
36.865955
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT3:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9782216667,
36.8610216667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9823266667,
36.859745
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.97924,
36.8450683333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9729883333,
36.842805
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9797433333,
36.84259
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.971785,
36.837915
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.977105,
36.831565
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9707133333,
36.8347233333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9736033333,
36.8325833333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9786766667,
36.8332516667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9840516667,
36.841075
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.986315,
36.8436583333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9831066667,
36.846325
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.986052,
36.848284
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9859666667,
36.8508783333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.990815,
36.857235
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9872066667,
36.8484483333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.986535,
36.845835
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9885183333,
36.8424716667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.984965,
36.836605
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9852683333,
36.8336533333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9819616667,
36.8291966667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9867616667,
36.836145
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9957083333,
36.8354316667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9984433333,
36.8378866667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.995892,
36.841945
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9924866667,
36.8437566667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9970166667,
36.8454666667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9949233333,
36.8484016667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.994425,
36.8525083333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.99552,
36.85457
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9764866667,
36.8491316667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.97379,
36.840055
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9755733333,
36.842755
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9857266667,
36.85614
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.974225,
36.847125
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9804966667,
36.8494383333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9758516667,
36.83387
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9760783333,
36.8540833333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9786366667,
36.8497983333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9793366667,
36.8577383333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.973175,
36.8373266667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9804,
36.8388416667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9848766667,
36.83956
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.983025,
36.843735
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9953666667,
36.8378533333
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9909683333,
36.85127
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.982575,
36.83549
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-75.9742016667,
36.8454866667
]
},
"properties": {
"metadata": "VirginiaBeachVAPCT2:Virginia Beach-Chesapeake-Norfolk, VA-NC"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88957,
18.342135
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9159383333,
18.33918
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8844416667,
18.343455
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.918615,
18.3326383333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9213833333,
18.33958
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9299166667,
18.3450266667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.887675,
18.3496933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.891235,
18.3481416667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8858033333,
18.3450833333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9286866667,
18.34076
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9239316667,
18.34104
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8865633333,
18.3374766667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.917875,
18.3425866667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9270816667,
18.3464983333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.89396,
18.3459866667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9134433333,
18.3364966667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8969316667,
18.344475
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9242116667,
18.3425833333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8959333333,
18.3458933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88384,
18.347705
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8927166667,
18.3424816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.89017,
18.345835
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8849983333,
18.3412066667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.887045,
18.3464566667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88204,
18.336945
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.92757,
18.3439683333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9117883333,
18.341735
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9145933333,
18.3347633333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9232033333,
18.34567
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.91905,
18.33688
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9248733333,
18.3382716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.912105,
18.3389933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.881665,
18.3427716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87999,
18.3393283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9306533333,
18.3417233333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8931866667,
18.3479083333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.96946,
18.34407
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.966575,
18.34488
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9713583333,
18.3426166667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.967395,
18.3400616667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9611783333,
18.33918
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9646183333,
18.3419316667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9630766667,
18.346645
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.96011,
18.34224
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9587583333,
18.3377483333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.95815,
18.3451333333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.955975,
18.3428116667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.95811,
18.3405716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9573283333,
18.3355033333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9553216667,
18.3390283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9534366667,
18.345255
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9510016667,
18.3425616667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9514533333,
18.340925
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.949485,
18.3462366667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9466483333,
18.3443333333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9472616667,
18.341135
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.948025,
18.3366933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.95204,
18.336325
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9467883333,
18.3478866667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9426266667,
18.3476316667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9447533333,
18.346475
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9429016667,
18.342865
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9448516667,
18.335115
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9448733333,
18.3397816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.94104,
18.33692
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.941085,
18.3390716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9376066667,
18.3397583333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9385483333,
18.34207
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.939915,
18.3448583333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9358516667,
18.3475166667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9365533333,
18.3456683333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9343283333,
18.341855
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9338266667,
18.3400916667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9304016667,
18.33993
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.932825,
18.3474716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9324216667,
18.3443216667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9294966667,
18.3483466667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9267566667,
18.3487666667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9242133333,
18.348395
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.922385,
18.3466183333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9084566667,
18.3389116667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.9084483333,
18.3374816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.909255,
18.3357333333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.91061,
18.3342716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.876875,
18.3355733333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8832016667,
18.33539
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87685,
18.339295
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87448,
18.3364683333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8739633333,
18.3394383333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.871395,
18.3369433333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.873525,
18.3349816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87592,
18.3325766667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8788533333,
18.3337883333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87767,
18.3303283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8747833333,
18.327645
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88088,
18.3313716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8774033333,
18.3275316667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8833583333,
18.3293016667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.880605,
18.324675
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8816116667,
18.3271183333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8760166667,
18.3256833333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8780683333,
18.323505
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8730283333,
18.3243383333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87562,
18.322065
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8694216667,
18.3247316667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87148,
18.321585
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8686116667,
18.3208866667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87063,
18.319005
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.873655,
18.317615
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8752683333,
18.3197266667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8761733333,
18.3182566667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.878985,
18.3192633333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8810033333,
18.32285
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.882705,
18.318475
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88426,
18.321945
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8854366667,
18.3204516667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.884525,
18.3178016667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88816,
18.3195283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8875616667,
18.3214816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8900283333,
18.321795
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8917466667,
18.321535
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8910266667,
18.3201683333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8907466667,
18.3164283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8958366667,
18.3198466667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8870683333,
18.3172733333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8755566667,
18.3389116667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8633916667,
18.3492383333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.868925,
18.3390183333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8667133333,
18.3423933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8696483333,
18.34276
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87233,
18.342735
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8759466667,
18.3428183333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8798383333,
18.3406783333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8791333333,
18.3444716667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.876425,
18.3457633333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8735616667,
18.3452833333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8731266667,
18.3485783333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8710216667,
18.3475516667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8675433333,
18.3481283333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.865885,
18.3490783333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8677166667,
18.3487566667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8688266667,
18.3475366667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8625166667,
18.3248316667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8592166667,
18.3233733333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8578066667,
18.3271816667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8543166667,
18.3247416667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8508016667,
18.3264933333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.84956,
18.3283166667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8465133333,
18.32166
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8512966667,
18.3217166667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.85463,
18.3203966667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8586583333,
18.3207383333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8618416667,
18.3211966667
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8533166667,
18.3283533333
]
},
"properties": {
"metadata": "USVIStThomas:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7949716667,
18.3316166667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7917316667,
18.3329716667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7908733333,
18.3288466667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7879166667,
18.32603
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.792285,
18.3257016667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.794745,
18.327955
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7984466667,
18.32739
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7981266667,
18.3300616667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7872383333,
18.3282983333
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.787415,
18.331995
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7846933333,
18.33482
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7839383333,
18.3323666667
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7833483333,
18.331045
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7851866667,
18.3300233333
]
},
"properties": {
"metadata": "USVIStJohn:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8145466667,
17.7274266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8167516667,
17.7247883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81788,
17.7290183333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.772855,
17.7206516667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7469416667,
17.7293
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8206783333,
17.7252283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77671,
17.7171966667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81004,
17.7060566667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7346083333,
17.7240216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7573716667,
17.733225
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8237016667,
17.7080433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7564366667,
17.7255716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.80838,
17.709615
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8204783333,
17.7063933333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7438133333,
17.7320216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8223216667,
17.7176466667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7746516667,
17.7283533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8242266667,
17.7046483333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.813505,
17.71443
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8141683333,
17.71023
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.76387,
17.7301633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7526966667,
17.7272783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8197566667,
17.72798
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8211916667,
17.7229533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7455116667,
17.7341833333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7405083333,
17.73874
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.76018,
17.7256883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.820695,
17.7033033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7401583333,
17.7355833333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.832035,
17.7218766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7386466667,
17.72307
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7406533333,
17.7295583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.770425,
17.72195
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8218083333,
17.712825
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8257416667,
17.7280766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8185466667,
17.7138733333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7548283333,
17.7351083333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7766683333,
17.7197683333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7748583333,
17.722495
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.75219,
17.7327366667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.761805,
17.73165
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.784255,
17.7143483333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7788433333,
17.7186616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7541683333,
17.7316533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.763135,
17.7268433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.74512,
17.7357216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.777095,
17.7261883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7611933333,
17.7284166667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7358316667,
17.7276433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8284983333,
17.7169216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7574533333,
17.730285
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8132816667,
17.7126283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.76866,
17.72651
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7776866667,
17.722545
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8257883333,
17.7143716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.741635,
17.736515
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7671983333,
17.7302216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77277,
17.7290283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.784815,
17.7156616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7804716667,
17.7263916667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7744533333,
17.7251533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81739,
17.7102816667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.82237,
17.729655
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.823935,
17.7256083333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8305266667,
17.7190466667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8199266667,
17.7093766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.82771,
17.7024383333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7826433333,
17.729785
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.786245,
17.7286283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7850783333,
17.725315
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7829666667,
17.72183
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.74884,
17.72708
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7508683333,
17.7301716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7454616667,
17.7243983333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7415233333,
17.7237533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7402333333,
17.727925
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7376416667,
17.73088
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7372516667,
17.72164
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77994,
17.7152233333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.74552,
17.71903
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.745485,
17.7223883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.741545,
17.72258
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.74174,
17.7201816667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7475616667,
17.7209516667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7832916667,
17.73285
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7838333333,
17.7318616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7835083333,
17.7295216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8366,
17.68987
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8352133333,
17.69114
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.833055,
17.6916033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8315033333,
17.69313
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8387083333,
17.7087566667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8449683333,
17.704355
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8454683333,
17.7065533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.841255,
17.70498
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8373233333,
17.6956666667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.834943,
17.7099216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.83578,
17.6938816667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8353633333,
17.69758
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8338816667,
17.6952083333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8326733333,
17.69702
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.833045,
17.6984266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8426683333,
17.7076583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8343116667,
17.7009783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.834505,
17.7027883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8384333333,
17.698005
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.83679,
17.699125
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.836335,
17.704525
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8389366667,
17.7019566667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8375633333,
17.7057016667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8379266667,
17.7000083333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.83584,
17.7069233333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88722,
17.69325
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8834616667,
17.6914
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8796666667,
17.6897333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8750933333,
17.6904583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8718516667,
17.6914966667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8672416667,
17.6888783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.86102,
17.688885
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.85488,
17.6894333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8480916667,
17.69117
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8438716667,
17.6934766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.84429,
17.6978983333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8463866667,
17.7012266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8480733333,
17.7024966667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8515483333,
17.70288
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8758816667,
17.7006533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8565116667,
17.704185
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77242,
17.7471616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8664216667,
17.7034716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.86675,
17.705725
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.86939,
17.7081383333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8711183333,
17.707145
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.868955,
17.706185
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.86791,
17.7067383333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.879975,
17.7095383333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87163,
17.7028183333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87901,
17.6959433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8708016667,
17.6996666667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8823683333,
17.698825
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8670283333,
17.6995133333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8680316667,
17.7033066667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8684716667,
17.6964333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8787066667,
17.7043633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8668883333,
17.69081
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8635883333,
17.6950233333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8638833333,
17.6917416667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8851733333,
17.69799
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.859815,
17.6951216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.85812,
17.6910433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8563433333,
17.6939366667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8851783333,
17.7019016667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8525916667,
17.6928666667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.848855,
17.69423
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8479633333,
17.6968133333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8523866667,
17.6967816667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8556216667,
17.6997533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8509716667,
17.699005
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.85871,
17.69978
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8639116667,
17.6978633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8735733333,
17.6947666667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.874915,
17.697005
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8777433333,
17.69385
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8828766667,
17.6947633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8807,
17.698785
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8773133333,
17.7001416667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8782433333,
17.7066616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8774466667,
17.7039783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8763666667,
17.7104
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8799383333,
17.7147866667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8799466667,
17.71256
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8833016667,
17.7156716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8837218333,
17.7146223333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88184,
17.7057316667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8829683333,
17.709865
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.881945,
17.7136516667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8816083333,
17.711095
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.88415,
17.705175
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8727816667,
17.714655
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87257,
17.7120266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.870255,
17.7131583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8696216667,
17.71685
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8702116667,
17.720605
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8743783333,
17.7192883333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87211,
17.719795
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87459,
17.7134566667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.87011,
17.7150833333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8736383333,
17.7170033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8715533333,
17.7161966667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.875775,
17.714715
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77604,
17.7357583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77212,
17.7376733333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77425,
17.73449
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.77467,
17.7311216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7699216667,
17.7321283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.768215,
17.7360516667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7681666667,
17.73793
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.764345,
17.7401166667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.766905,
17.734165
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.763985,
17.7366066667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7655166667,
17.7333033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7702516667,
17.73535
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7860316667,
17.7478116667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7843383333,
17.74638
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7853616667,
17.7430733333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7826966667,
17.7439783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7790766667,
17.7457383333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.775395,
17.7468233333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.863165,
17.7012433333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7771483333,
17.745705
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.776765,
17.7487916667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7764433333,
17.7506033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7791383333,
17.7498216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.781505,
17.74858
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.784705,
17.74998
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7877916667,
17.7511183333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7846283333,
17.7517916667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7823866667,
17.752655
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7790216667,
17.7519333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7803033333,
17.7533283333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7968783333,
17.7407333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8020783333,
17.7399266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8013216667,
17.7381366667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7991116667,
17.738925
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7991933333,
17.7420233333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7967733333,
17.7439066667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7959466667,
17.7398616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7918883333,
17.7418583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.791465,
17.7434733333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7935166667,
17.7415716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.75429,
17.738435
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7510183333,
17.74116
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7483683333,
17.741535
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7477383333,
17.74004
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7509016667,
17.7397916667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7520633333,
17.7380266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7514966667,
17.7364466667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.74917,
17.7381566667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7492766667,
17.7361333333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8129766667,
17.7259616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81301,
17.729915
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81119,
17.726465
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.81211,
17.7285266667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.809645,
17.7271866667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8085083333,
17.72849
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.80853,
17.72947
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8101033333,
17.7297466667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8061566667,
17.7306066667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8052466667,
17.728575
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.8065633333,
17.72806
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7205866667,
17.7468416667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7174683333,
17.7469016667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7196966667,
17.7440216667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7226533333,
17.74756
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.719025,
17.7507666667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7254966667,
17.75236
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7212866667,
17.7529766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7221533333,
17.7512633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7240966667,
17.7505166667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7081516667,
17.7428583333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7097716667,
17.7452633333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7120933333,
17.7474483333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.71434,
17.7446366667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7112083333,
17.7445533333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7114583333,
17.7418716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.706525,
17.7402033333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.70241,
17.7411766667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7020583333,
17.7460616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7063183333,
17.7449616667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.704285,
17.7427
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.6978333333,
17.7473783333
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.69419,
17.7477466667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.693205,
17.7449716667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.6961516667,
17.74416
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7000333333,
17.74432
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-64.7011416667,
17.7426066667
]
},
"properties": {
"metadata": "USVIStCroix:"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.947003333,
37.4970916667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.947643333,
37.4950766667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.946065,
37.49165
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.942941667,
37.4890566667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.939998333,
37.4868466667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.93645,
37.4855766667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.934961667,
37.487165
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.934261667,
37.4884416667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.943743333,
37.4984466667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.94032,
37.4998666667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.938443333,
37.4967
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.937108333,
37.4931866667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.940181667,
37.4951633333
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.9391,
37.4892533333
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.939535,
37.4915766667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.944408333,
37.4927733333
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.944911667,
37.4954466667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.951063333,
37.4982816667
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.949083333,
37.498205
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-121.925046667,
37.47153
]
},
"properties": {
"metadata": "USCAFCN77:San Francisco-Oakland-Fremont, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.01399,
33.41956
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.015426667,
33.4180433333
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.010227,
33.413953
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.01527,
33.413395
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.013286667,
33.4113416667
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.016419,
33.407444
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.009241667,
33.4178583333
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.00898,
33.40756
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.018331667,
33.4102366667
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-112.018463333,
33.4145366667
]
},
"properties": {
"metadata": "UniversityOfPhoenixAZ:Phoenix-Mesa-Chandler, AZ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.854893333,
33.6641166667
]
},
"properties": {
"metadata": "UCIrvineCANorth:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.854075,
33.6635716667
]
},
"properties": {
"metadata": "UCIrvineCANorth:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.853983333,
33.6650533333
]
},
"properties": {
"metadata": "UCIrvineCANorth:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.854815,
33.6645483333
]
},
"properties": {
"metadata": "UCIrvineCANorth:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.851938333,
33.6649333333
]
},
"properties": {
"metadata": "UCIrvineCANorth:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.841201667,
33.6447666667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.837988333,
33.64286
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.83476,
33.645155
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.836755,
33.6469416667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.840581667,
33.648995
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.844615,
33.645115
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.844338333,
33.6420933333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.848738333,
33.6427
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.852026667,
33.6417966667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.852216667,
33.6444833333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.850495,
33.6468616667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.844576667,
33.648045
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.84525,
33.6500566667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.844425,
33.652595
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.84608,
33.65248
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.832445,
33.6480516667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.833958333,
33.64138
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.830238333,
33.644135
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.827418333,
33.643115
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.826753333,
33.64715
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.825546667,
33.6491033333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.82365,
33.6459883333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.825181667,
33.6377333333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.82332,
33.641725
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.82319,
33.6441683333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.830721667,
33.6402733333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.854321667,
33.6492666667
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.824181667,
33.65168
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.850035,
33.6390433333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.83641,
33.6407583333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-117.83317,
33.6460583333
]
},
"properties": {
"metadata": "UCIrvineCA:Los Angeles-Long Beach-Anaheim, CA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5411916667,
33.2131416667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.53223,
33.212675
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5311516667,
33.2082283333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.53898,
33.206345
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5392266667,
33.2023
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5295766667,
33.2057766667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5266616667,
33.2067983333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5327283333,
33.2040733333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5360133333,
33.2033333333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.540385,
33.204225
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54343,
33.206825
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5436216667,
33.2102633333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5495583333,
33.2082283333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5474333333,
33.2058383333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5343383333,
33.2191466667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5532333333,
33.201285
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5530666667,
33.2037066667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5514083333,
33.2070666667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5537183333,
33.21065
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54945,
33.2126966667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5492816667,
33.21628
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54602,
33.21184
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.51419,
33.2098533333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5401183333,
33.21617
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54578,
33.2145516667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54171,
33.2184
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5430783333,
33.2206916667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.515775,
33.21263
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.544275,
33.2190433333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.548755,
33.205202
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.53488,
33.2113233333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.527337,
33.209447
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.528905,
33.2129133333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5301283333,
33.2142666667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.533765,
33.2179716667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.533215,
33.2105133333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5346266667,
33.206335
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5550833333,
33.200995
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.515295,
33.2073916667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5592033333,
33.1993533333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5618016667,
33.2039716667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5607183333,
33.2062266667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5601233333,
33.21025
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5347883333,
33.203935
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5604266667,
33.2118116667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54931,
33.2177283333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.54768,
33.2186133333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5453866667,
33.220425
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5579066667,
33.2181366667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.55895,
33.200777
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5176283333,
33.2083583333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.518635,
33.2085233333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5189816667,
33.2133633333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5240416667,
33.2120466667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5183583333,
33.2119766667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5239833333,
33.219725
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.550265,
33.19855
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.52212,
33.2136833333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.524375,
33.2158016667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.536135,
33.2194883333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5189,
33.2068
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.53402,
33.2148283333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5548066667,
33.211635
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5547533333,
33.2152266667
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.560735,
33.2143883333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.562022,
33.209487
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.554482,
33.20808
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5471166667,
33.2023933333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-87.5200966667,
33.2137683333
]
},
"properties": {
"metadata": "TuscaloosaALUniversityAlabama:Tuscaloosa, AL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.76196,
40.23588
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7614033333,
40.233945
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7449383333,
40.231925
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.752578,
40.229077
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7533333333,
40.2269266667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.762065,
40.22611
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.760185,
40.2377733333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7459483333,
40.2365666667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7535916667,
40.2397116667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7585016667,
40.2311933333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7491233333,
40.2316283333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7564933333,
40.226035
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7506633333,
40.2390816667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.767295,
40.2311216667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7552166667,
40.231035
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.75217,
40.235565
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.774275,
40.2224266667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7836783333,
40.228725
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7522116667,
40.2170416667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.743569,
40.230235
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7699266667,
40.23436
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7741083333,
40.2321066667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7649933333,
40.22062
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.75008,
40.2176166667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7984683333,
40.2364066667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7672533333,
40.2255683333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7516116667,
40.2220883333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.78229,
40.2328616667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74488,
40.2205933333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7750366667,
40.2397133333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7410533333,
40.2265216667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7686233333,
40.2278033333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7820533333,
40.2411016667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.786415,
40.2372466667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7387283333,
40.22541
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.73889,
40.223335
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74759,
40.2259616667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.792505,
40.2322883333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.777265,
40.2318883333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74773,
40.2229183333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.79239,
40.2351666667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.77225,
40.220939
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.773314,
40.237372
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7759966667,
40.23651
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.75991,
40.2194733333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7570933333,
40.2203866667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.789396,
40.234819
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7998716667,
40.2343016667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7839833333,
40.226135
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.813825,
40.2421183333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.808895,
40.2463116667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.803017,
40.251257
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.79622,
40.2482016667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.791705,
40.245995
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7898883333,
40.24483
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7834616667,
40.2438333333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7876966667,
40.2320366667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8172616667,
40.2407316667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.812505,
40.23981
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.806393,
40.238548
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8020533333,
40.2465233333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8059283333,
40.2407566667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7911883333,
40.24157
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7900266667,
40.2368833333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8007616667,
40.2420116667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7922,
40.2438983333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7965633333,
40.2445566667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7959216667,
40.2368316667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8009183333,
40.2383933333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.79634,
40.240265
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.8054516667,
40.2435
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74535,
40.2421
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7414766667,
40.2438816667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7510466667,
40.2427266667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7405733333,
40.240975
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7353933333,
40.2421716667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7283266667,
40.2420083333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7364166667,
40.2334566667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7370216667,
40.2279883333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.73305,
40.2244766667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.72982,
40.2206916667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.72976,
40.2168633333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7349566667,
40.2124683333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7374966667,
40.2091283333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7338616667,
40.2058616667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7422883333,
40.2008966667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7504666667,
40.19682
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.73893,
40.2005116667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74673,
40.1840716667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7537283333,
40.1873016667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.75563,
40.1897
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7520166667,
40.19156
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.757185,
40.1959733333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7622883333,
40.2040333333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7569583333,
40.203975
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7634183333,
40.2095883333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.76639,
40.2162266667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7592033333,
40.2125983333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.745135,
40.210195
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7558116667,
40.2081033333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7513283333,
40.200535
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.74538,
40.202715
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7485466667,
40.2023033333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7361866667,
40.2014316667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.740215,
40.20618
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7484916667,
40.2066983333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.739535,
40.2028866667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7439066667,
40.2060233333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7429066667,
40.219065
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7506983333,
40.20921
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.744615,
40.2123133333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7392333333,
40.2095283333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7394166667,
40.2075433333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7359766667,
40.222375
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7473866667,
40.2150116667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.75268,
40.213155
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7446533333,
40.2395483333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7395516667,
40.2383333333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7440266667,
40.2351416667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7361033333,
40.2185966667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7421466667,
40.2137
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7374716667,
40.2139466667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7617216667,
40.2071866667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7629133333,
40.2161566667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.758985,
40.2083466667
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.76143,
40.2113783333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.7635683333,
40.2132233333
]
},
"properties": {
"metadata": "TrentonNJ:Trenton-Princeton, NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5522633333,
41.6570616667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5567016667,
41.65851
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5658233333,
41.6675466667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5692583333,
41.6682583333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5656116667,
41.6711866667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.567059,
41.674539
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5650466667,
41.6770283333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54163,
41.6549966667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.551185,
41.6615033333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5540383333,
41.6623666667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5602583333,
41.6683783333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5644683333,
41.6685083333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5645933333,
41.6739316667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5619033333,
41.6760166667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5499333333,
41.6638083333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5497433333,
41.6598116667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54603,
41.6599916667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5711933333,
41.6674283333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5670116667,
41.6652016667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5649716667,
41.6623966667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5646316667,
41.6591483333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.562855,
41.6575183333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.558145,
41.655725
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.554465,
41.6537233333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5958166667,
41.6532133333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5961433333,
41.6579933333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5902883333,
41.6595683333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5854666667,
41.6675616667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5835916667,
41.6702866667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5764233333,
41.6672966667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.570275,
41.664015
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.568265,
41.6623066667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5791333333,
41.6696533333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.580825,
41.6639516667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.573015,
41.6611166667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5696233333,
41.65945
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5668333333,
41.656545
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5579233333,
41.6526866667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5625833333,
41.6555433333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.568995,
41.653885
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.57238,
41.6564616667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5839216667,
41.6625933333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.585385,
41.658995
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.579465,
41.6590066667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5802333333,
41.6562533333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.588053,
41.656558
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.590695,
41.6537933333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.58759,
41.6525816667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.592555,
41.6505883333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5892866667,
41.6474066667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5836833333,
41.6453
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5852216667,
41.6482283333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.58011,
41.6492566667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.580239,
41.652826
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5736766667,
41.648455
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.57713,
41.6478716667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5786016667,
41.64546
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.57083,
41.6467433333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.565425,
41.645195
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.567295,
41.6483116667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.555175,
41.6498983333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5610716667,
41.648845
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5589583333,
41.646515
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.56506,
41.65035
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.59392,
41.6646483333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.605485,
41.6628333333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.59775,
41.6661883333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5956616667,
41.669775
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.610875,
41.6685483333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.6087033333,
41.6717866667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.60627,
41.6755483333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.6027516667,
41.6804683333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.599255,
41.6827533333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5954,
41.6802316667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.594025,
41.67303
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5889066667,
41.6773433333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5884566667,
41.6737466667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5851016667,
41.67574
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5875766667,
41.66157
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5979766667,
41.67303
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5988766667,
41.6757583333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5745316667,
41.67157
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5744133333,
41.67336
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5915433333,
41.64924
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.59822,
41.663275
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.581685,
41.6666783333
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5552916667,
41.64607
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.60449,
41.6727266667
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.6020466667,
41.675275
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5626133333,
41.645555
]
},
"properties": {
"metadata": "ToledoOHWest:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5219283333,
41.6502566667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5157183333,
41.6529416667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.514895,
41.65643
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5137966667,
41.6540966667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.507615,
41.6532033333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.50522,
41.6494316667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.501451,
41.645953
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5002716667,
41.6437366667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4991,
41.6418466667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.497461,
41.638389
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4984883333,
41.636815
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5045783333,
41.63654
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5065616667,
41.6262366667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.50696,
41.6237466667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.506415,
41.622105
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5096633333,
41.6245766667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5114766667,
41.62311
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.50921,
41.62166
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5112366667,
41.618725
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5202716667,
41.6200116667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5152183333,
41.6209316667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5288033333,
41.6228033333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5295516667,
41.626625
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5287383333,
41.629495
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5245116667,
41.6294716667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5292833333,
41.63147
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5301583333,
41.6351133333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53009,
41.6382
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5275933333,
41.6405233333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5306216667,
41.6405166667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.529095,
41.6436866667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5291316667,
41.648315
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5252666667,
41.6459233333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5200483333,
41.6459533333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.515105,
41.6490883333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.512325,
41.6512833333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5098566667,
41.6483166667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5135816667,
41.6457216667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.518176,
41.643238
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.520605,
41.6433616667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.520295,
41.63648
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.52446,
41.634665
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5227,
41.6322583333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.521115,
41.6293366667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.518465,
41.6311866667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.52034,
41.634015
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.514635,
41.63489
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5160383333,
41.6396033333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.513735,
41.636805
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5102883333,
41.643775
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5104966667,
41.640755
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5050483333,
41.6437283333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5060816667,
41.6382616667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5051016667,
41.6409783333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5003733333,
41.6410633333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5028,
41.6381616667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5095316667,
41.63036
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5154233333,
41.6274183333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.518715,
41.62226
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.523705,
41.6215883333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5208583333,
41.624945
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.526705,
41.6257533333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5124866667,
41.6317566667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.51038,
41.63459
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5139066667,
41.641755
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.52723,
41.63359
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5275183333,
41.6366783333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5092866667,
41.62747
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5167883333,
41.6332583333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5074116667,
41.6458416667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.51872,
41.649525
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5025466667,
41.6521516667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4952633333,
41.6494816667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.488925,
41.6525566667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4972766667,
41.6508783333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4875633333,
41.649975
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4912116667,
41.656045
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4931866667,
41.6604766667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4874616667,
41.65801
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4952583333,
41.6626166667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4999983333,
41.6615783333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4978633333,
41.6586733333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.50363,
41.6598866667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5007616667,
41.6587
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4955183333,
41.6653166667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4920033333,
41.6656616667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4881466667,
41.6656833333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4904433333,
41.66332
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4974733333,
41.6546916667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5244266667,
41.6434316667
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5116916667,
41.626205
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.4995816667,
41.657805
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.525285,
41.65141
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.509866,
41.63823
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5320316667,
41.6234133333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.51496,
41.6309633333
]
},
"properties": {
"metadata": "ToledoOHEast:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5522633333,
41.6570616667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5567016667,
41.65851
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53884,
41.6806883333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5658233333,
41.6675466667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5692583333,
41.6682583333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5656116667,
41.6711866667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.567059,
41.674539
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5650466667,
41.6770283333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5624683333,
41.6806033333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5603866667,
41.6825716667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5528533333,
41.6857766667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.552295,
41.6832733333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5434666667,
41.6867366667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53921,
41.6871333333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5345383333,
41.6876816667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5290133333,
41.6872033333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5264366667,
41.6830316667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.52717,
41.679835
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5262033333,
41.6767733333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5271066667,
41.6740233333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.526255,
41.67174
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5219316667,
41.6656283333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.51798,
41.6670766667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5177266667,
41.6620166667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5193883333,
41.66061
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5238066667,
41.6574866667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5279066667,
41.6552016667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5312716667,
41.6543083333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.533035,
41.651275
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.536074,
41.653325
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54163,
41.6549966667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5279633333,
41.65846
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.551185,
41.6615033333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5540383333,
41.6623666667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5602583333,
41.6683783333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5644683333,
41.6685083333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5645933333,
41.6739316667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5619033333,
41.6760166667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5543933333,
41.6788216667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5498216667,
41.684465
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5512683333,
41.680205
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54574,
41.6813916667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5408016667,
41.67893
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.539515,
41.6833533333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5343083333,
41.6832733333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.530903,
41.683802
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5311133333,
41.6804783333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53601,
41.6815983333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5353866667,
41.6790333333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.543085,
41.6759783333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5491283333,
41.6779466667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5579633333,
41.6742266667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5530383333,
41.6693533333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.553746,
41.665501
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5499333333,
41.6638083333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5497433333,
41.6598116667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54603,
41.6599916667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5622266667,
41.677775
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5399716667,
41.6582383333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5325016667,
41.6570216667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5315516667,
41.6599783333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5204566667,
41.6640133333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5273566667,
41.6643933333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5263933333,
41.66086
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5389766667,
41.6646683333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5349333333,
41.667155
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5296783333,
41.6657983333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5310233333,
41.6741783333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53419,
41.6740083333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.536895,
41.67119
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53907,
41.6747733333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5438533333,
41.67335
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54101,
41.668655
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.542215,
41.6663716667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5426566667,
41.66205
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54587,
41.6638416667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54778,
41.6679333333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.54941,
41.67326
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5331316667,
41.6647583333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5486916667,
41.6700216667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.532715,
41.6770916667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.535905,
41.6765633333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5236616667,
41.6614933333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.55078,
41.6665383333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.557783,
41.679819
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.53491,
41.6557683333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5711933333,
41.6674283333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.564975,
41.662388
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5646316667,
41.6591483333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.562855,
41.6575183333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.558145,
41.655725
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.554465,
41.6537233333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5764233333,
41.6672966667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.570275,
41.664015
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.568265,
41.6623066667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5791333333,
41.6696533333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5696233333,
41.65945
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5668333333,
41.656545
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5579233333,
41.6526866667
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5625833333,
41.6555433333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.555175,
41.6498983333
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5745316667,
41.67157
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-83.5744133333,
41.67336
]
},
"properties": {
"metadata": "ToledoOH:Toledo, OH"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4593433333,
27.9658916667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4581366667,
27.9686716667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.455615,
27.96755
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4599666667,
27.971025
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4559766667,
27.97385
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.45505,
27.9753616667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4593583333,
27.9773133333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.45933,
27.9799516667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4552633333,
27.980845
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4567633333,
27.9787766667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4553683333,
27.97713
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4305933333,
27.983655
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.44709,
27.98187
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.447009,
27.974211
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4364333333,
27.97982
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4223083333,
27.973025
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.45109,
27.9759183333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4511666667,
27.9663866667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4428883333,
27.965935
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4300483333,
27.9689016667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4398266667,
27.9676333333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4431166667,
27.9703966667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.43501,
27.9673866667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.43193,
27.97556
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4354266667,
27.97916
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4353133333,
27.9819366667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.434975,
27.9911233333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4306233333,
27.987125
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.43061,
27.9807733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4285633333,
27.97706
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.421695,
27.96669
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.42569,
27.9693383333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.424225,
27.969835
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4226816667,
27.9716833333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4227416667,
27.97847
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4233866667,
27.9812733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4182866667,
27.98171
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4161866667,
27.9825116667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.413575,
27.9850866667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4137833333,
27.9961683333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.41464,
27.99077
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.41684,
27.9959733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.42653,
27.9963333333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4265716667,
27.992335
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4348416667,
27.9667066667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.437915,
27.976707
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.442903,
27.974043
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4428866667,
27.976015
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.433585,
27.9686333333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.44262,
27.9799316667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4426666667,
27.978425
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4346733333,
27.9766166667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4286283333,
27.9733483333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4346733333,
27.9705066667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4514566667,
27.9705416667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4474933333,
27.9706533333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.426245,
27.974775
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.42686,
27.981556
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4163266667,
27.9898866667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4220183333,
27.9917383333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4182416667,
27.99205
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4220433333,
27.9899666667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4225583333,
27.984245
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4244716667,
27.9863816667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4155516667,
27.98688
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4189683333,
27.98504
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4264416667,
27.98501
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4345066667,
27.9863966667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4283183333,
27.9888033333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.45207,
27.9723866667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.437885,
27.9711616667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4596583333,
27.9733216667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4467833333,
27.9664116667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4279766667,
27.967605
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.44569,
27.97812
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4552766667,
27.9710383333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.42282,
27.9958683333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4201333333,
27.9780733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4178083333,
27.9740666667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4177716667,
27.9704933333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.41491,
27.9676566667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.410415,
27.9669033333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.405865,
27.9676066667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4010516667,
27.9695066667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.392715,
27.9762483333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.3936,
27.98158
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4153983333,
27.977735
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.40118,
27.9814516667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4014033333,
27.97795
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.3985766667,
27.9741733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4069883333,
27.97466
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4123983333,
27.9708433333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4089666667,
27.972835
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.402425,
27.96864
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4039633333,
27.9701166667
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4058516667,
27.9920383333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.41016,
27.9935
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4325983333,
27.993715
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4082716667,
27.989375
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.40732,
27.97016
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.3955033333,
27.97924
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-82.4398083333,
27.9824733333
]
},
"properties": {
"metadata": "TampaFL:Tampa-St. Petersburg-Clearwater, FL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.17423,
43.051285
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15998,
43.0511766667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1575483333,
43.0372416667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1603266667,
43.0397083333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1538416667,
43.03557
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.146925,
43.0361
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.146525,
43.03795
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1436016667,
43.0393516667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.13995,
43.0415616667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1455633333,
43.0408716667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1447966667,
43.0437116667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1502966667,
43.040865
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1407016667,
43.0387816667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1548683333,
43.0387516667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1542983333,
43.0419383333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1541016667,
43.0457933333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.157925,
43.04465
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1594683333,
43.04777
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1590466667,
43.0417916667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1611433333,
43.0459833333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1647916667,
43.04829
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1649116667,
43.0445316667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1641316667,
43.0410266667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1444866667,
43.035
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1676866667,
43.049505
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1671583333,
43.0738433333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.168995,
43.067575
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1637983333,
43.06958
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.162365,
43.0676316667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1614333333,
43.0646283333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1571666667,
43.0684383333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1540233333,
43.0610366667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1540016667,
43.0589333333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1488733333,
43.06062
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1506583333,
43.0565183333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1489066667,
43.05256
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.14453,
43.051935
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1398216667,
43.0524283333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1442533333,
43.0582233333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1459816667,
43.0627383333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.14782,
43.0718816667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.148315,
43.07079
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1436666667,
43.0666333333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1410833333,
43.0719466667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1383416667,
43.07268
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.134825,
43.0710566667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.13716,
43.06339
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1411733333,
43.0627683333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1387683333,
43.0576733333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1343516667,
43.0519816667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1327083333,
43.0543
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.135445,
43.0579683333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1304433333,
43.060705
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.12937,
43.05202
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1252583333,
43.0540216667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1191016667,
43.0582833333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1242466667,
43.06168
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.12663,
43.0636816667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.12526,
43.065135
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.122622,
43.063
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1569516667,
43.060355
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1497916667,
43.0530483333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1584783333,
43.0660733333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1482583333,
43.0741566667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.143705,
43.0552166667
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1609033333,
43.0751183333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1470416667,
43.0596
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1646083333,
43.0730233333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1610166667,
43.07759
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1521883333,
43.0700333333
]
},
"properties": {
"metadata": "SyracuseNYNorth:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1506516667,
43.0641883333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1396083333,
43.008155
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1480616667,
43.0098166667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.141734,
43.014174
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1475616667,
43.014125
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1583166667,
43.0227433333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.154407,
43.016556
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1544283333,
43.0122666667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1509433333,
43.0159133333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.148521,
43.017237
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.13734,
43.0155716667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.14386,
43.0174533333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.160465,
43.0201016667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1509583333,
43.0194316667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1531016667,
43.0206233333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.153545,
43.0260216667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1406883333,
43.0244616667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.143835,
43.0220933333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1594433333,
43.0230683333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1502883333,
43.023565
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.14857,
43.0261583333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.146465,
43.0303233333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1444266667,
43.027545
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1795216667,
43.0366733333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15123,
43.0299466667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1441383333,
43.0320333333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1539016667,
43.0306183333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1616183333,
43.032195
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1514433333,
43.0268283333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1770183333,
43.048185
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1835666667,
43.05083
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.179895,
43.0521666667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.178545,
43.0341083333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1742566667,
43.051295
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1714733333,
43.049275
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.157735,
43.0282366667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1749533333,
43.0357483333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1730583333,
43.0389266667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1661666667,
43.0381516667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.15998,
43.0511766667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.168507,
43.0367
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1654833333,
43.03377
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1575483333,
43.0372416667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.159615,
43.03369
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1603266667,
43.0397083333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1538416667,
43.03557
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.146925,
43.0361
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.146525,
43.03795
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1436016667,
43.0393516667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.13995,
43.0415616667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1455633333,
43.0408716667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1447966667,
43.0437116667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1502966667,
43.040865
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.168835,
43.041015
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1407016667,
43.0387816667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1548683333,
43.0387516667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1542983333,
43.0419383333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1541016667,
43.0457933333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.157925,
43.04465
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1594683333,
43.04777
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1590466667,
43.0417916667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1611433333,
43.0459833333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1647916667,
43.04829
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1649116667,
43.0445316667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1641316667,
43.0410266667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1693466667,
43.0460283333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.173735,
43.0442633333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1451533333,
43.0259633333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1444866667,
43.035
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1676866667,
43.049505
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1610083333,
43.0269483333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.168995,
43.067575
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1637983333,
43.06958
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.162365,
43.0676316667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1614333333,
43.0646283333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1540233333,
43.0610366667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1488733333,
43.06062
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1506583333,
43.0565183333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1489066667,
43.05256
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.14453,
43.051935
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1398216667,
43.0524283333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1442533333,
43.0582233333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1459816667,
43.0627383333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1387683333,
43.0576733333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1343516667,
43.0519816667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1327083333,
43.0543
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.135445,
43.0579683333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1252583333,
43.0540216667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1569516667,
43.060355
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1497916667,
43.0530483333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1584783333,
43.0660733333
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.143705,
43.0552166667
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-76.1470416667,
43.0596
]
},
"properties": {
"metadata": "SyracuseNY:Syracuse, NY"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2455333333,
38.6878266667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.249738,
38.689677
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.251705,
38.69081
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2550733333,
38.6932216667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.257225,
38.6956066667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2582683333,
38.6986783333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.260945,
38.69991
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2654566667,
38.702815
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2620283333,
38.7035966667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2624166667,
38.7070066667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2557716667,
38.7077966667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2608816667,
38.7109883333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2548216667,
38.7120133333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2524116667,
38.7094233333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2548833333,
38.7042783333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2573483333,
38.7024033333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2535333333,
38.7011366667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2512266667,
38.7035866667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2487866667,
38.70506
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2471316667,
38.7010116667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2435083333,
38.6985516667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24821,
38.6981183333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2528516667,
38.6955866667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24824,
38.6949483333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2463416667,
38.6915933333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2441183333,
38.6949816667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24033,
38.6926933333
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2420116667,
38.6891916667
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.248205,
38.689435
]
},
"properties": {
"metadata": "StLouisMOWalnutPark:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22581,
38.593195
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2390516667,
38.5978966667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.236033,
38.586396
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.231717,
38.58654
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2303116667,
38.5899166667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.227015,
38.587845
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2355983333,
38.58227
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2363833333,
38.5902283333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2401366667,
38.59195
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2304316667,
38.593715
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22251,
38.5927033333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.232883,
38.597741
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2283733333,
38.5970916667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.234745,
38.5947166667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2286966667,
38.583735
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.223368,
38.585842
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2371583333,
38.5833483333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2407536,
38.5880125
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.21967,
38.589955
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2370316667,
38.5960433333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2289383333,
38.60004
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.225445,
38.597708
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2423316667,
38.583245
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2341416667,
38.5865333333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2249366667,
38.5890466667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2326433333,
38.5974483333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.231395,
38.5903066667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2295866667,
38.582285
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2246566667,
38.5828783333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22048,
38.5846733333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2211166667,
38.5922566667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.222595,
38.5951866667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2356383333,
38.6014183333
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2441083333,
38.596635
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.242585,
38.5893566667
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2336283333,
38.579155
]
},
"properties": {
"metadata": "StLouisMOSouth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.272846,
38.686872
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.268534,
38.683309
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.27314,
38.682384
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2789616667,
38.6826516667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2763283333,
38.6775433333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.270687,
38.673178
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2758466667,
38.6694483333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2733616667,
38.68032
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2822366667,
38.67891
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2748133333,
38.6738566667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2570633333,
38.672795
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2567,
38.664835
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2650033333,
38.6660633333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.255225,
38.6762366667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2418816667,
38.6684083333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.23379,
38.67433
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.256635,
38.6623433333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2688533333,
38.663515
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24428,
38.664255
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2639283333,
38.6811766667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2739783333,
38.6652966667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2472166667,
38.6786933333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2435016667,
38.6778016667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2231033333,
38.6616416667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2656966667,
38.6596933333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24836,
38.6626233333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2809383333,
38.6709616667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2463533333,
38.6734716667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2661083333,
38.668755
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2597566667,
38.6598983333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.238755,
38.671205
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.25879,
38.6683333333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2636,
38.6623033333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.231288,
38.678356
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2276408,
38.6759908
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2542966667,
38.6579566667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.255195,
38.678288
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.237035,
38.6765033333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.264685,
38.667811
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.234855,
38.664765
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2575316667,
38.67939
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2514583333,
38.66603
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2336,
38.67117
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.259478,
38.677031
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2388433333,
38.6733683333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.245681,
38.67078
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2672916667,
38.66522
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.253285,
38.6645016667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2636716667,
38.672065
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.252095,
38.670741
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22213,
38.675269
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2523183333,
38.6727366667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22736,
38.6649866667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.236615,
38.672987
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2307933333,
38.6752933333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2293533333,
38.6599966667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.227452,
38.669442
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2235116667,
38.6694483333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2808783333,
38.67338
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2805466667,
38.6761666667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.268355,
38.6800716667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2708466667,
38.6764233333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.261685,
38.6758866667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2526283333,
38.6621083333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2504433333,
38.6752333333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2491333333,
38.66982
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2405316667,
38.6750066667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2370066667,
38.6785116667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2261566667,
38.67714
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2170766667,
38.6759066667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2211016667,
38.6726066667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2406183333,
38.664415
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2313133333,
38.6620983333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2245716667,
38.6732233333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2196516667,
38.6768983333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2141066667,
38.6771333333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2115183333,
38.678515
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2073266667,
38.674755
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2067883333,
38.6720983333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.203335,
38.6679016667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.205685,
38.6661316667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.204955,
38.66321
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2100266667,
38.6629783333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2120266667,
38.6643683333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2157066667,
38.6662433333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2201316667,
38.6684533333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.218235,
38.67087
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2149966667,
38.6722766667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2121266667,
38.6744183333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2108316667,
38.672
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.214925,
38.6682983333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.209445,
38.66943
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2064416667,
38.6709966667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2095266667,
38.6669233333
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2318066667,
38.666955
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2291216667,
38.6718066667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2367066667,
38.6691966667
]
},
"properties": {
"metadata": "StLouisMONorth:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2025833333,
38.64865
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1975033333,
38.6489933333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1939733333,
38.6483266667
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1912066667,
38.64561
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1895016667,
38.6407116667
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1875866667,
38.63928
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1872366667,
38.6346483333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1844916667,
38.63394
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1866,
38.6300566667
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.19233,
38.6311733333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2023716667,
38.63347
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2092233333,
38.6352483333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2059883333,
38.645525
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2062683333,
38.6485883333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2025283333,
38.64447
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1994383333,
38.6428183333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.19591,
38.6441783333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1954416667,
38.6409616667
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2012883333,
38.6396933333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2052816667,
38.63767
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1924266667,
38.6383933333
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1971133333,
38.63378
]
},
"properties": {
"metadata": "StLouisMONearNorthZone:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.216125,
38.7892366667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2214866667,
38.7708466667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2166033333,
38.7704416667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2105416667,
38.76927
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2084166667,
38.7731933333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2038383333,
38.7767166667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2269933333,
38.7711383333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2335366667,
38.7721666667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2343333333,
38.77649
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.21341,
38.7732416667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.216141,
38.789247
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.220828,
38.789295
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.220625,
38.7925783333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.218715,
38.78982
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.21819,
38.79403
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.208565,
38.799855
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2106766667,
38.7981583333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.212845,
38.794955
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.228752,
38.79495
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2300233333,
38.7915566667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2279283333,
38.792875
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.228005,
38.7902933333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2092383333,
38.79036
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2183466667,
38.7847333333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.222915,
38.7849433333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2336483333,
38.78444
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.23262,
38.7878733333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2273083333,
38.81218
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2151116667,
38.8069716667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2274933333,
38.8091616667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2269466667,
38.8057066667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.226956,
38.797331
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1976316667,
38.789215
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1999916667,
38.78369
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2030416667,
38.7885283333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2132433333,
38.7695616667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2027,
38.78656
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.23037,
38.7832533333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2186333333,
38.779315
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.224648,
38.780214
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2274733333,
38.801295
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1969666667,
38.78707
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.194125,
38.7824816667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1953366667,
38.7797166667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1973783333,
38.77298
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2018,
38.7692616667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1945433333,
38.7666733333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.19784,
38.7695266667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.201317,
38.766082
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.207325,
38.7708066667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2068033333,
38.7657916667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2036433333,
38.76288
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.207565,
38.76177
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1921,
38.7611616667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1894233333,
38.76315
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1917666667,
38.75957
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2015383333,
38.7559466667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1867016667,
38.7630366667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.18865,
38.760575
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1912183333,
38.7571716667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.196305,
38.7596583333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2032066667,
38.7545866667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1999033333,
38.75334
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2025483333,
38.7512333333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2000566667,
38.7469866667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2038966667,
38.7471083333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2058483333,
38.749855
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2072266667,
38.7468966667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2097133333,
38.760555
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.20616,
38.7564066667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2063333333,
38.7528916667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.210155,
38.75366
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.214435,
38.7516166667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2092583333,
38.7512816667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2137883333,
38.7483366667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.211005,
38.7489883333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1939083333,
38.7561933333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1918416667,
38.788935
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2110333333,
38.7558816667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1952433333,
38.7524483333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.197555,
38.7576033333
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.1956133333,
38.7652116667
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.205885,
38.75821
]
},
"properties": {
"metadata": "StLouisCountyMOSpanishLake:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.22436,
38.791415
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.255252,
38.727074
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2659383333,
38.7482783333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2687683333,
38.7496766667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2781033333,
38.7531833333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.27923,
38.74845
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2747416667,
38.741095
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2642,
38.7415566667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2577483333,
38.7233383333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2617966667,
38.7204116667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.26657,
38.7211866667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.271105,
38.72509
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2715433333,
38.728645
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2715366667,
38.732835
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.260376,
38.750033
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.251165,
38.7471033333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2544266667,
38.7308666667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2521366667,
38.734725
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2526316667,
38.7419116667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2745383333,
38.75626
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2694216667,
38.75725
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2653566667,
38.760415
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.260355,
38.7647783333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.260793,
38.768099
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2560533333,
38.76962
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.251365,
38.7673283333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2464833333,
38.76319
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2427083333,
38.7570483333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2423216667,
38.76134
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2415183333,
38.7526483333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2443916667,
38.74987
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2569766667,
38.7661833333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2533466667,
38.7632583333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2454433333,
38.75438
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2578483333,
38.761585
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2619633333,
38.7248966667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2657333333,
38.7238433333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.25791,
38.7276616667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.262275,
38.7286233333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.267515,
38.7314933333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2544183333,
38.743265
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2488183333,
38.7504166667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2509283333,
38.753495
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2487683333,
38.7567616667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.274403,
38.749277
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2589633333,
38.7456066667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2674016667,
38.75434
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.252265,
38.7600566667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.248673,
38.761522
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2465333333,
38.7584716667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2543383333,
38.7564066667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2626266667,
38.7579166667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2654833333,
38.7449666667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2573616667,
38.738585
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2565016667,
38.7348183333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2452616667,
38.751465
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2453916667,
38.7606383333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.250625,
38.7356566667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.244735,
38.7261716667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.255695,
38.7231333333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2509,
38.7274283333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2506816667,
38.7314283333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.24591,
38.73289
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.25068,
38.7236416667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2485683333,
38.736065
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2645333333,
38.7360966667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.268335,
38.7356466667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2653316667,
38.7282233333
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2659716667,
38.7382516667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-90.2785133333,
38.7441966667
]
},
"properties": {
"metadata": "StLouisCountyMOCastlePoint:St. Louis, MO-IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.08719,
40.6155566667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0774883333,
40.6446733333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0758266667,
40.61679
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1196483333,
40.636375
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0972366667,
40.642425
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1187966667,
40.635195
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.11792,
40.6364833333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0807433333,
40.622485
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0882433333,
40.6468316667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.086805,
40.64473
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0946453333,
40.6379408333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.068383,
40.617018
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1124733333,
40.6298433333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0756816667,
40.6315216667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0744016667,
40.6096966667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.08799,
40.6311
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.089675,
40.6102783333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0749226667,
40.6248676667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.08354,
40.6078633333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.08083,
40.6201616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.11214,
40.6403933333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1177133333,
40.6279433333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.075905,
40.6285533333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1086766667,
40.63826
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.076105,
40.640385
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0704366667,
40.6115883333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0974933333,
40.634695
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.12346,
40.636225
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.106305,
40.6427766667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1021816667,
40.6394416667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0954183333,
40.6409766667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1072766667,
40.6323033333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0844216667,
40.6388966667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0930433333,
40.63134
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1072283333,
40.6304266667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.069155,
40.6130816667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0793133333,
40.6395166667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0780883333,
40.6337033333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0908616667,
40.63853
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.09294,
40.6455183333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.08178,
40.631875
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.089875,
40.6417166667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.113725,
40.6372816667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0762133333,
40.6069883333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.084707,
40.629568
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1144266667,
40.6425116667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0844833333,
40.625575
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.088355,
40.63405
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0919116667,
40.6339533333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0701033333,
40.61924
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0792016667,
40.6107433333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.079275,
40.6068333333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0866016667,
40.6080633333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1190116667,
40.63171
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0874516667,
40.6130483333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0820283333,
40.6153816667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0760266667,
40.6211366667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1200716667,
40.6400266667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0723966667,
40.6143733333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.125195,
40.6328583333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0818366667,
40.6260266667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.10608,
40.6355816667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1056633333,
40.6453416667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1268316667,
40.6364566667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0858816667,
40.6418083333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.10435,
40.630865
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1019383333,
40.6347533333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.07563,
40.6114116667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0848066667,
40.6367033333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.10108,
40.6313683333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.084925,
40.622805
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1221316667,
40.6344833333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.123355,
40.6319833333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0860483333,
40.6317366667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1091283333,
40.634555
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.0858916667,
40.6103083333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.098245,
40.6444933333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1101566667,
40.64483
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.103345,
40.6414883333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1292416667,
40.6383583333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1342866667,
40.640105
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1286116667,
40.6230983333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.147435,
40.6377566667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.151275,
40.6368416667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1647516667,
40.6399266667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1713133333,
40.63594
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1678483333,
40.63418
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.166105,
40.63372
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1619183333,
40.63321
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.16399,
40.6323966667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1635166667,
40.6308166667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1626,
40.632115
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1681516667,
40.6304666667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1722033333,
40.6274366667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.16863,
40.622215
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.16452,
40.6204533333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15993,
40.6181516667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.156535,
40.615615
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1542866667,
40.614485
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15251,
40.61754
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15002,
40.6198366667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1448633333,
40.6231816667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1418883333,
40.6228683333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1355116667,
40.6230416667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.13202,
40.6233433333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.124795,
40.6240333333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1324166667,
40.6366033333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1271966667,
40.6308333333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.13608,
40.6257083333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1303183333,
40.6294616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1330816667,
40.634175
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1346483333,
40.6305466667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1357133333,
40.637965
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1363833333,
40.6341866667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1383966667,
40.631475
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1426616667,
40.63453
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.142605,
40.62628
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.140525,
40.6294216667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1448016667,
40.6309033333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1466066667,
40.6295933333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1463033333,
40.62645
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1531783333,
40.634345
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1675466667,
40.637305
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1636633333,
40.63658
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1572633333,
40.6318233333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1580933333,
40.6345883333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.153225,
40.6319633333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1496616667,
40.6292266667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1539483333,
40.6292616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.150856,
40.625032
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15411,
40.6259516667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1690516667,
40.627435
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1646333333,
40.627725
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1588816667,
40.6287316667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1671766667,
40.6248083333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1631316667,
40.62343
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1603833333,
40.62072
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1560083333,
40.6193766667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1583383333,
40.6222566667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.138903,
40.640076
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1390633333,
40.6361083333
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.15282,
40.62024
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1385383333,
40.6217716667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1577683333,
40.6246616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1329533333,
40.6275316667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1570466667,
40.63656
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.146845,
40.633755
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.14306,
40.6383766667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.172665,
40.640325
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1713616667,
40.6393466667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1684983333,
40.6408616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-74.1661716667,
40.6385616667
]
},
"properties": {
"metadata": "StatenIslandNYZone1:New York-Newark-Jersey City, NY-NJ"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.57422,
42.1425266667
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.571825,
42.143715
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5704533333,
42.1402616667
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5664033333,
42.143645
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5664383333,
42.14495
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.57148,
42.1386
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5682383333,
42.137865
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5628683333,
42.1387216667
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56143,
42.14171
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5648916667,
42.1345533333
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.568355,
42.1352333333
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.57209,
42.133685
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5677283333,
42.1315983333
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.563435,
42.1336416667
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5625216667,
42.131515
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.557685,
42.1357883333
]
},
"properties": {
"metadata": "SpringfieldMANorth:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5551966667,
42.0960383333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5621433333,
42.109355
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56404,
42.0989983333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.561545,
42.0910783333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.578395,
42.0887166667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5836366667,
42.096945
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5752266667,
42.09939
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.58254,
42.099835
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.58059,
42.101195
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.579565,
42.1108783333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5873433333,
42.1005483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5838433333,
42.1013433333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5769733333,
42.1024016667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5686216667,
42.1067433333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5659066667,
42.10464
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5684116667,
42.1001766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.579045,
42.0909383333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5672633333,
42.0891216667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56009,
42.1039683333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5575366667,
42.0993616667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.57477,
42.0944833333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5754216667,
42.1094366667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5782783333,
42.106875
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5741616667,
42.09256
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.567525,
42.09594
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.570195,
42.0977766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.563555,
42.0976416667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5731283333,
42.107945
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.566205,
42.1101416667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5646516667,
42.1128466667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5579066667,
42.11324
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56797,
42.1150483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5720683333,
42.1113633333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.559015,
42.0882733333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56863,
42.1029633333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5627116667,
42.1023766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.570605,
42.0940483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5641666667,
42.08599
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55854,
42.086565
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5791716667,
42.1053016667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5823316667,
42.1045866667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6052366667,
42.1069
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5749866667,
42.1202066667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5920766667,
42.101885
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.59787,
42.1055466667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5858283333,
42.1031483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5910216667,
42.10505
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.59929,
42.1162783333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5850166667,
42.119915
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5982433333,
42.1123266667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5897733333,
42.111585
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6108333333,
42.1274166667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5704266667,
42.11933
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5920066667,
42.1214066667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5930833333,
42.1154166667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6099833333,
42.1231416667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5887383333,
42.1080616667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5795366667,
42.1124683333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6145866667,
42.1268316667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.589893,
42.11409
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.581935,
42.1130866667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.60842,
42.1101866667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5779616667,
42.121275
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.609265,
42.1120016667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.585275,
42.1144683333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.588865,
42.121265
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6033516667,
42.1208866667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5896066667,
42.1019333333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5868583333,
42.1258716667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.586155,
42.1083116667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5938216667,
42.1091283333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.58154,
42.11767
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5712466667,
42.1218783333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6150969,
42.11991
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6182266667,
42.1225583333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5941916667,
42.1037933333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6021796667,
42.1248643333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6071183333,
42.1165783333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.6129616667,
42.11701
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5874933333,
42.10423
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5904466667,
42.1030866667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5558316667,
42.1050516667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55619,
42.1124433333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.58262,
42.0944033333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5719933333,
42.0838316667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5580216667,
42.08451
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5536333333,
42.079125
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5496,
42.0827416667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5446883333,
42.0840616667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5460266667,
42.0863466667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55469,
42.08614
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55085,
42.0879166667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5496316667,
42.0928
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55366,
42.0902066667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5530933333,
42.0940033333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55126,
42.105375
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55267,
42.1155816667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5497783333,
42.1173566667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55735,
42.1173683333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5551733333,
42.1239666667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55806,
42.127766
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.558215,
42.1231766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.560505,
42.1236133333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5603733333,
42.1212833333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5592733333,
42.1197483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56234,
42.1198566667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5863333333,
42.097725
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.58935,
42.099665
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5840366667,
42.1240233333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.555785,
42.1206733333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5496183333,
42.1197766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.545795,
42.0802666667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55138,
42.0807083333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56318,
42.0897583333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.55735,
42.107625
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5577416667,
42.1107583333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.54768,
42.08321
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5528416667,
42.0827133333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5507466667,
42.0848516667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5556233333,
42.0891933333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.551075,
42.0911583333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5548233333,
42.0917333333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5831716667,
42.1228833333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5922983333,
42.1243616667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5901233333,
42.12913
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.562805,
42.0936433333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5856966667,
42.0954916667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5631733333,
42.10661
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.60039,
42.1292816667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.558475,
42.0798016667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.56939,
42.1099416667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5972283333,
42.1233966667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5968766667,
42.1198483333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5456016667,
42.09196
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5401116667,
42.090025
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5397183333,
42.086535
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5358516667,
42.088385
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5352666667,
42.0923133333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5340516667,
42.0863083333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5310433333,
42.0882766667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.539685,
42.0829316667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5431633333,
42.0851466667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5428883333,
42.08063
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5378983333,
42.08028
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5358216667,
42.08383
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.53535,
42.079805
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5329383333,
42.0824583333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.54626,
42.0773316667
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5512033333,
42.0765133333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-72.5562733333,
42.0772983333
]
},
"properties": {
"metadata": "SpringfieldMA:Springfield, MA"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.610505,
39.767775
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.626265,
39.7685
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.616356,
39.765064
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6291933333,
39.7663216667
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6303516667,
39.7614033333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.625362,
39.757502
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6220166667,
39.757975
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.624915,
39.7624433333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6221483333,
39.765995
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.618125,
39.76974
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6119233333,
39.76353
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.611995,
39.7605483333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6138266667,
39.7583233333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.618115,
39.7578833333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6193383333,
39.762525
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6139583333,
39.7691116667
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.622505,
39.7689916667
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6144016667,
39.7622
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6292166667,
39.7577433333
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6130366667,
39.76585
]
},
"properties": {
"metadata": "SpringfieldILSouth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.613269,
39.787095
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.642248,
39.784049
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65049,
39.812715
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6407733333,
39.80576
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.63103,
39.798705
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.612935,
39.7979883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.641375,
39.7994166667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6350916667,
39.816815
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.63994,
39.8164683333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6482883333,
39.809785
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6359116667,
39.790555
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6219416667,
39.79694
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6210133333,
39.7900183333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.616655,
39.78001
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.61883,
39.7808916667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6413966667,
39.7713216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6195166667,
39.777295
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65767,
39.8087116667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6518266667,
39.8105366667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6616383333,
39.8075133333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6573166667,
39.81314
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6445866667,
39.807175
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6409333333,
39.79276
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.641598,
39.802795
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6362816667,
39.804235
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6256633333,
39.7807266667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6447,
39.8162183333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6321233333,
39.77686
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6173483333,
39.8007083333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6327366667,
39.8018266667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6443683333,
39.80382
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6131216667,
39.7905816667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6506866667,
39.8149633333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65454,
39.8129
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65757,
39.8057983333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.64912,
39.8168166667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6539366667,
39.806265
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6412633333,
39.8095666667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6433616667,
39.81168
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.63474,
39.8082983333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.637845,
39.80768
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.63019,
39.810145
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6174983333,
39.794715
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.618245,
39.7872383333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6209616667,
39.7933566667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6267416667,
39.7958083333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6396333333,
39.795935
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6321466667,
39.7945933333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.63128,
39.7905616667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6397933333,
39.7883533333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6339,
39.78675
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6384833333,
39.7830383333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6410783333,
39.7793883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6360933333,
39.779445
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6244783333,
39.7872883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6236816667,
39.7771583333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6268316667,
39.7770433333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6356,
39.7753866667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.62239,
39.8018616667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.630745,
39.8059916667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6460833333,
39.8133616667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.635225,
39.7961383333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.635435,
39.79373
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6274916667,
39.792725
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.626285,
39.7905916667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6309683333,
39.7828983333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.638115,
39.7716966667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6499183333,
39.8049783333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6371866667,
39.8003266667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.62677,
39.801822
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6610266667,
39.8103083333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.639245,
39.81387
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.634615,
39.812389
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6379533333,
39.8113216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6234566667,
39.7992033333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6169033333,
39.79166
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6380083333,
39.78609
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6286633333,
39.7862666667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6197683333,
39.7841233333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6240866667,
39.7842516667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6310733333,
39.7802733333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6292016667,
39.7742216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6314566667,
39.7722116667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.635465,
39.7710766667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6409533333,
39.7761716667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6549183333,
39.8105633333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.650575,
39.80913
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.613055,
39.7940516667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6352866667,
39.7846133333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65631,
39.795065
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6504,
39.79492
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6531233333,
39.7924083333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.65765,
39.790515
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.64828,
39.7892216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6440383333,
39.788365
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6482683333,
39.78484
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6584633333,
39.7827883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6511616667,
39.7792966667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6492533333,
39.7807566667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6450483333,
39.781785
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.644925,
39.7779183333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6486316667,
39.7771666667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6513966667,
39.7737883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.64923,
39.7711216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.651775,
39.7678133333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6460433333,
39.7737266667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6472683333,
39.7673883333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6427366667,
39.76688
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6453483333,
39.76891
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6544333333,
39.78223
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6548916667,
39.78794
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6394116667,
39.7646583333
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6571716667,
39.7791216667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-89.6571383333,
39.7858416667
]
},
"properties": {
"metadata": "SpringfieldILNorth:Springfield, IL"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.4938016667,
29.8302716667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.49506,
29.8258833333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.4912216667,
29.8284
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5533033333,
29.8121033333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.557215,
29.8106666667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5534983333,
29.8098933333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5506266667,
29.8099983333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5476983333,
29.8109633333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5507266667,
29.8127833333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.547255,
29.8128233333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.544005,
29.8116866667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5453683333,
29.8147833333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5541033333,
29.81507
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5578016667,
29.8125416667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5558566667,
29.8080883333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.54819,
29.8077483333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5520116667,
29.8066583333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.543605,
29.8088683333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5500616667,
29.8159966667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5605583333,
29.808175
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5609916667,
29.814225
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5320783333,
29.817365
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5280783333,
29.816115
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5317566667,
29.8187
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5266766667,
29.8185216667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.523585,
29.81966
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5305283333,
29.8197066667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5294933333,
29.81466
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5261233333,
29.81351
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.52428009,
29.8156651
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5342166667,
29.8144883333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5342,
29.8173083333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5370133333,
29.815365
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5336466667,
29.8205283333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5359866667,
29.8189383333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5367816667,
29.822295
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5280566667,
29.8218733333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5313483333,
29.8228633333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.526285,
29.8229383333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5070533333,
29.8269066667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5097466667,
29.8273116667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.51007,
29.8249083333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.505845,
29.8244816667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5046466667,
29.8269033333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.500425,
29.829585
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.50486,
29.829317
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5092166667,
29.8292283333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5017066667,
29.8269083333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.50241,
29.83221
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.50605,
29.8327766667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.51263,
29.8327916667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.512495,
29.8308733333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5139033333,
29.8244483333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.510525,
29.8226
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.504225,
29.8232883333
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5003033333,
29.824475
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-95.5132383333,
29.8277116667
]
},
"properties": {
"metadata": "SpringBranchISDHoustonTX:Houston-Pasadena-The Woodlands, TX"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2495016667,
41.6609566667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2659633333,
41.657575
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2648833333,
41.65147
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2610833333,
41.65402
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2598933333,
41.650515
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.258965,
41.6572766667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.255815,
41.6509716667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2459416667,
41.64989
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2378666667,
41.6501016667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2478633333,
41.654775
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.23437,
41.6538633333
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2437583333,
41.6547883333
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2283383333,
41.65113
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.22815,
41.656555
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.233525,
41.6595166667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2426483333,
41.6607166667
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.2517033333,
41.6569283333
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-86.241085,
41.658255
]
},
"properties": {
"metadata": "SouthBendINEast:South Bend-Mishawaka, IN-MI"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment