Skip to content

Instantly share code, notes, and snippets.

@CloudNiner
Last active July 13, 2020 19:55
Show Gist options
  • Save CloudNiner/8b020f434d0509419032c6b2fe0577c5 to your computer and use it in GitHub Desktop.
Save CloudNiner/8b020f434d0509419032c6b2fe0577c5 to your computer and use it in GitHub Desktop.
OSM GeoJson by Bounding Box and Tags via OSMX
"""
This demo uses OSMExpress and the s2sphere library to query a OSMX db by bounding box.
It writes a GeoJson FeatureCollection of all nodes and ways that matched the tag query to stdout
TODO: Relation support
Example:
```
python3 demo.py ./data/pennsylvania.osmx \
--bbox "-75.255188,40.021212,-75.217095,40.050702" \
--tag "surface=gravel" > osm_manayunk_pa_gravel.geojson
```
requirements.txt:
```
click==7.1.2
geojson==2.5.0
osmx==0.0.4
s3sphere==0.2.5
```
"""
from collections import namedtuple
from itertools import zip_longest
import logging
import sys
import click
import geojson
from geojson import Feature, FeatureCollection, LineString, Point
import osmx
import s2sphere
logging.basicConfig(format="%(message)s")
logger = logging.getLogger(__name__)
# logger.setLevel(logging.DEBUG)
# id: int, location: (lat, lon, version), tags: dict, metadata: dict
Node = namedtuple("Node", ["id", "location", "tags", "metadata"])
# id: int, nodes: [int], tags: dict, metadata: dict
Way = namedtuple("Way", ["id", "nodes", "tags", "metadata"])
def grouper(n, iterable, fillvalue=None):
"Collect data into fixed-length chunks or blocks"
# grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
args = [iter(iterable)] * n
return zip_longest(*args, fillvalue=fillvalue)
def match_tags(feature_tags, match_tags):
""" Return True if any of match_tags match node_tags, otherwise False.
TODO: Probably a waaaay nice solution in combination with osmx.tag_dict()
feature_tags: [str] of the form [key, value, ...].
match_tags: [str] of the form ["key[=value]", ...] where value is optional.
Example ["highway=crossing", "maxheight"].
"""
for t in match_tags:
k, _, v = t.partition("=")
for node_k, node_v in grouper(2, feature_tags, fillvalue=""):
if node_k == k and (node_v == v or v == ""):
return True
return False
@click.command()
@click.argument(
"osmx_database", type=click.Path(exists=True),
)
@click.option(
"--bbox", type=str,
)
@click.option(
"-t",
"--tag",
multiple=True,
help="Optionally filter by tag. Provide '<key>' or '<key>=<value>'.",
)
def main(osmx_database, bbox, tag):
"""Query OSMX_DATABASE for objects in BBOX that match tags."""
logger.debug("{} - {} - {}".format(osmx_database, bbox, tag))
minlon, minlat, maxlon, maxlat = bbox.split(",")
p1 = s2sphere.LatLng.from_degrees(float(minlat), float(minlon))
p2 = s2sphere.LatLng.from_degrees(float(maxlat), float(maxlon))
region = s2sphere.LatLngRect.from_point_pair(p1, p2)
coverer = s2sphere.RegionCoverer()
# Values from https://github.com/protomaps/OSMExpress/blob/master/src/extract.cpp#L131-L132
# TODO: Smartly query s2 levels so we're not looking at a bunch of small boxes
coverer.max_cells = 1024
coverer.min_level = 16
coverer.max_level = 16
cell_ids = coverer.get_covering(region)
logger.debug("BBox covers {} cells.".format(len(cell_ids)))
env = osmx.Environment(osmx_database)
with osmx.Transaction(env) as txn:
node_ids = []
cell_node_index = osmx.Index(txn, b"cell_node")
for cell_id in cell_ids:
node_ids.extend(cell_node_index.get(cell_id.id()))
location_index = osmx.Locations(txn)
node_index = osmx.Nodes(txn)
# Find nodes with requested tags
nodes = []
for node_id in node_ids:
osmx_node = node_index.get(node_id)
if osmx_node is not None and match_tags(osmx_node.tags, tag):
osmx_node_dict = osmx_node.to_dict()
nodes.append(
Node(
id=node_id,
location=location_index.get(node_id),
tags=osmx.tag_dict(osmx_node_dict["tags"]),
metadata=osmx_node_dict["metadata"],
)
)
logger.debug("Matched {} nodes".format(len(nodes)))
# Find ways with requested tags
node_way_index = osmx.NodeWay(txn)
way_table = osmx.Ways(txn)
ways = []
for node_id in node_ids:
node_way_ids = node_way_index.get(node_id)
for way_id in node_way_ids:
osmx_way = way_table.get(way_id)
if osmx_way is not None and match_tags(osmx_way.tags, tag):
osmx_way_dict = osmx_way.to_dict()
way = Way(
id=way_id,
nodes=osmx_way_dict["nodes"],
tags=osmx.tag_dict(osmx_way_dict["tags"]),
metadata=osmx_way_dict["metadata"],
)
ways.append(way)
logger.debug("Matched {} ways".format(len(ways)))
# OSM Objects -> Features
features = [
Feature(
id=n.id,
geometry=Point((n.location[0], n.location[1])),
properties={"metadata": n.metadata, "tags": n.tags},
)
for n in nodes
]
for way in ways:
locations = [location_index.get(l) for l in way.nodes]
# TODO: Detect area from tags and create Polygon instead
geometry = LineString([(l[1], l[0]) for l in locations])
features.append(
Feature(
id=way.id,
geometry=geometry,
properties={"metadata": way.metadata, "tags": way.tags},
)
)
# Write GeoJson
sys.stdout.write(geojson.dumps(FeatureCollection(features)))
if __name__ == "__main__":
main()
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 43284701, "geometry": {"type": "LineString", "coordinates": [[-75.220137, 40.02314], [-75.220182, 40.023156], [-75.220581, 40.023296], [-75.221302, 40.023589], [-75.221437, 40.023626], [-75.221866, 40.023914], [-75.221935, 40.023942], [-75.222138, 40.024077], [-75.22263, 40.024475], [-75.222885, 40.024685], [-75.222927, 40.024714], [-75.22298, 40.024758], [-75.223247, 40.024998], [-75.223409, 40.025115], [-75.22342, 40.025104]]}, "properties": {"metadata": {"version": 20, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786164, "geometry": {"type": "LineString", "coordinates": [[-75.225621, 40.026066], [-75.225894, 40.02619], [-75.22596, 40.026218], [-75.226052, 40.026266], [-75.226278, 40.026365], [-75.226288, 40.026353]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 503591576, "geometry": {"type": "LineString", "coordinates": [[-75.233226, 40.031368], [-75.233492, 40.031684]]}, "properties": {"metadata": {"version": 2, "timestamp": 1572118838, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "yes", "foot": "yes", "highway": "path", "motor_vehicle": "no", "segregated": "no", "smoothness": "bad", "surface": "gravel"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 503591576, "geometry": {"type": "LineString", "coordinates": [[-75.233226, 40.031368], [-75.233492, 40.031684]]}, "properties": {"metadata": {"version": 2, "timestamp": 1572118838, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "yes", "foot": "yes", "highway": "path", "motor_vehicle": "no", "segregated": "no", "smoothness": "bad", "surface": "gravel"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 117299525, "geometry": {"type": "LineString", "coordinates": [[-75.213795, 40.048282], [-75.213799, 40.048197], [-75.213792, 40.048079], [-75.213784, 40.047987], [-75.213784, 40.047954], [-75.213812, 40.04787], [-75.213843, 40.047797], [-75.21391, 40.047665], [-75.213984, 40.047529], [-75.214076, 40.047431], [-75.214212, 40.047317], [-75.214346, 40.047215], [-75.214456, 40.047139], [-75.214582, 40.047065], [-75.214764, 40.046978], [-75.214829, 40.046958], [-75.214921, 40.046951], [-75.215014, 40.046953], [-75.21509, 40.046957], [-75.215237, 40.04697], [-75.215409, 40.047039], [-75.215624, 40.047119], [-75.21579, 40.047191], [-75.215865, 40.047224], [-75.216026, 40.047359], [-75.2163, 40.047517], [-75.217668, 40.048116], [-75.217788, 40.048172], [-75.217947, 40.04826], [-75.217974, 40.048317], [-75.218002, 40.048388], [-75.218086, 40.048524]]}, "properties": {"metadata": {"version": 4, "timestamp": 1562497479, "changeset": 0, "uid": 0, "user": ""}, "tags": {"highway": "path", "surface": "gravel", "width": "2"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}, {"type": "Feature", "id": 753786166, "geometry": {"type": "LineString", "coordinates": [[-75.227451, 40.026882], [-75.227925, 40.027094], [-75.228358, 40.027406], [-75.228801, 40.027688], [-75.228975, 40.027853], [-75.229039, 40.027915], [-75.229391, 40.028202], [-75.229654, 40.028395], [-75.229838, 40.028514], [-75.22989, 40.028534], [-75.230279, 40.028803], [-75.230454, 40.028928], [-75.230529, 40.028947], [-75.230589, 40.028982], [-75.230773, 40.029138], [-75.230902, 40.029266], [-75.232079, 40.0302], [-75.23264, 40.030847], [-75.233226, 40.031368], [-75.233608, 40.0315], [-75.233791, 40.031658], [-75.233907, 40.031773], [-75.234373, 40.032086], [-75.234549, 40.032226], [-75.234965, 40.032778], [-75.235361, 40.033193], [-75.236253, 40.033845], [-75.236864, 40.034373], [-75.237172, 40.034605], [-75.237482, 40.034792], [-75.238184, 40.035337], [-75.239713, 40.036215], [-75.239906, 40.036383], [-75.240691, 40.036937], [-75.241081, 40.037145], [-75.241769, 40.037191], [-75.242575, 40.037314], [-75.243028, 40.037557], [-75.244111, 40.037988], [-75.245024, 40.038679], [-75.245598, 40.039489], [-75.24578, 40.039838], [-75.245801, 40.039994], [-75.245859, 40.040196], [-75.245913, 40.040243], [-75.246123, 40.04052], [-75.246311, 40.040799], [-75.246788, 40.041193], [-75.247994, 40.042058], [-75.24839, 40.042397], [-75.24911, 40.042842], [-75.249352, 40.043017], [-75.24966, 40.043269], [-75.249792, 40.0434], [-75.249885, 40.043505], [-75.24997, 40.043658], [-75.249975, 40.043772], [-75.249956, 40.043828], [-75.249945, 40.043866], [-75.24992, 40.043923], [-75.249865, 40.044073], [-75.249857, 40.044108], [-75.249839, 40.044178], [-75.249756, 40.044397]]}, "properties": {"metadata": {"version": 1, "timestamp": 1575853851, "changeset": 0, "uid": 0, "user": ""}, "tags": {"bicycle": "designated", "foot": "yes", "highway": "cycleway", "motor_vehicle": "no", "name": "Schuylkill River Trail \u2013 Manayunk Canal Towpath", "segregated": "no", "smoothness": "excellent", "surface": "gravel", "wikidata": "Q25042236", "wikipedia": "en:Manayunk Canal Towpath"}}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment