Topojson is a library that is capable of creating a topojson encoded format of merely any geographical object in Python.
With topojson it is possible to reduce the size of your geographical data. Mostly by orders of magnitude. It is able to do so through:
- Eliminating redundancy through computation of a topology
- Fixed-precision integer encoding of coordinates and
- Simplification and quantization of arcs
The package can be used in multiple different ways, with the main purpose to create a TopoJSON topology.
See the Python Topojson Documentation Site for all info or this Notebook with some examples, such as the following:
Top row (right) presents linestring simplification on a computed Topology and (left) on the geographical object directly. Bottom row presents visual impact on file size reduction between (left) Raw GeoJSON and (right) Topological optimized TopoJSON.
Installation can be done through PyPI by the following command:
python3 -m pip install topojson
And through conda using the following command:
conda install -c conda-forge topojson
This package topojson
has the following hard dependencies:
numpy
shapely
Further, optional soft dependencies are:
altair
(enlarge the experience by visualizing your TopoJSON output)simplification
(more and quicker simplification options)geojson
(parse string input with GeoJSON data)geopandas
(withfiona
version >=1.8.6!, parse your TopoJSON output directly into a GeoDataFrame)ipywidgets
+ (lab)extension (make your life complete with the interactive experience)
For now, just use the Github issues. That can be:
- usage questions
- bug reports
- feature suggestions
- or anything related
Finally, see the Python Topojson Documentation Site for all info how to use this package.