roms-tools 1.4.1__py3-none-any.whl → 1.4.2__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.
- roms_tools/_version.py +1 -1
- roms_tools/setup/boundary_forcing.py +77 -70
- roms_tools/setup/datasets.py +38 -59
- roms_tools/setup/download.py +3 -6
- roms_tools/setup/fill.py +8 -16
- roms_tools/setup/grid.py +74 -113
- roms_tools/setup/initial_conditions.py +43 -36
- roms_tools/setup/mixins.py +10 -14
- roms_tools/setup/surface_forcing.py +35 -33
- roms_tools/setup/tides.py +37 -41
- roms_tools/setup/topography.py +9 -17
- roms_tools/setup/utils.py +19 -40
- roms_tools/setup/vertical_coordinate.py +4 -6
- roms_tools/tests/test_setup/test_boundary_forcing.py +6 -13
- roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs +2 -2
- roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata +2 -62
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs +2 -2
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata +2 -62
- roms_tools/tests/test_setup/test_datasets.py +8 -18
- roms_tools/tests/test_setup/test_grid.py +9 -9
- roms_tools/tests/test_setup/test_initial_conditions.py +4 -7
- roms_tools/tests/test_setup/test_surface_forcing.py +56 -56
- roms_tools/tests/test_setup/test_tides.py +6 -10
- roms_tools/tests/test_setup/test_topography.py +2 -4
- roms_tools/tests/test_setup/test_vertical_coordinate.py +2 -6
- roms_tools/tests/test_utils.py +30 -30
- roms_tools/utils.py +6 -7
- {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/METADATA +1 -1
- {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/RECORD +32 -44
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/0.0 +0 -0
- {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/LICENSE +0 -0
- {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/WHEEL +0 -0
- {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/top_level.txt +0 -0
|
@@ -25,9 +25,7 @@ def grid_that_is_out_of_bounds_of_regional_tpxo_data():
|
|
|
25
25
|
|
|
26
26
|
@pytest.fixture
|
|
27
27
|
def grid_that_straddles_dateline():
|
|
28
|
-
"""
|
|
29
|
-
Fixture for creating a domain that straddles the dateline.
|
|
30
|
-
"""
|
|
28
|
+
"""Fixture for creating a domain that straddles the dateline."""
|
|
31
29
|
grid = Grid(
|
|
32
30
|
nx=5,
|
|
33
31
|
ny=5,
|
|
@@ -43,9 +41,7 @@ def grid_that_straddles_dateline():
|
|
|
43
41
|
|
|
44
42
|
@pytest.fixture
|
|
45
43
|
def grid_that_straddles_180_degree_meridian():
|
|
46
|
-
"""
|
|
47
|
-
Fixture for creating a domain that straddles 180 degree meridian.
|
|
48
|
-
"""
|
|
44
|
+
"""Fixture for creating a domain that straddles 180 degree meridian."""
|
|
49
45
|
|
|
50
46
|
grid = Grid(
|
|
51
47
|
nx=5,
|
|
@@ -174,9 +170,8 @@ def test_insufficient_number_of_consituents(grid_that_straddles_dateline, use_da
|
|
|
174
170
|
|
|
175
171
|
|
|
176
172
|
def test_tidal_forcing_plot_save(tidal_forcing, tmp_path):
|
|
177
|
-
"""
|
|
178
|
-
|
|
179
|
-
"""
|
|
173
|
+
"""Test plot and save methods in the same test since we dask arrays are already
|
|
174
|
+
computed."""
|
|
180
175
|
tidal_forcing.ds.load()
|
|
181
176
|
|
|
182
177
|
tidal_forcing.plot(varname="ssh_Re", ntides=0)
|
|
@@ -211,7 +206,8 @@ def test_tidal_forcing_plot_save(tidal_forcing, tmp_path):
|
|
|
211
206
|
|
|
212
207
|
|
|
213
208
|
def test_roundtrip_yaml(tidal_forcing, tmp_path, use_dask):
|
|
214
|
-
"""Test that creating a TidalForcing object, saving its parameters to yaml file, and
|
|
209
|
+
"""Test that creating a TidalForcing object, saving its parameters to yaml file, and
|
|
210
|
+
re-opening yaml file creates the same object."""
|
|
215
211
|
|
|
216
212
|
# Create a temporary filepath using the tmp_path fixture
|
|
217
213
|
file_str = "test_yaml"
|
|
@@ -59,10 +59,8 @@ def test_hmin_criterion():
|
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
def test_mask_topography_boundary():
|
|
62
|
-
"""
|
|
63
|
-
|
|
64
|
-
are identical to the adjacent inland cells.
|
|
65
|
-
"""
|
|
62
|
+
"""Test that the mask and topography along the grid boundaries (north, south, east,
|
|
63
|
+
west) are identical to the adjacent inland cells."""
|
|
66
64
|
|
|
67
65
|
# Create a grid with some land along the northern boundary
|
|
68
66
|
grid = Grid(
|
|
@@ -3,9 +3,7 @@ from roms_tools import Grid
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
def test_invalid_theta_s_value():
|
|
6
|
-
"""
|
|
7
|
-
Test the validation of the theta_s value.
|
|
8
|
-
"""
|
|
6
|
+
"""Test the validation of the theta_s value."""
|
|
9
7
|
with pytest.raises(ValueError):
|
|
10
8
|
|
|
11
9
|
Grid(
|
|
@@ -24,9 +22,7 @@ def test_invalid_theta_s_value():
|
|
|
24
22
|
|
|
25
23
|
|
|
26
24
|
def test_invalid_theta_b_value():
|
|
27
|
-
"""
|
|
28
|
-
Test the validation of the theta_b value.
|
|
29
|
-
"""
|
|
25
|
+
"""Test the validation of the theta_b value."""
|
|
30
26
|
with pytest.raises(ValueError):
|
|
31
27
|
Grid(
|
|
32
28
|
nx=2,
|
roms_tools/tests/test_utils.py
CHANGED
|
@@ -23,8 +23,8 @@ class TestPartitionGrid:
|
|
|
23
23
|
"xi_rho": 32,
|
|
24
24
|
"xi_u": 31,
|
|
25
25
|
"eta_v": 10,
|
|
26
|
-
"eta_psi": 11,
|
|
27
|
-
"xi_psi": 33,
|
|
26
|
+
# "eta_psi": 11,
|
|
27
|
+
# "xi_psi": 33,
|
|
28
28
|
"eta_coarse": 6,
|
|
29
29
|
"xi_coarse": 17,
|
|
30
30
|
"s_rho": 100,
|
|
@@ -35,8 +35,8 @@ class TestPartitionGrid:
|
|
|
35
35
|
"xi_rho": 32,
|
|
36
36
|
"xi_u": 31,
|
|
37
37
|
"eta_v": 10,
|
|
38
|
-
"eta_psi": 10,
|
|
39
|
-
"xi_psi": 33,
|
|
38
|
+
# "eta_psi": 10,
|
|
39
|
+
# "xi_psi": 33,
|
|
40
40
|
"eta_coarse": 5,
|
|
41
41
|
"xi_coarse": 17,
|
|
42
42
|
"s_rho": 100,
|
|
@@ -47,8 +47,8 @@ class TestPartitionGrid:
|
|
|
47
47
|
"xi_rho": 32,
|
|
48
48
|
"xi_u": 31,
|
|
49
49
|
"eta_v": 11,
|
|
50
|
-
"eta_psi": 12,
|
|
51
|
-
"xi_psi": 33,
|
|
50
|
+
# "eta_psi": 12,
|
|
51
|
+
# "xi_psi": 33,
|
|
52
52
|
"eta_coarse": 6,
|
|
53
53
|
"xi_coarse": 17,
|
|
54
54
|
"s_rho": 100,
|
|
@@ -63,8 +63,8 @@ class TestPartitionGrid:
|
|
|
63
63
|
"xi_rho": 11,
|
|
64
64
|
"xi_u": 10,
|
|
65
65
|
"eta_v": 31,
|
|
66
|
-
"eta_psi": 33,
|
|
67
|
-
"xi_psi": 11,
|
|
66
|
+
# "eta_psi": 33,
|
|
67
|
+
# "xi_psi": 11,
|
|
68
68
|
"eta_coarse": 17,
|
|
69
69
|
"xi_coarse": 6,
|
|
70
70
|
"s_rho": 100,
|
|
@@ -75,8 +75,8 @@ class TestPartitionGrid:
|
|
|
75
75
|
"xi_rho": 10,
|
|
76
76
|
"xi_u": 10,
|
|
77
77
|
"eta_v": 31,
|
|
78
|
-
"eta_psi": 33,
|
|
79
|
-
"xi_psi": 10,
|
|
78
|
+
# "eta_psi": 33,
|
|
79
|
+
# "xi_psi": 10,
|
|
80
80
|
"eta_coarse": 17,
|
|
81
81
|
"xi_coarse": 5,
|
|
82
82
|
"s_rho": 100,
|
|
@@ -87,8 +87,8 @@ class TestPartitionGrid:
|
|
|
87
87
|
"xi_rho": 11,
|
|
88
88
|
"xi_u": 11,
|
|
89
89
|
"eta_v": 31,
|
|
90
|
-
"eta_psi": 33,
|
|
91
|
-
"xi_psi": 12,
|
|
90
|
+
# "eta_psi": 33,
|
|
91
|
+
# "xi_psi": 12,
|
|
92
92
|
"eta_coarse": 17,
|
|
93
93
|
"xi_coarse": 6,
|
|
94
94
|
"s_rho": 100,
|
|
@@ -108,8 +108,8 @@ class TestPartitionGrid:
|
|
|
108
108
|
"xi_rho": 11,
|
|
109
109
|
"xi_u": 10,
|
|
110
110
|
"eta_v": 10,
|
|
111
|
-
"eta_psi": 11,
|
|
112
|
-
"xi_psi": 11,
|
|
111
|
+
# "eta_psi": 11,
|
|
112
|
+
# "xi_psi": 11,
|
|
113
113
|
"eta_coarse": 6,
|
|
114
114
|
"xi_coarse": 6,
|
|
115
115
|
"s_rho": 100,
|
|
@@ -121,8 +121,8 @@ class TestPartitionGrid:
|
|
|
121
121
|
"xi_u": 10,
|
|
122
122
|
"eta_v": 10,
|
|
123
123
|
"eta_coarse": 5,
|
|
124
|
-
"eta_psi": 10,
|
|
125
|
-
"xi_psi": 11,
|
|
124
|
+
# "eta_psi": 10,
|
|
125
|
+
# "xi_psi": 11,
|
|
126
126
|
"xi_coarse": 6,
|
|
127
127
|
"s_rho": 100,
|
|
128
128
|
"s_w": 101,
|
|
@@ -132,8 +132,8 @@ class TestPartitionGrid:
|
|
|
132
132
|
"xi_rho": 11,
|
|
133
133
|
"xi_u": 10,
|
|
134
134
|
"eta_v": 11,
|
|
135
|
-
"eta_psi": 12,
|
|
136
|
-
"xi_psi": 11,
|
|
135
|
+
# "eta_psi": 12,
|
|
136
|
+
# "xi_psi": 11,
|
|
137
137
|
"eta_coarse": 6,
|
|
138
138
|
"xi_coarse": 6,
|
|
139
139
|
"s_rho": 100,
|
|
@@ -144,8 +144,8 @@ class TestPartitionGrid:
|
|
|
144
144
|
"xi_rho": 10,
|
|
145
145
|
"xi_u": 10,
|
|
146
146
|
"eta_v": 10,
|
|
147
|
-
"eta_psi": 11,
|
|
148
|
-
"xi_psi": 10,
|
|
147
|
+
# "eta_psi": 11,
|
|
148
|
+
# "xi_psi": 10,
|
|
149
149
|
"eta_coarse": 6,
|
|
150
150
|
"xi_coarse": 5,
|
|
151
151
|
"s_rho": 100,
|
|
@@ -156,8 +156,8 @@ class TestPartitionGrid:
|
|
|
156
156
|
"xi_rho": 10,
|
|
157
157
|
"xi_u": 10,
|
|
158
158
|
"eta_v": 10,
|
|
159
|
-
"eta_psi": 10,
|
|
160
|
-
"xi_psi": 10,
|
|
159
|
+
# "eta_psi": 10,
|
|
160
|
+
# "xi_psi": 10,
|
|
161
161
|
"eta_coarse": 5,
|
|
162
162
|
"xi_coarse": 5,
|
|
163
163
|
"s_rho": 100,
|
|
@@ -168,8 +168,8 @@ class TestPartitionGrid:
|
|
|
168
168
|
"xi_rho": 10,
|
|
169
169
|
"xi_u": 10,
|
|
170
170
|
"eta_v": 11,
|
|
171
|
-
"eta_psi": 12,
|
|
172
|
-
"xi_psi": 10,
|
|
171
|
+
# "eta_psi": 12,
|
|
172
|
+
# "xi_psi": 10,
|
|
173
173
|
"eta_coarse": 6,
|
|
174
174
|
"xi_coarse": 5,
|
|
175
175
|
"s_rho": 100,
|
|
@@ -180,8 +180,8 @@ class TestPartitionGrid:
|
|
|
180
180
|
"xi_rho": 11,
|
|
181
181
|
"xi_u": 11,
|
|
182
182
|
"eta_v": 10,
|
|
183
|
-
"eta_psi": 11,
|
|
184
|
-
"xi_psi": 12,
|
|
183
|
+
# "eta_psi": 11,
|
|
184
|
+
# "xi_psi": 12,
|
|
185
185
|
"eta_coarse": 6,
|
|
186
186
|
"xi_coarse": 6,
|
|
187
187
|
"s_rho": 100,
|
|
@@ -192,8 +192,8 @@ class TestPartitionGrid:
|
|
|
192
192
|
"xi_rho": 11,
|
|
193
193
|
"xi_u": 11,
|
|
194
194
|
"eta_v": 10,
|
|
195
|
-
"eta_psi": 10,
|
|
196
|
-
"xi_psi": 12,
|
|
195
|
+
# "eta_psi": 10,
|
|
196
|
+
# "xi_psi": 12,
|
|
197
197
|
"eta_coarse": 5,
|
|
198
198
|
"xi_coarse": 6,
|
|
199
199
|
"s_rho": 100,
|
|
@@ -204,8 +204,8 @@ class TestPartitionGrid:
|
|
|
204
204
|
"xi_rho": 11,
|
|
205
205
|
"xi_u": 11,
|
|
206
206
|
"eta_v": 11,
|
|
207
|
-
"eta_psi": 12,
|
|
208
|
-
"xi_psi": 12,
|
|
207
|
+
# "eta_psi": 12,
|
|
208
|
+
# "xi_psi": 12,
|
|
209
209
|
"eta_coarse": 6,
|
|
210
210
|
"xi_coarse": 6,
|
|
211
211
|
"s_rho": 100,
|
roms_tools/utils.py
CHANGED
|
@@ -9,8 +9,8 @@ from pathlib import Path
|
|
|
9
9
|
def partition(
|
|
10
10
|
ds: xr.Dataset, np_eta: int = 1, np_xi: int = 1
|
|
11
11
|
) -> tuple[list[int], list[xr.Dataset]]:
|
|
12
|
-
"""
|
|
13
|
-
|
|
12
|
+
"""Partition a ROMS (Regional Ocean Modeling System) dataset into smaller spatial
|
|
13
|
+
tiles.
|
|
14
14
|
|
|
15
15
|
This function divides the input dataset into `np_eta` by `np_xi` tiles, where each tile
|
|
16
16
|
represents a subdomain of the original dataset. The partitioning is performed along
|
|
@@ -32,6 +32,7 @@ def partition(
|
|
|
32
32
|
-------
|
|
33
33
|
tuple[list[int], list[xr.Dataset]]
|
|
34
34
|
A tuple containing two elements:
|
|
35
|
+
|
|
35
36
|
- A list of integers representing the file numbers associated with each partition.
|
|
36
37
|
- A list of `xarray.Dataset` objects, each representing a partitioned subdomain of the original dataset.
|
|
37
38
|
|
|
@@ -90,8 +91,7 @@ def partition(
|
|
|
90
91
|
n_xi_ghost_cells = 1
|
|
91
92
|
|
|
92
93
|
def integer_division_or_raise(a: int, b: int, dimension: str) -> int:
|
|
93
|
-
"""
|
|
94
|
-
Perform integer division and ensure that the division is exact.
|
|
94
|
+
"""Perform integer division and ensure that the division is exact.
|
|
95
95
|
|
|
96
96
|
Parameters
|
|
97
97
|
----------
|
|
@@ -214,7 +214,7 @@ def partition(
|
|
|
214
214
|
)
|
|
215
215
|
|
|
216
216
|
def cumsum(pmf):
|
|
217
|
-
"""Implementation of cumsum which ensures the result starts with zero"""
|
|
217
|
+
"""Implementation of cumsum which ensures the result starts with zero."""
|
|
218
218
|
cdf = np.empty(len(pmf) + 1, dtype=int)
|
|
219
219
|
cdf[0] = 0
|
|
220
220
|
np.cumsum(pmf, out=cdf[1:])
|
|
@@ -290,8 +290,7 @@ def partition(
|
|
|
290
290
|
def partition_netcdf(
|
|
291
291
|
filepath: Union[str, Path], np_eta: int = 1, np_xi: int = 1
|
|
292
292
|
) -> None:
|
|
293
|
-
"""
|
|
294
|
-
Partition a ROMS NetCDF file into smaller spatial tiles and save them to disk.
|
|
293
|
+
"""Partition a ROMS NetCDF file into smaller spatial tiles and save them to disk.
|
|
295
294
|
|
|
296
295
|
This function divides the dataset in the specified NetCDF file into `np_eta` by `np_xi` tiles.
|
|
297
296
|
Each tile is saved as a separate NetCDF file.
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
ci/environment.yml,sha256=2daWGcAMUMMuc4tNZ9BMivFIE6lh3Vz5ggPykhQPHio,191
|
|
2
2
|
roms_tools/__init__.py,sha256=PQ7jWQ97DYS5b6YIFZVE2PYaRwXjN0Ykfhq0PKqN9ME,560
|
|
3
|
-
roms_tools/_version.py,sha256=
|
|
4
|
-
roms_tools/utils.py,sha256=
|
|
3
|
+
roms_tools/_version.py,sha256=PJXB37JevxDRlaVlyFsqQPkxf2e96lIucEKZbdsrp1Y,72
|
|
4
|
+
roms_tools/utils.py,sha256=hlopIyqN-TLnglOvEPQm5H4EkUdV1QjL9CIu0v45d8E,12105
|
|
5
5
|
roms_tools/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
roms_tools/setup/boundary_forcing.py,sha256=
|
|
7
|
-
roms_tools/setup/datasets.py,sha256=
|
|
8
|
-
roms_tools/setup/download.py,sha256=
|
|
9
|
-
roms_tools/setup/fill.py,sha256
|
|
10
|
-
roms_tools/setup/grid.py,sha256=
|
|
11
|
-
roms_tools/setup/initial_conditions.py,sha256=
|
|
12
|
-
roms_tools/setup/mixins.py,sha256=
|
|
6
|
+
roms_tools/setup/boundary_forcing.py,sha256=JTeTzrpMiWoAExh5_numzIZShUva_2oKb0KbjdCSbU8,24128
|
|
7
|
+
roms_tools/setup/datasets.py,sha256=04vy7qi5VLsafeVrHHz9DknAaqWdQW5NOdGszj1-2r8,53291
|
|
8
|
+
roms_tools/setup/download.py,sha256=JD48Xi5VT4oEBaBSCoGd08g46MVMl3_UW1KowSQI6ak,5102
|
|
9
|
+
roms_tools/setup/fill.py,sha256=-d3CilTQ3aFA2JuDcgHHQZlw3ZlmOWnr2YJNCuvR73I,11142
|
|
10
|
+
roms_tools/setup/grid.py,sha256=B0eKhLUT1LH25AesGlBfkLAR71khNvUJrGsUHGDMfws,45074
|
|
11
|
+
roms_tools/setup/initial_conditions.py,sha256=50vB4NJPtMBXUgB0wrTE7T3C5JoO0s7NAd1Z1RiMZCc,25462
|
|
12
|
+
roms_tools/setup/mixins.py,sha256=mAL_PpV0q820EGBaWFJfF6sln834Zu4C1WR7Vb3QuQo,9504
|
|
13
13
|
roms_tools/setup/plot.py,sha256=g7jezPGQr8lPkIG9dCQwKqdEStFNu5k8Wz2afl-UNZQ,4856
|
|
14
|
-
roms_tools/setup/surface_forcing.py,sha256=
|
|
15
|
-
roms_tools/setup/tides.py,sha256=
|
|
16
|
-
roms_tools/setup/topography.py,sha256=
|
|
17
|
-
roms_tools/setup/utils.py,sha256=
|
|
18
|
-
roms_tools/setup/vertical_coordinate.py,sha256=
|
|
14
|
+
roms_tools/setup/surface_forcing.py,sha256=0o14gctWYs4yOdGEcxDnAJWHti35-F-m2vShwl4_CIo,20828
|
|
15
|
+
roms_tools/setup/tides.py,sha256=WpIa26yR2MmuYKP0x2bsTXTlC3pS1L_-ZxciUFLrh4o,25189
|
|
16
|
+
roms_tools/setup/topography.py,sha256=E_gDNbMxbVn08fCCVL0eRfiWFXaq8UTknONrCIC5hX8,10348
|
|
17
|
+
roms_tools/setup/utils.py,sha256=HdysbXJvxW56QLR6crxYYRu7XTDkfp2x-VA4LNCW39Q,27447
|
|
18
|
+
roms_tools/setup/vertical_coordinate.py,sha256=6Y6a1ouIZjorawzTFlJqZKQInoWQtvxQXXCI9iRZfKE,3023
|
|
19
19
|
roms_tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
roms_tools/tests/test_utils.py,sha256=
|
|
20
|
+
roms_tools/tests/test_utils.py,sha256=X16UHYzd8KmUgxBHJqmVP6cIHfOtScCdXPw905bgGMk,7966
|
|
21
21
|
roms_tools/tests/test_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
roms_tools/tests/test_setup/test_boundary_forcing.py,sha256=
|
|
23
|
-
roms_tools/tests/test_setup/test_datasets.py,sha256=
|
|
22
|
+
roms_tools/tests/test_setup/test_boundary_forcing.py,sha256=aG1tHLZuKyJDDX9LeXMKnQ4E0llYfM9CROsSg4Yw-DM,10057
|
|
23
|
+
roms_tools/tests/test_setup/test_datasets.py,sha256=CgN_yg9Z_CjziAq9Iv6DSsxOSG9Y98L5yDYTrCAtag4,14405
|
|
24
24
|
roms_tools/tests/test_setup/test_fill.py,sha256=xKp3rnp7hNatSoBcEITWYcnmgrfm43wUAt4JTGZ9tAY,4920
|
|
25
|
-
roms_tools/tests/test_setup/test_grid.py,sha256=
|
|
26
|
-
roms_tools/tests/test_setup/test_initial_conditions.py,sha256=
|
|
27
|
-
roms_tools/tests/test_setup/test_surface_forcing.py,sha256=
|
|
28
|
-
roms_tools/tests/test_setup/test_tides.py,sha256=
|
|
29
|
-
roms_tools/tests/test_setup/test_topography.py,sha256=
|
|
25
|
+
roms_tools/tests/test_setup/test_grid.py,sha256=xaZcu0rM1hKOU93NcaBMX5gL8WqfTNvVhrX00h2IHjA,12177
|
|
26
|
+
roms_tools/tests/test_setup/test_initial_conditions.py,sha256=KlyMD1zzzzkJ3Yi_aQBHkby49t8wPX_XHnib608Bm4U,11074
|
|
27
|
+
roms_tools/tests/test_setup/test_surface_forcing.py,sha256=FCeSZ64-h66BXTDPbLkNKovRR_asA-ckUl03IEx9hh0,23992
|
|
28
|
+
roms_tools/tests/test_setup/test_tides.py,sha256=ZWu52O8X9sSk5yPvQqi-YJgo6VEXTJ6p03mW4sESXdU,8603
|
|
29
|
+
roms_tools/tests/test_setup/test_topography.py,sha256=le0_yDCIOcbpfB4wWpAWEZC9okhJQufNcZvowYaWdM4,2581
|
|
30
30
|
roms_tools/tests/test_setup/test_utils.py,sha256=lVeeiEEk_nR0zdmAdRHMlkBUNrAZMiZFrHaLQNy_lPE,585
|
|
31
31
|
roms_tools/tests/test_setup/test_validation.py,sha256=RVSOgv2C6v-H7UtJA5zSsRUL8UnKjVIzjQ2gC8235Ds,2146
|
|
32
|
-
roms_tools/tests/test_setup/test_vertical_coordinate.py,sha256
|
|
32
|
+
roms_tools/tests/test_setup/test_vertical_coordinate.py,sha256=-MQCxEX578j_v5nLEVtNL59f1jwN-153qUJGuSy41MY,2596
|
|
33
33
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zattrs,sha256=cGEz5jMU9zPzZ6xuxfbg4Zbwp2-L54SrUXVxFtA-UZk,360
|
|
34
34
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zgroup,sha256=I4N0bme0vMJ2Kz8QDwbD-i1fFJq1qOXaXTNSFGSgGVk,24
|
|
35
35
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zmetadata,sha256=aLDw-2oQvF3GVuloCRjDaOun7ipxbrpkt0TVE2eEGM0,115656
|
|
@@ -654,9 +654,9 @@ roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/0.0.0,
|
|
|
654
654
|
roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/.zarray,sha256=3NmD3p3PP_3N6URTn_uBF54Ifqf6cmYUyibmWwxpohM,357
|
|
655
655
|
roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/.zattrs,sha256=Gts2eeNE9fFfMA5fdJ7Nsvhe6Ki8ITZRrmwKedV02Ao,188
|
|
656
656
|
roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/0.0.0,sha256=j9M8ir1gY3TvW2qjmBnl_Tw0AcqmTqgbUcs4xHEoH5c,408
|
|
657
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs,sha256=
|
|
657
|
+
roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs,sha256=m6M_r9j4uoljpbDy3o1e-l3hSBz61Hb9Z0TqpMY9JUg,423
|
|
658
658
|
roms_tools/tests/test_setup/test_data/grid.zarr/.zgroup,sha256=I4N0bme0vMJ2Kz8QDwbD-i1fFJq1qOXaXTNSFGSgGVk,24
|
|
659
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata,sha256=
|
|
659
|
+
roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata,sha256=oXGP_T73KkH1GT1ms2QyBMpRNiSqclFpgxqWkAa9GmA,21811
|
|
660
660
|
roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/.zarray,sha256=AKux-aoyF5C9GFR3vyl8eWDkhniDbAS9YLDvWsMzVQw,317
|
|
661
661
|
roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/.zattrs,sha256=fX6eFzkzc54iLCsEEPRVTtUY7RelzkT9IbDAyLFz2uk,148
|
|
662
662
|
roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/0,sha256=PocCi1B1awEQ3NSqheV9dDk_cCw8KZRHKHa221akH-E,361
|
|
@@ -687,9 +687,6 @@ roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_v/0.0.0,sha256=S
|
|
|
687
687
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/.zarray,sha256=xkMMk-P63y2bFi7nW9AXUINxSsKxvw9zL6F1FFn6uKg,335
|
|
688
688
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/.zattrs,sha256=snbXhBsYv6lw4G-V6g8BShab2Sk5uHqBjqJLbN_S4D4,169
|
|
689
689
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/0.0,sha256=RlaQDcjgPVOQf7nSIvh8WovTG6s8Tsk124jukFYey4c,48
|
|
690
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zarray,sha256=9hUPlfPbjtajuYkTY_0SjaLENB-oDQ8R9q-CNyPYUWs,335
|
|
691
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zattrs,sha256=AYabal2qyJcW4qnH7dcZL8qOz4xMDMr7ixkEMWnTMUM,145
|
|
692
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/0.0,sha256=sUNonyx5UPaBeSyF0ELwMp9zAQS_8IpKzzDcK-NpG3E,144
|
|
693
690
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/.zarray,sha256=T4pLEz8STkOu6ye11Nr3UAEqq-F5FKxaNmP18HvdNzg,335
|
|
694
691
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/.zattrs,sha256=YA2YCC8TlC8pSXZ0Yitr6pQPyaMz-olqKV5rjNPJWkM,145
|
|
695
692
|
roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/0.0,sha256=386PSCFPs_AjrKQvxwxKY5ovDVFUD3XW5QYk2VYOHeA,88
|
|
@@ -711,9 +708,6 @@ roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_v/0.0.0,sha256=B1Wjw
|
|
|
711
708
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/.zarray,sha256=xkMMk-P63y2bFi7nW9AXUINxSsKxvw9zL6F1FFn6uKg,335
|
|
712
709
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/.zattrs,sha256=wvhkmHe5AcqPMHEtT_xdKZiZgaoGK3PFTTXZRZmUI9k,169
|
|
713
710
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/0.0,sha256=F6lD_xb7bWSJVKBDFEqx7n_2QjOG0H4qZ6-IbLsBHfY,48
|
|
714
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zarray,sha256=9hUPlfPbjtajuYkTY_0SjaLENB-oDQ8R9q-CNyPYUWs,335
|
|
715
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zattrs,sha256=p3MpQWfd8tJsDDL-HlrfYbFXzGX5Fyi3Re_8uRLmOoc,145
|
|
716
|
-
roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/0.0,sha256=4u25_Z1qymRXM-NgzhBj5GT92pLGsMyn8BkwDxB-jtM,128
|
|
717
711
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/.zarray,sha256=T4pLEz8STkOu6ye11Nr3UAEqq-F5FKxaNmP18HvdNzg,335
|
|
718
712
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/.zattrs,sha256=5YJxqPL9Pka78Xgsx7vHChvP-_fqFREL0RjA5Rd4S38,145
|
|
719
713
|
roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/0.0,sha256=95oPMErcvH1PQLhhwridJ9DJVOjoK9tGkIolCj3f6pk,88
|
|
@@ -744,9 +738,9 @@ roms_tools/tests/test_setup/test_data/grid.zarr/pn/0.0,sha256=BnhMxLyvN_ouYQnROp
|
|
|
744
738
|
roms_tools/tests/test_setup/test_data/grid.zarr/spherical/.zarray,sha256=Iq9xrcLcPBHukjG0s80zWVNs_zr_u6QkeOvYRUBm8KY,166
|
|
745
739
|
roms_tools/tests/test_setup/test_data/grid.zarr/spherical/.zattrs,sha256=L66B4q9PeEaoZuuWuK9Z9NxjAVg2i3jPiDx9GnJ9xxI,105
|
|
746
740
|
roms_tools/tests/test_setup/test_data/grid.zarr/spherical/0,sha256=5jK3CVsL8ywmD6TFOen9e4UtDeRU6b4m8k0Nb5HQadM,1
|
|
747
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs,sha256=
|
|
741
|
+
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs,sha256=ZqFPWqe0X4rVfgLwDD7z-Q7hhL1oldnPkn8ydVgi74s,422
|
|
748
742
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zgroup,sha256=I4N0bme0vMJ2Kz8QDwbD-i1fFJq1qOXaXTNSFGSgGVk,24
|
|
749
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata,sha256=
|
|
743
|
+
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata,sha256=Y5jwf0TzkgiKmoz9dksvlj4GLb321kTAR1bs5OROYUU,21810
|
|
750
744
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/.zarray,sha256=AKux-aoyF5C9GFR3vyl8eWDkhniDbAS9YLDvWsMzVQw,317
|
|
751
745
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/.zattrs,sha256=fX6eFzkzc54iLCsEEPRVTtUY7RelzkT9IbDAyLFz2uk,148
|
|
752
746
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/0,sha256=PocCi1B1awEQ3NSqheV9dDk_cCw8KZRHKHa221akH-E,361
|
|
@@ -777,9 +771,6 @@ roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interfac
|
|
|
777
771
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/.zarray,sha256=xkMMk-P63y2bFi7nW9AXUINxSsKxvw9zL6F1FFn6uKg,335
|
|
778
772
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/.zattrs,sha256=snbXhBsYv6lw4G-V6g8BShab2Sk5uHqBjqJLbN_S4D4,169
|
|
779
773
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/0.0,sha256=BnHjfhRk37y3_q-_VTKxGOfqnujHVwstZWq5N78O8KQ,48
|
|
780
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zarray,sha256=9hUPlfPbjtajuYkTY_0SjaLENB-oDQ8R9q-CNyPYUWs,335
|
|
781
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zattrs,sha256=AYabal2qyJcW4qnH7dcZL8qOz4xMDMr7ixkEMWnTMUM,145
|
|
782
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/0.0,sha256=gO50K5VAhfG1jN1mweKtZgziE_c8NDtJfQ_a3qO5URU,144
|
|
783
774
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/.zarray,sha256=T4pLEz8STkOu6ye11Nr3UAEqq-F5FKxaNmP18HvdNzg,335
|
|
784
775
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/.zattrs,sha256=YA2YCC8TlC8pSXZ0Yitr6pQPyaMz-olqKV5rjNPJWkM,145
|
|
785
776
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/0.0,sha256=6cpDSLtnJ_ME6JhRLUjrwkShoh63hQYCl5peCIzN-3s,88
|
|
@@ -801,9 +792,6 @@ roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_de
|
|
|
801
792
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/.zarray,sha256=xkMMk-P63y2bFi7nW9AXUINxSsKxvw9zL6F1FFn6uKg,335
|
|
802
793
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/.zattrs,sha256=wvhkmHe5AcqPMHEtT_xdKZiZgaoGK3PFTTXZRZmUI9k,169
|
|
803
794
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/0.0,sha256=FFFJKWAUny__pajmVtqXlw1gAnC57UsExUiHbGRmW34,48
|
|
804
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zarray,sha256=9hUPlfPbjtajuYkTY_0SjaLENB-oDQ8R9q-CNyPYUWs,335
|
|
805
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zattrs,sha256=p3MpQWfd8tJsDDL-HlrfYbFXzGX5Fyi3Re_8uRLmOoc,145
|
|
806
|
-
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/0.0,sha256=-Hb5sp1dd6QcSyGzQUSm4bhlq-WOgfhavo1v5doivnY,144
|
|
807
795
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/.zarray,sha256=T4pLEz8STkOu6ye11Nr3UAEqq-F5FKxaNmP18HvdNzg,335
|
|
808
796
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/.zattrs,sha256=5YJxqPL9Pka78Xgsx7vHChvP-_fqFREL0RjA5Rd4S38,145
|
|
809
797
|
roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/0.0,sha256=PwxYHWj4WylKgwwwJ5KchLVc0rywaI9Fzkmy1mpdWvI,88
|
|
@@ -1029,8 +1017,8 @@ roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/0.0.0,sha256=Dqmb5
|
|
|
1029
1017
|
roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/.zarray,sha256=2P8kKjSgdw5-3udU-vGJ3bzhNuRn7fZmWN811qBJn34,357
|
|
1030
1018
|
roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/.zattrs,sha256=2z7WUPvCT9VfFs8VCBltFHLWgaGj1jcw3yZ4n0viLRg,197
|
|
1031
1019
|
roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/0.0.0,sha256=lgsEnq_0e2r--hlZW4oFeo34ozMJjaFtgICyEWvSlC8,96
|
|
1032
|
-
roms_tools-1.4.
|
|
1033
|
-
roms_tools-1.4.
|
|
1034
|
-
roms_tools-1.4.
|
|
1035
|
-
roms_tools-1.4.
|
|
1036
|
-
roms_tools-1.4.
|
|
1020
|
+
roms_tools-1.4.2.dist-info/LICENSE,sha256=CV14VH8hnprGy6SN5GqFIxNNxt5V9D2ev_kBUW6lsBE,11313
|
|
1021
|
+
roms_tools-1.4.2.dist-info/METADATA,sha256=KwPuwY-kKGR5dcWVhG1vqMMbPcj4PVIQJR28PidNkHE,3751
|
|
1022
|
+
roms_tools-1.4.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
1023
|
+
roms_tools-1.4.2.dist-info/top_level.txt,sha256=aAf4T4nYQSkay5iKJ9kmTjlDgd4ETdp9OSlB4sJdt8Y,19
|
|
1024
|
+
roms_tools-1.4.2.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chunks": [
|
|
3
|
-
4,
|
|
4
|
-
4
|
|
5
|
-
],
|
|
6
|
-
"compressor": {
|
|
7
|
-
"blocksize": 0,
|
|
8
|
-
"clevel": 5,
|
|
9
|
-
"cname": "lz4",
|
|
10
|
-
"id": "blosc",
|
|
11
|
-
"shuffle": 1
|
|
12
|
-
},
|
|
13
|
-
"dtype": "<f8",
|
|
14
|
-
"fill_value": "NaN",
|
|
15
|
-
"filters": null,
|
|
16
|
-
"order": "C",
|
|
17
|
-
"shape": [
|
|
18
|
-
4,
|
|
19
|
-
4
|
|
20
|
-
],
|
|
21
|
-
"zarr_format": 2
|
|
22
|
-
}
|
|
Binary file
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chunks": [
|
|
3
|
-
4,
|
|
4
|
-
4
|
|
5
|
-
],
|
|
6
|
-
"compressor": {
|
|
7
|
-
"blocksize": 0,
|
|
8
|
-
"clevel": 5,
|
|
9
|
-
"cname": "lz4",
|
|
10
|
-
"id": "blosc",
|
|
11
|
-
"shuffle": 1
|
|
12
|
-
},
|
|
13
|
-
"dtype": "<f8",
|
|
14
|
-
"fill_value": "NaN",
|
|
15
|
-
"filters": null,
|
|
16
|
-
"order": "C",
|
|
17
|
-
"shape": [
|
|
18
|
-
4,
|
|
19
|
-
4
|
|
20
|
-
],
|
|
21
|
-
"zarr_format": 2
|
|
22
|
-
}
|
|
Binary file
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chunks": [
|
|
3
|
-
4,
|
|
4
|
-
4
|
|
5
|
-
],
|
|
6
|
-
"compressor": {
|
|
7
|
-
"blocksize": 0,
|
|
8
|
-
"clevel": 5,
|
|
9
|
-
"cname": "lz4",
|
|
10
|
-
"id": "blosc",
|
|
11
|
-
"shuffle": 1
|
|
12
|
-
},
|
|
13
|
-
"dtype": "<f8",
|
|
14
|
-
"fill_value": "NaN",
|
|
15
|
-
"filters": null,
|
|
16
|
-
"order": "C",
|
|
17
|
-
"shape": [
|
|
18
|
-
4,
|
|
19
|
-
4
|
|
20
|
-
],
|
|
21
|
-
"zarr_format": 2
|
|
22
|
-
}
|
|
Binary file
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chunks": [
|
|
3
|
-
4,
|
|
4
|
-
4
|
|
5
|
-
],
|
|
6
|
-
"compressor": {
|
|
7
|
-
"blocksize": 0,
|
|
8
|
-
"clevel": 5,
|
|
9
|
-
"cname": "lz4",
|
|
10
|
-
"id": "blosc",
|
|
11
|
-
"shuffle": 1
|
|
12
|
-
},
|
|
13
|
-
"dtype": "<f8",
|
|
14
|
-
"fill_value": "NaN",
|
|
15
|
-
"filters": null,
|
|
16
|
-
"order": "C",
|
|
17
|
-
"shape": [
|
|
18
|
-
4,
|
|
19
|
-
4
|
|
20
|
-
],
|
|
21
|
-
"zarr_format": 2
|
|
22
|
-
}
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|