You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following example given by @ljwolf from SciPy 2018 of constructing the arc adjacency matrix with a geopandas.GeoDataFrame.sindex for speed improvements.
Current procedure
extract vertices from networks lines (arcs).
This means each euclidean segment within a network line, which means many small arcs for a sinuous line.
build adjacency list of nodes
create network arc representation based on vertices
build contiguity weights based on (3)
Proposed procedure
(when geopandas available), build contiguity weights based on each network arc (one record) in the geopandas.GeoDataFrame with the use of an sindex.
extract network vertices from the endpoints of (1)
The text was updated successfully, but these errors were encountered:
Following example given by @ljwolf from SciPy 2018 of constructing the arc adjacency matrix with a
geopandas.GeoDataFrame.sindex
for speed improvements.Current procedure
arcs
).Proposed procedure
geopandas
available), build contiguity weights based on each network arc (one record) in thegeopandas.GeoDataFrame
with the use of ansindex
.The text was updated successfully, but these errors were encountered: