Python library for manipulation and analysis of geometric objects on the sphere.
Spherely is the counterpart of Shapely (2.0+) for manipulation and analysis of spherical geometric objects. It is using the widely deployed open-source geometry library s2geometry via the library s2geography which provides a GEOS compatibility layer on top of s2geometry.
This library is at an early stage of development.
- Python
- Numpy
- s2geography
- s2geometry
There is no pre-compiled package available at the moment. See the section below for instructions on how to setup a development environment and build / install spherely from source.
After cloning this repo, create a conda environment using the ci/environment.yml file with the required dependencies:
$ conda env create -f spherely/ci/environment.yml
$ conda activate spherely-dev
Clone and install s2geography
(https://github.com/paleolimbot/s2geography):
$ git clone https://github.com/paleolimbot/s2geography
$ cmake -S s2geography -B s2geography/build -DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
$ cmake --build s2geography/build
$ cmake --install s2geography/build
Build and install s2spherely
:
$ cd spherely
$ python -m pip install . -v --no-build-isolation
Run the tests:
$ pytest . -v