roms-tools 0.0.6__py3-none-any.whl → 0.20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ci/environment.yml +29 -0
- roms_tools/__init__.py +6 -0
- roms_tools/_version.py +1 -1
- roms_tools/setup/atmospheric_forcing.py +935 -0
- roms_tools/setup/boundary_forcing.py +711 -0
- roms_tools/setup/datasets.py +457 -0
- roms_tools/setup/fill.py +376 -0
- roms_tools/setup/grid.py +610 -325
- roms_tools/setup/initial_conditions.py +528 -0
- roms_tools/setup/plot.py +203 -0
- roms_tools/setup/tides.py +809 -0
- roms_tools/setup/topography.py +257 -0
- roms_tools/setup/utils.py +162 -0
- roms_tools/setup/vertical_coordinate.py +494 -0
- roms_tools/tests/test_atmospheric_forcing.py +1645 -0
- roms_tools/tests/test_boundary_forcing.py +332 -0
- roms_tools/tests/test_datasets.py +306 -0
- roms_tools/tests/test_grid.py +226 -0
- roms_tools/tests/test_initial_conditions.py +300 -0
- roms_tools/tests/test_tides.py +366 -0
- roms_tools/tests/test_topography.py +78 -0
- roms_tools/tests/test_vertical_coordinate.py +337 -0
- roms_tools-0.20.dist-info/METADATA +90 -0
- roms_tools-0.20.dist-info/RECORD +28 -0
- {roms_tools-0.0.6.dist-info → roms_tools-0.20.dist-info}/WHEEL +1 -1
- {roms_tools-0.0.6.dist-info → roms_tools-0.20.dist-info}/top_level.txt +1 -0
- roms_tools/tests/test_setup.py +0 -54
- roms_tools-0.0.6.dist-info/METADATA +0 -134
- roms_tools-0.0.6.dist-info/RECORD +0 -10
- {roms_tools-0.0.6.dist-info → roms_tools-0.20.dist-info}/LICENSE +0 -0
ci/environment.yml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: romstools
|
|
2
|
+
channels:
|
|
3
|
+
- conda-forge
|
|
4
|
+
- nodefaults
|
|
5
|
+
dependencies:
|
|
6
|
+
- python>=3.9
|
|
7
|
+
- numpy
|
|
8
|
+
- scipy
|
|
9
|
+
- matplotlib
|
|
10
|
+
- cartopy
|
|
11
|
+
- xarray
|
|
12
|
+
- netcdf4
|
|
13
|
+
- pooch
|
|
14
|
+
- packaging
|
|
15
|
+
- numba
|
|
16
|
+
- gcm_filters
|
|
17
|
+
# testing
|
|
18
|
+
- pytest
|
|
19
|
+
- flake8
|
|
20
|
+
- black
|
|
21
|
+
- pre-commit
|
|
22
|
+
- coverage
|
|
23
|
+
# docs
|
|
24
|
+
- sphinx
|
|
25
|
+
- nbsphinx
|
|
26
|
+
- sphinx-book-theme
|
|
27
|
+
- sphinxcontrib-bibtex
|
|
28
|
+
# for running jupyter notebooks
|
|
29
|
+
- ipykernel
|
roms_tools/__init__.py
CHANGED
|
@@ -9,3 +9,9 @@ except ImportError: # pragma: no cover
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
from roms_tools.setup.grid import Grid # noqa: F401
|
|
12
|
+
from roms_tools.setup.tides import TidalForcing # noqa: F401
|
|
13
|
+
from roms_tools.setup.atmospheric_forcing import AtmosphericForcing # noqa: F401
|
|
14
|
+
from roms_tools.setup.atmospheric_forcing import SWRCorrection # noqa: F401
|
|
15
|
+
from roms_tools.setup.vertical_coordinate import VerticalCoordinate # noqa: F401
|
|
16
|
+
from roms_tools.setup.initial_conditions import InitialConditions # noqa: F401
|
|
17
|
+
from roms_tools.setup.boundary_forcing import BoundaryForcing # noqa: F401
|
roms_tools/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# Do not change! Do not track in version control!
|
|
2
|
-
__version__ = "0.
|
|
2
|
+
__version__ = "0.20"
|