Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add module to read/interpret NCEI storm database #1962

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
2 changes: 2 additions & 0 deletions ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ pyproj==3.1.0
scipy==1.7.0
traitlets==5.0.5
xarray==0.19.0
fsspec
pint_pandas
2 changes: 2 additions & 0 deletions src/metpy/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
from .metar import * # noqa: F403
from .nexrad import * # noqa: F403
from .station_data import * # noqa: F403
from .storms import * # noqa: F403
from ..package_tools import set_module

__all__ = gini.__all__[:] # pylint: disable=undefined-variable
__all__.extend(metar.__all__) # pylint: disable=undefined-variable
__all__.extend(nexrad.__all__) # pylint: disable=undefined-variable
__all__.extend(station_data.__all__) # pylint: disable=undefined-variable
__all__.extend(storms.__all__) # pylint: disable=undefined-variable

set_module(globals())
Loading