I have a geopandas dataframe where I find to use some graph theory package to find graph properties such as connected components.
How can I find graph-theoretic properties conveniently with Geopandas dataframe?
I have a geopandas dataframe where I find to use some graph theory package to find graph properties such as connected components.
How can I find graph-theoretic properties conveniently with Geopandas dataframe?
Copyright © 2021 Jogjafile Inc.
You can use
pysal
to generate spatial weights matrix (which is internally graph) - http://pysal.org/notebooks/lib/libpysal/weights.html. All weights classes havefrom_dataframe
option.Spatial weights can be further exported to
networkx
Graph object for further graph-based analysis.Notice that for some of the things (like components), you can use weights directly - see attributes in docs https://pysal.org/libpysal/generated/libpysal.weights.W.html#libpysal.weights.W.