Algorithms for storing, manipulating, and analyzing geospatial data.
Reduce the complexity of a line geometry by removing points that don't meet a distance threshold.
Enclose a set of points in a convex polygon by checking the cross product of vectors for candidate points.
- Activate venv
python3 -m venv .venv source .venv/bin/activate - Install python requirements
pip3 install -r requirements.txt
- Run tests
pytest tests
- Add requirement to
requirements.in - Compile the
requirements.txtfilepython3 -m pip install pip-tools pip-compile --output-file=requirements.txt requirements.in

