Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
west=west, network_type=network_type,
timeout=timeout, memory=memory,
max_query_area_size=max_query_area_size,
infrastructure=infrastructure, custom_filter=custom_filter)
# create the graph, then truncate to the bounding box
G = create_graph(response_jsons, name=name, retain_all=retain_all,
bidirectional=network_type in settings.bidirectional_network_types)
G = truncate_graph_bbox(G, north, south, east, west, retain_all=retain_all, truncate_by_edge=truncate_by_edge)
# simplify the graph topology as the last step. don't truncate after
# simplifying or you may have simplified out to an endpoint
# beyond the truncation distance, in which case you will then strip out
# your entire edge
if simplify:
G = simplify_graph(G)
log('graph_from_bbox() returning graph with {:,} nodes and {:,} edges'.format(len(list(G.nodes())), len(list(G.edges()))))
return G
max_query_area_size=max_query_area_size,
infrastructure=infrastructure, custom_filter=custom_filter)
# create the graph from the downloaded data
G = create_graph(response_jsons, name=name, retain_all=True,
bidirectional=network_type in settings.bidirectional_network_types)
# truncate the graph to the extent of the polygon
G = truncate_graph_polygon(G, polygon, retain_all=retain_all, truncate_by_edge=truncate_by_edge)
# simplify the graph topology as the last step. don't truncate after
# simplifying or you may have simplified out to an endpoint beyond the
# truncation distance, in which case you will then strip out your entire
# edge
if simplify:
G = simplify_graph(G)
log('graph_from_polygon() returning graph with {:,} nodes and {:,} edges'.format(len(list(G.nodes())), len(list(G.edges()))))
return G
gdf_nodes = graph_to_gdfs(G, edges=False, node_geometry=True)
lnglat_point = gdf_nodes.unary_union.centroid.coords[0]
point = tuple(reversed(lnglat_point))
# otherwise, get the network by either address or point, whichever was
# passed-in, using a distance multiplier to make sure we get more than
# enough network. simplify in non-strict mode to not combine multiple street
# types into single edge
elif address is not None:
G, point = graph_from_address(address, distance=dist*multiplier, distance_type='bbox', network_type=network_type,
simplify=False, truncate_by_edge=True, return_coords=True)
G = simplify_graph(G, strict=False)
elif point is not None:
G = graph_from_point(point, distance=dist*multiplier, distance_type='bbox', network_type=network_type,
simplify=False, truncate_by_edge=True)
G = simplify_graph(G, strict=False)
else:
raise ValueError('You must pass an address or lat-long point or graph.')
# if user did not pass in custom street widths, create a dict of default
# values
if street_widths is None:
street_widths = {'footway' : 1.5,
'steps' : 1.5,
'pedestrian' : 1.5,
'service' : 1.5,
'path' : 1.5,
'track' : 1.5,
'motorway' : 6}
# we need an undirected graph to find every edge incident to a node
G_undir = G.to_undirected()
the name of the graph
Returns
-------
networkx multidigraph
"""
# transmogrify file of OSM XML data into JSON
response_jsons = [overpass_json_from_file(filename)]
# create graph using this response JSON
G = create_graph(response_jsons, bidirectional=bidirectional,
retain_all=retain_all, name=name)
# simplify the graph topology as the last step.
if simplify:
G = simplify_graph(G)
log('graph_from_file() returning graph with {:,} nodes and {:,} edges'.format(len(list(G.nodes())), len(list(G.edges()))))
return G
polygon_utm, crs_utm = project_geometry(geometry=polygon)
polygon_proj_buff = polygon_utm.buffer(buffer_dist)
polygon_buffered, _ = project_geometry(geometry=polygon_proj_buff, crs=crs_utm, to_latlong=True)
# get the network data from OSM, create the buffered graph, then
# truncate it to the buffered polygon
response_jsons = osm_net_download(polygon=polygon_buffered, network_type=network_type,
timeout=timeout, memory=memory,
max_query_area_size=max_query_area_size,
infrastructure=infrastructure, custom_filter=custom_filter)
G_buffered = create_graph(response_jsons, name=name, retain_all=True,
bidirectional=network_type in settings.bidirectional_network_types)
G_buffered = truncate_graph_polygon(G_buffered, polygon_buffered, retain_all=True, truncate_by_edge=truncate_by_edge)
# simplify the graph topology
G_buffered = simplify_graph(G_buffered)
# truncate graph by polygon to return the graph within the polygon that
# caller wants. don't simplify again - this allows us to retain
# intersections along the street that may now only connect 2 street
# segments in the network, but in reality also connect to an
# intersection just outside the polygon
G = truncate_graph_polygon(G_buffered, polygon, retain_all=retain_all, truncate_by_edge=truncate_by_edge)
# count how many street segments in buffered graph emanate from each
# intersection in un-buffered graph, to retain true counts for each
# intersection, even if some of its neighbors are outside the polygon
G.graph['streets_per_node'] = count_streets_per_node(G_buffered, nodes=G.nodes())
else:
# download a list of API responses for the polygon/multipolygon
response_jsons = osm_net_download(polygon=polygon, network_type=network_type,
polygon_proj_buff = polygon_utm.buffer(buffer_dist)
polygon_buff, _ = project_geometry(geometry=polygon_proj_buff, crs=crs_utm, to_latlong=True)
west_buffered, south_buffered, east_buffered, north_buffered = polygon_buff.bounds
# get the network data from OSM then create the graph
response_jsons = osm_net_download(north=north_buffered, south=south_buffered,
east=east_buffered, west=west_buffered,
network_type=network_type, timeout=timeout,
memory=memory, max_query_area_size=max_query_area_size,
infrastructure=infrastructure, custom_filter=custom_filter)
G_buffered = create_graph(response_jsons, name=name, retain_all=retain_all,
bidirectional=network_type in settings.bidirectional_network_types)
G = truncate_graph_bbox(G_buffered, north, south, east, west, retain_all=True, truncate_by_edge=truncate_by_edge)
# simplify the graph topology
G_buffered = simplify_graph(G_buffered)
# truncate graph by desired bbox to return the graph within the bbox
# caller wants
G = truncate_graph_bbox(G_buffered, north, south, east, west, retain_all=retain_all, truncate_by_edge=truncate_by_edge)
# count how many street segments in buffered graph emanate from each
# intersection in un-buffered graph, to retain true counts for each
# intersection, even if some of its neighbors are outside the bbox
G.graph['streets_per_node'] = count_streets_per_node(G_buffered, nodes=G.nodes())
else:
# get the network data from OSM
response_jsons = osm_net_download(north=north, south=south, east=east,
west=west, network_type=network_type,
timeout=timeout, memory=memory,
max_query_area_size=max_query_area_size,