Skip to content
Snippets Groups Projects
station.py 246 B
"""Station metadata.
"""
from datetime import timedelta

# Time between data samples in seconds
DATA_INTERVAL = timedelta(seconds=5)

# station elevation in meters above the surface in feet
ELEVATION = 325

# Id of station from v1 records
ID = 1