PyMEOS#
MEOS (Mobility Engine, Open Source) is a C library which enables the manipulation of temporal and spatio-temporal data based on MobilityDB’s data types and functions.
PyMEOS is a library built on top of MEOS that provides all of its functionality wrapped in a set of Python classes.
Requirements#
PyMEOS 1.1 requires
Python >=3.7
MEOS >=1.1
Installing PyMEOS#
We recommend installing PyMEOS using one of the available built
distributions using pip
or conda
:
Using pip
:
pip install pymeos
Using conda
:
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install -c conda-forge pymeos
See the installation documentation for more details and advanced installation instructions.
Examples#
A couple of examples showcasing the capabilities of PyMEOS can be found int the examples section.