Developed by Shd at SMHI.
- Python based service using FastAPI
- Handles the versioned station.txt list at the Swedish NODC
In production: Make sure to add environment variable "SHARK_STATION_LIST" with the path to the versioned controlled station list file.
Create a virtual environment for your project with venv:
python -m venv venv
Activate the virtual environment:
source ./venv/bin/activate
Install requirements with pip:
pip install -r requirements.txt
Alternative with conda:
conda env create --file environment.yaml
Activate environment:
conda activate py39