Skip to content
Snippets Groups Projects
station.py 600 B
Newer Older
"""Station metadata.
"""
from datetime import timedelta
Bruce Flynn's avatar
Bruce Flynn committed

# Time between data samples in seconds
DATA_INTERVAL = timedelta(seconds=5)
Bruce Flynn's avatar
Bruce Flynn committed

# these heights are for the top of the penthouse roof
ELEVATION = 329.522  # meters above mean sea level
HEIGHT = 294.8338  # height in meters above ground level
Bruce Flynn's avatar
Bruce Flynn committed

# Id of station from v1 records
Bruce Flynn's avatar
Bruce Flynn committed

# Buoy 43.098386, -89.405281
LATITUDE = 43.070786
LONGITUDE = -89.406939

station_info = {
    'site': 'mendota',
    'inst': 'buoy',
    'long_name': 'AOSS Tower',
    'short_name': 'aoss.tower',
    'alt': ELEVATION,
    'lon': LONGITUDE,
    'lat': LATITUDE,
}