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.
Files changed (44) hide show
  1. roms_tools/_version.py +1 -1
  2. roms_tools/setup/boundary_forcing.py +77 -70
  3. roms_tools/setup/datasets.py +38 -59
  4. roms_tools/setup/download.py +3 -6
  5. roms_tools/setup/fill.py +8 -16
  6. roms_tools/setup/grid.py +74 -113
  7. roms_tools/setup/initial_conditions.py +43 -36
  8. roms_tools/setup/mixins.py +10 -14
  9. roms_tools/setup/surface_forcing.py +35 -33
  10. roms_tools/setup/tides.py +37 -41
  11. roms_tools/setup/topography.py +9 -17
  12. roms_tools/setup/utils.py +19 -40
  13. roms_tools/setup/vertical_coordinate.py +4 -6
  14. roms_tools/tests/test_setup/test_boundary_forcing.py +6 -13
  15. roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs +2 -2
  16. roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata +2 -62
  17. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs +2 -2
  18. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata +2 -62
  19. roms_tools/tests/test_setup/test_datasets.py +8 -18
  20. roms_tools/tests/test_setup/test_grid.py +9 -9
  21. roms_tools/tests/test_setup/test_initial_conditions.py +4 -7
  22. roms_tools/tests/test_setup/test_surface_forcing.py +56 -56
  23. roms_tools/tests/test_setup/test_tides.py +6 -10
  24. roms_tools/tests/test_setup/test_topography.py +2 -4
  25. roms_tools/tests/test_setup/test_vertical_coordinate.py +2 -6
  26. roms_tools/tests/test_utils.py +30 -30
  27. roms_tools/utils.py +6 -7
  28. {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/METADATA +1 -1
  29. {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/RECORD +32 -44
  30. roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zarray +0 -22
  31. roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/.zattrs +0 -8
  32. roms_tools/tests/test_setup/test_data/grid.zarr/lat_psi/0.0 +0 -0
  33. roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zarray +0 -22
  34. roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/.zattrs +0 -8
  35. roms_tools/tests/test_setup/test_data/grid.zarr/lon_psi/0.0 +0 -0
  36. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zarray +0 -22
  37. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/.zattrs +0 -8
  38. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_psi/0.0 +0 -0
  39. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zarray +0 -22
  40. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/.zattrs +0 -8
  41. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_psi/0.0 +0 -0
  42. {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/LICENSE +0 -0
  43. {roms_tools-1.4.1.dist-info → roms_tools-1.4.2.dist-info}/WHEEL +0 -0
  44. {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
- Test plot and save methods in the same test since we dask arrays are already computed.
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 re-opening yaml file creates the same object."""
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
- Test that the mask and topography along the grid boundaries (north, south, east, west)
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,
@@ -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
- Partition a ROMS (Regional Ocean Modeling System) dataset into smaller spatial tiles.
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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: roms-tools
3
- Version: 1.4.1
3
+ Version: 1.4.2
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
@@ -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=8Npi6AtVBlFIP1cw2fmQ4j_li7mVfP4i3VDkA5F9N1M,72
4
- roms_tools/utils.py,sha256=XkwEjiO-ne5BIIAniWzwetYg-saE2RYhZpDi97sS5IU,12118
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=NgVGsLHK10QHHXuB-enXp2_mBBPGxmboglm0ntbuqbs,26606
7
- roms_tools/setup/datasets.py,sha256=IH2uTew6Bp8lKgsbVS_PmK3XvKBL_OvzBQas8TpsGQo,53425
8
- roms_tools/setup/download.py,sha256=7w3BViWu-001k6bEruLQi-3sb0IHgzC2fE7-_DK0AOg,5117
9
- roms_tools/setup/fill.py,sha256=r8guyE4Xu9ONoaJLAmYVmAt26ZArhD9MpNQbfkX4t9I,11181
10
- roms_tools/setup/grid.py,sha256=IKt7JarWy1L5HwLzKkaD7GhE87ChjEIvSygPyOPMQ_I,46285
11
- roms_tools/setup/initial_conditions.py,sha256=4LnHtUE22XlPSIcPKy8f_BarfXxmMh7LB2foJAnEnFM,25557
12
- roms_tools/setup/mixins.py,sha256=mJ2ydEg4YuTMiY_8Cx6Nzr-AJAbTWiwKyWwY3X5j4Rc,9519
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=U6XBtVVWO5V-sXeqZWgpcDQ0U-Lb3F7Q-fbh7xY518g,20879
15
- roms_tools/setup/tides.py,sha256=X68HtJ1GNPNOdNhYJVRzcPe889zuHLXA5kdijcK7i2E,25314
16
- roms_tools/setup/topography.py,sha256=L6J4kuBeueu2NHEFKVhqypfMmfZBQqWVkPPGp5CLGio,10385
17
- roms_tools/setup/utils.py,sha256=BLKAZ_8dwhYWJQ79EGGW_vpjLpF0JgD5niPGjpdHbEU,27526
18
- roms_tools/setup/vertical_coordinate.py,sha256=f0r4KY6ZXl1pqs0M1aEj1vsivcoqPVzj3M03vku0C60,3034
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=wjwdwt2nS1rkmFSa8Ur4PAtCS-Vvz6yQgYDIJy8jjAI,7906
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=1Zz25uEkvmHfuFH66T4EdEiQ0odqGC2BiorjHOBeP4g,10093
23
- roms_tools/tests/test_setup/test_datasets.py,sha256=iPSGyDa0C_36rGa2SPmVR2939s1UZLZiR_X-K7jbhoM,14457
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=yAusCOpHWcBy6dO-GzpRxtniWCSH3kx-Lgeo9xljP28,12170
26
- roms_tools/tests/test_setup/test_initial_conditions.py,sha256=whB2wHhiK3QqVBCDGBQg3Qpwilet0gAY6TJFCodiW6k,11090
27
- roms_tools/tests/test_setup/test_surface_forcing.py,sha256=Agz5aaDqCNU4Lg9Wy-MwuaGSnghszV5d36FOqQYymlw,24038
28
- roms_tools/tests/test_setup/test_tides.py,sha256=dLQeZAkq3F7KP8Q4fEX4ntgIpFpFhsPm18PeTyN0gwk,8625
29
- roms_tools/tests/test_setup/test_topography.py,sha256=J3r4_mLhQ006IlB0U2rXRRDjVQcLj3PzWyOqPsZbmGc,2591
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=Nl5r4FYMDuGyrISm9E0bZUwTm6Surl9ngOuU2dQw3S4,2616
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=QTPNKudVZgIjP83yCFSbaHNgL2bIgvh7vacHnDFRTLI,439
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=pKvVYJYD2IAhABW40iMRcE2zXkO0qzrPmQNxz8RrEsE,23351
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=ox-nEueK_1v543HX5-PfQ7bFNYAmwb7qVng9MJ05ux8,438
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=vzNA-kfiNaIjawuE_iWXE5bnnl1sKn5NUCHHw76OQB8,23350
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.1.dist-info/LICENSE,sha256=CV14VH8hnprGy6SN5GqFIxNNxt5V9D2ev_kBUW6lsBE,11313
1033
- roms_tools-1.4.1.dist-info/METADATA,sha256=eg3_CPJ40zgB0XBOZqcCcfWxGERuoR1hZ4s24bECMu0,3751
1034
- roms_tools-1.4.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
1035
- roms_tools-1.4.1.dist-info/top_level.txt,sha256=aAf4T4nYQSkay5iKJ9kmTjlDgd4ETdp9OSlB4sJdt8Y,19
1036
- roms_tools-1.4.1.dist-info/RECORD,,
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
- }
@@ -1,8 +0,0 @@
1
- {
2
- "_ARRAY_DIMENSIONS": [
3
- "eta_psi",
4
- "xi_psi"
5
- ],
6
- "long_name": "latitude of psi-points",
7
- "units": "degrees North"
8
- }
@@ -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
- }
@@ -1,8 +0,0 @@
1
- {
2
- "_ARRAY_DIMENSIONS": [
3
- "eta_psi",
4
- "xi_psi"
5
- ],
6
- "long_name": "longitude of psi-points",
7
- "units": "degrees East"
8
- }
@@ -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
- }
@@ -1,8 +0,0 @@
1
- {
2
- "_ARRAY_DIMENSIONS": [
3
- "eta_psi",
4
- "xi_psi"
5
- ],
6
- "long_name": "latitude of psi-points",
7
- "units": "degrees North"
8
- }
@@ -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
- }
@@ -1,8 +0,0 @@
1
- {
2
- "_ARRAY_DIMENSIONS": [
3
- "eta_psi",
4
- "xi_psi"
5
- ],
6
- "long_name": "longitude of psi-points",
7
- "units": "degrees East"
8
- }