Usage
Introducing the spatial-tda Python package for Spatial Topological Data Analysis¶
Uncomment the following line to install spatial-tda if needed.
In [ ]:
Copied!
# !pip install spatial-tda
# !pip install spatial-tda
Currently, this package only supports spatial datasets with polygonal geometries, as the adjacency module is designed to rely on shared boundaries between polygons to construct adjacency simplicial complexes. This structure is essential for accurately capturing spatial relationships and computing topological summaries. Datasets containing point or line geometries are not compatible, as they lack the necessary boundary-sharing properties required for the adjacency-based analysis.
import spatial_tda as tda
Module Overview¶
- Adjacency Simplex: Construct adjacency simplicial complexes from polygonal datasets.
- Topological Summaries: Compute topological summaries for simplicial complexes.
- Future Work: Extend the package to support point and line geometries.