This module contains the following independent components
- Database setup and access for local storage of blitzortung.org data.
- Strike data import from data.blitzortung.org.
- JsonRPC Webservice providing strike data in different formats.
- Clustering of strike data (under development).
It is recommended to install the package in a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install blitzortungFor development installation from source:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -e .Scipy and fastcluster are required for the (optional) clustering functionality. These can be installed via:
pip install scipy fastcluster