ATMOS/pyatmos/__init__.py

23 lines
728 B
Python
Raw Normal View History

2019-11-25 00:19:36 +08:00
'''
pyatmos package
2021-06-07 14:53:58 +08:00
This package is an archive of scientific routines that implement the
estimation of atmospheric properties for various atmospheric models, such
as exponential, coesa76, nrlmsise00, and jb2008.
2021-01-22 15:33:37 +08:00
2020-03-27 17:37:51 +08:00
'''
import os
2021-01-22 15:33:37 +08:00
from .standardatmos.expo import expo
from .standardatmos.coesa76 import coesa76
2021-06-07 14:53:58 +08:00
from .msise.spaceweather import download_sw_nrlmsise00,read_sw_nrlmsise00
from .jb2008.spaceweather import download_sw_jb2008,read_sw_jb2008
from .msise.nrlmsise00 import nrlmsise00
from .jb2008.jb2008 import jb2008
from .utils import data_prepare
# Load IERS data based on environment variable
enable_iers_load = os.getenv("ENABLE_IERS_LOAD", "true").lower() == "true"
data_prepare.iers_load(enable_iers_load)