roms-tools 0.20__tar.gz → 1.0.0__tar.gz
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.
- {roms_tools-0.20 → roms_tools-1.0.0}/.github/workflows/tests.yaml +1 -1
- {roms_tools-0.20/roms_tools.egg-info → roms_tools-1.0.0}/PKG-INFO +6 -2
- {roms_tools-0.20 → roms_tools-1.0.0}/README.md +4 -1
- {roms_tools-0.20 → roms_tools-1.0.0}/ci/environment.yml +1 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/api.rst +3 -4
- roms_tools-1.0.0/docs/boundary_forcing.ipynb +23106 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/index.rst +2 -2
- roms_tools-1.0.0/docs/initial_conditions.ipynb +12042 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/methods.rst +13 -2
- roms_tools-1.0.0/docs/surface_forcing.ipynb +10576 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/tides.ipynb +39 -39
- {roms_tools-0.20 → roms_tools-1.0.0}/pyproject.toml +1 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/__init__.py +1 -2
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/_version.py +1 -1
- roms_tools-1.0.0/roms_tools/setup/boundary_forcing.py +757 -0
- roms_tools-1.0.0/roms_tools/setup/datasets.py +1154 -0
- roms_tools-1.0.0/roms_tools/setup/download.py +118 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/initial_conditions.py +195 -166
- roms_tools-1.0.0/roms_tools/setup/mixins.py +395 -0
- roms_tools-1.0.0/roms_tools/setup/surface_forcing.py +596 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/tides.py +76 -174
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/topography.py +1 -1
- roms_tools-1.0.0/roms_tools/setup/utils.py +352 -0
- roms_tools-1.0.0/roms_tools/tests/test_boundary_forcing.py +706 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/tests/test_datasets.py +73 -9
- roms_tools-1.0.0/roms_tools/tests/test_initial_conditions.py +520 -0
- roms_tools-1.0.0/roms_tools/tests/test_surface_forcing.py +2622 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/tests/test_tides.py +13 -14
- roms_tools-1.0.0/roms_tools/tests/test_utils.py +16 -0
- {roms_tools-0.20 → roms_tools-1.0.0/roms_tools.egg-info}/PKG-INFO +6 -2
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools.egg-info/SOURCES.txt +6 -4
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools.egg-info/requires.txt +1 -0
- roms_tools-0.20/docs/atmospheric_forcing.ipynb +0 -9332
- roms_tools-0.20/docs/boundary_forcing.ipynb +0 -7099
- roms_tools-0.20/docs/forcings/bdry_forcing.nc +0 -0
- roms_tools-0.20/docs/initial_conditions.ipynb +0 -4477
- roms_tools-0.20/roms_tools/setup/atmospheric_forcing.py +0 -935
- roms_tools-0.20/roms_tools/setup/boundary_forcing.py +0 -711
- roms_tools-0.20/roms_tools/setup/datasets.py +0 -457
- roms_tools-0.20/roms_tools/setup/utils.py +0 -162
- roms_tools-0.20/roms_tools/tests/test_atmospheric_forcing.py +0 -1645
- roms_tools-0.20/roms_tools/tests/test_boundary_forcing.py +0 -332
- roms_tools-0.20/roms_tools/tests/test_initial_conditions.py +0 -300
- {roms_tools-0.20 → roms_tools-1.0.0}/.github/workflows/pre-commit.yaml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/.github/workflows/pypipublish.yaml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/.github/workflows/sphinx.yaml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/.gitignore +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/.pre-commit-config.yaml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/.readthedocs.yaml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/LICENSE +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/coverage.toml +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/Makefile +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/_templates/autosummary/class.rst +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/conf.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/grid.ipynb +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/images/Step1.png +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/images/Step2.png +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/images/Step3.png +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/images/Step4.png +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/installation.rst +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/make.bat +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/references.bib +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/references.rst +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/support.rst +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/docs/vertical_coordinate.ipynb +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/__init__.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/fill.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/grid.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/plot.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/setup/vertical_coordinate.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/tests/test_grid.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/tests/test_topography.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools/tests/test_vertical_coordinate.py +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools.egg-info/dependency_links.txt +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/roms_tools.egg-info/top_level.txt +0 -0
- {roms_tools-0.20 → roms_tools-1.0.0}/setup.cfg +0 -0
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
shell: bash -l {0}
|
|
43
43
|
run: |
|
|
44
44
|
python -V
|
|
45
|
-
coverage run --rcfile=coverage.toml -m pytest --verbose roms_tools/tests/test_datasets.py roms_tools/tests/test_grid.py roms_tools/tests/test_topography.py roms_tools/tests/test_tides.py roms_tools/tests/
|
|
45
|
+
coverage run --rcfile=coverage.toml -m pytest --verbose roms_tools/tests/test_datasets.py roms_tools/tests/test_grid.py roms_tools/tests/test_topography.py roms_tools/tests/test_tides.py roms_tools/tests/test_surface_forcing.py roms_tools/tests/test_initial_conditions.py roms_tools/tests/test_vertical_coordinate.py roms_tools/tests/test_boundary_forcing.py roms_tools/tests/test_utils.py
|
|
46
46
|
|
|
47
47
|
- name: Get coverage report
|
|
48
48
|
shell: bash -l {0}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: roms-tools
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Tools for running and analysing UCLA-ROMS simulations
|
|
5
5
|
Author-email: Nora Loose <nora.loose@gmail.com>, Thomas Nicholas <tom@cworthy.org>
|
|
6
6
|
License: Apache-2
|
|
@@ -19,6 +19,7 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: xarray>=2022.6.0
|
|
22
|
+
Requires-Dist: xarray-datatree
|
|
22
23
|
Requires-Dist: numpy
|
|
23
24
|
Requires-Dist: netcdf4
|
|
24
25
|
Requires-Dist: pooch
|
|
@@ -31,9 +32,12 @@ Requires-Dist: numba
|
|
|
31
32
|
|
|
32
33
|
# ROMS-Tools
|
|
33
34
|
|
|
35
|
+
[](https://badge.fury.io/py/roms-tools)
|
|
34
36
|
[](https://codecov.io/gh/CWorthy-ocean/roms-tools)
|
|
35
37
|
[](https://roms-tools.readthedocs.io/en/latest/?badge=latest)
|
|
36
|
-
|
|
38
|
+

|
|
39
|
+

|
|
40
|
+
|
|
37
41
|
|
|
38
42
|
## Overview
|
|
39
43
|
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
# ROMS-Tools
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/py/roms-tools)
|
|
3
4
|
[](https://codecov.io/gh/CWorthy-ocean/roms-tools)
|
|
4
5
|
[](https://roms-tools.readthedocs.io/en/latest/?badge=latest)
|
|
5
|
-
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
6
9
|
|
|
7
10
|
## Overview
|
|
8
11
|
|
|
@@ -26,14 +26,13 @@ Tidal Forcing
|
|
|
26
26
|
|
|
27
27
|
roms_tools.TidalForcing
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
Surface Forcing
|
|
30
|
+
----------------
|
|
31
31
|
|
|
32
32
|
.. autosummary::
|
|
33
33
|
:toctree: generated/
|
|
34
34
|
|
|
35
|
-
roms_tools.
|
|
36
|
-
roms_tools.SWRCorrection
|
|
35
|
+
roms_tools.SurfaceForcing
|
|
37
36
|
|
|
38
37
|
Initial Conditions
|
|
39
38
|
--------------------
|