from decouple import config # Path to TLE # Filename convention: {TLE_DIR}/{observation_id}.txt TLE_DIR = config('SATNOGS_TLE_DIR') # absulute frequency measurement storage # Filename convention: {DOPPLER_OBS_DIR}/{observation_id}.dat DOPPLER_OBS_DIR = config('SATNOGS_DOPPLER_OBS_DIR') # legacy name: OBS_DIR = DOPPLER_OBS_DIR # SATTOOLS/STRF/STVID sites.txt file SITES_TXT = config('SATNOGS_SITES_TXT') SATNOGS_NETWORK_API_URL = config('SATNOGS_NETWORK_API_URL') SATNOGS_DB_API_URL = config('SATNOGS_DB_API_URL') SATNOGS_DB_API_TOKEN = config('SATNOGS_DB_API_TOKEN')