roms-tools 2.3.0__py3-none-any.whl → 2.4.0__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 (143) hide show
  1. ci/environment.yml +1 -0
  2. roms_tools/__init__.py +1 -0
  3. roms_tools/analysis/roms_output.py +10 -6
  4. roms_tools/setup/boundary_forcing.py +178 -193
  5. roms_tools/setup/datasets.py +58 -1
  6. roms_tools/setup/grid.py +31 -97
  7. roms_tools/setup/initial_conditions.py +172 -126
  8. roms_tools/setup/nesting.py +2 -23
  9. roms_tools/setup/river_forcing.py +34 -67
  10. roms_tools/setup/surface_forcing.py +111 -61
  11. roms_tools/setup/tides.py +7 -30
  12. roms_tools/setup/utils.py +24 -70
  13. roms_tools/tests/test_setup/test_boundary_forcing.py +220 -57
  14. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zattrs +5 -3
  15. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zmetadata +156 -121
  16. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/.zarray +2 -2
  17. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/.zattrs +2 -1
  18. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/0 +0 -0
  19. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/.zarray +2 -2
  20. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/.zattrs +1 -1
  21. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/0 +0 -0
  22. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/.zarray +4 -4
  23. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/0.0.0 +0 -0
  24. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/.zarray +4 -4
  25. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/0.0.0 +0 -0
  26. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/.zarray +4 -4
  27. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/0.0.0 +0 -0
  28. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/.zarray +4 -4
  29. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/0.0.0 +0 -0
  30. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/.zarray +4 -4
  31. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/0.0.0 +0 -0
  32. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/.zarray +4 -4
  33. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/0.0.0 +0 -0
  34. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/.zarray +4 -4
  35. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/0.0.0 +0 -0
  36. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/.zarray +4 -4
  37. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/0.0.0 +0 -0
  38. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/.zarray +4 -4
  39. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/0.0.0 +0 -0
  40. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/.zarray +4 -4
  41. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/0.0.0 +0 -0
  42. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/.zarray +4 -4
  43. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/0.0.0 +0 -0
  44. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/.zarray +4 -4
  45. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/0.0.0 +0 -0
  46. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/.zarray +4 -4
  47. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/0.0 +0 -0
  48. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/.zarray +4 -4
  49. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/0.0 +0 -0
  50. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/.zarray +4 -4
  51. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/0.0 +0 -0
  52. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/.zarray +4 -4
  53. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/0.0 +0 -0
  54. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/.zarray +4 -4
  55. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/0.0.0 +0 -0
  56. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/.zarray +4 -4
  57. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/0.0.0 +0 -0
  58. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/.zarray +4 -4
  59. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/0.0.0 +0 -0
  60. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/.zarray +4 -4
  61. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/0.0.0 +0 -0
  62. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/.zarray +4 -4
  63. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/0.0 +0 -0
  64. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/.zarray +4 -4
  65. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/0.0 +0 -0
  66. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/.zarray +4 -4
  67. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/0.0 +0 -0
  68. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/.zarray +4 -4
  69. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/0.0 +0 -0
  70. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/.zarray +4 -4
  71. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/.zattrs +8 -0
  72. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/0.0 +0 -0
  73. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/.zarray +4 -4
  74. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/.zattrs +8 -0
  75. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/0.0 +0 -0
  76. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/.zarray +4 -4
  77. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/.zattrs +8 -0
  78. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/0.0 +0 -0
  79. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/.zarray +4 -4
  80. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/.zattrs +8 -0
  81. roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/0.0 +0 -0
  82. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs +4 -4
  83. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata +4 -4
  84. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/0.0 +0 -0
  85. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/0.0 +0 -0
  86. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/0.0 +0 -0
  87. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/0.0 +0 -0
  88. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/0.0 +0 -0
  89. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/0.0 +0 -0
  90. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/0.0 +0 -0
  91. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/0.0 +0 -0
  92. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/0.0 +0 -0
  93. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/0.0 +0 -0
  94. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/0.0 +0 -0
  95. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/0.0 +0 -0
  96. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/0.0 +0 -0
  97. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/0.0 +0 -0
  98. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/0.0 +0 -0
  99. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/0.0 +0 -0
  100. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/0.0 +0 -0
  101. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/0.0 +0 -0
  102. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/.zattrs +2 -1
  103. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/.zmetadata +6 -4
  104. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/.zattrs +1 -1
  105. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/.zattrs +1 -1
  106. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/0.0.0.0 +0 -0
  107. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/0.0.0.0 +0 -0
  108. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/0.0.0.0 +0 -0
  109. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/abs_time/.zattrs +1 -0
  110. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/0.0.0.0 +0 -0
  111. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/.zattrs +1 -1
  112. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/0.0.0.0 +0 -0
  113. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/0.0.0.0 +0 -0
  114. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/0.0.0.0 +0 -0
  115. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/0.0.0.0 +0 -0
  116. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/0.0.0.0 +0 -0
  117. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/0.0.0 +0 -0
  118. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/0.0.0.0 +0 -0
  119. roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/0.0.0 +0 -0
  120. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zmetadata +30 -0
  121. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_location/.zarray +22 -0
  122. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_location/.zattrs +8 -0
  123. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_location/0.0 +0 -0
  124. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/.zmetadata +30 -0
  125. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_location/.zarray +22 -0
  126. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_location/.zattrs +8 -0
  127. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_location/0.0 +0 -0
  128. roms_tools/tests/test_setup/test_grid.py +0 -13
  129. roms_tools/tests/test_setup/test_initial_conditions.py +204 -66
  130. roms_tools/tests/test_setup/test_nesting.py +0 -16
  131. roms_tools/tests/test_setup/test_river_forcing.py +8 -36
  132. roms_tools/tests/test_setup/test_surface_forcing.py +102 -73
  133. roms_tools/tests/test_setup/test_tides.py +4 -16
  134. roms_tools/tests/test_setup/test_utils.py +1 -0
  135. roms_tools/tests/{test_utils.py → test_tiling/test_partition.py} +1 -1
  136. roms_tools/tiling/partition.py +338 -0
  137. roms_tools/utils.py +66 -333
  138. roms_tools/vertical_coordinate.py +54 -133
  139. {roms_tools-2.3.0.dist-info → roms_tools-2.4.0.dist-info}/METADATA +1 -1
  140. {roms_tools-2.3.0.dist-info → roms_tools-2.4.0.dist-info}/RECORD +143 -136
  141. {roms_tools-2.3.0.dist-info → roms_tools-2.4.0.dist-info}/LICENSE +0 -0
  142. {roms_tools-2.3.0.dist-info → roms_tools-2.4.0.dist-info}/WHEEL +0 -0
  143. {roms_tools-2.3.0.dist-info → roms_tools-2.4.0.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "metadata": {
3
3
  ".zattrs": {
4
- "end_time": "2021-06-30 00:00:00",
4
+ "adjust_depth_for_sea_surface_height": "False",
5
+ "apply_2d_horizontal_fill": "False",
6
+ "end_time": "2012-12-31 00:00:00",
5
7
  "hc": 250.0,
6
8
  "model_reference_date": "2000-01-01 00:00:00",
7
- "roms_tools_version": "0.1.dev157+dirty",
9
+ "roms_tools_version": "0.1.dev177",
8
10
  "source": "GLORYS",
9
- "start_time": "2021-06-29 00:00:00",
11
+ "start_time": "2012-01-01 00:00:00",
10
12
  "theta_b": 2.0,
11
13
  "theta_s": 5.0,
12
14
  "title": "ROMS boundary forcing file created by ROMS-Tools"
@@ -16,7 +18,7 @@
16
18
  },
17
19
  "abs_time/.zarray": {
18
20
  "chunks": [
19
- 1
21
+ 2
20
22
  ],
21
23
  "compressor": {
22
24
  "blocksize": 0,
@@ -30,7 +32,7 @@
30
32
  "filters": null,
31
33
  "order": "C",
32
34
  "shape": [
33
- 1
35
+ 2
34
36
  ],
35
37
  "zarr_format": 2
36
38
  },
@@ -39,11 +41,12 @@
39
41
  "bry_time"
40
42
  ],
41
43
  "calendar": "gregorian",
42
- "units": "seconds since 1970-01-01"
44
+ "long_name": "absolute time",
45
+ "units": "hours since 1950-01-01"
43
46
  },
44
47
  "bry_time/.zarray": {
45
48
  "chunks": [
46
- 1
49
+ 2
47
50
  ],
48
51
  "compressor": {
49
52
  "blocksize": 0,
@@ -57,7 +60,7 @@
57
60
  "filters": null,
58
61
  "order": "C",
59
62
  "shape": [
60
- 1
63
+ 2
61
64
  ],
62
65
  "zarr_format": 2
63
66
  },
@@ -65,14 +68,14 @@
65
68
  "_ARRAY_DIMENSIONS": [
66
69
  "bry_time"
67
70
  ],
68
- "long_name": "days since 2000-01-01 00:00:00",
71
+ "long_name": "relative time: days since 2000-01-01 00:00:00",
69
72
  "units": "days"
70
73
  },
71
74
  "salt_east/.zarray": {
72
75
  "chunks": [
73
- 1,
76
+ 2,
74
77
  3,
75
- 4
78
+ 5
76
79
  ],
77
80
  "compressor": {
78
81
  "blocksize": 0,
@@ -86,9 +89,9 @@
86
89
  "filters": null,
87
90
  "order": "C",
88
91
  "shape": [
89
- 1,
92
+ 2,
90
93
  3,
91
- 4
94
+ 5
92
95
  ],
93
96
  "zarr_format": 2
94
97
  },
@@ -104,9 +107,9 @@
104
107
  },
105
108
  "salt_north/.zarray": {
106
109
  "chunks": [
107
- 1,
110
+ 2,
108
111
  3,
109
- 4
112
+ 5
110
113
  ],
111
114
  "compressor": {
112
115
  "blocksize": 0,
@@ -120,9 +123,9 @@
120
123
  "filters": null,
121
124
  "order": "C",
122
125
  "shape": [
123
- 1,
126
+ 2,
124
127
  3,
125
- 4
128
+ 5
126
129
  ],
127
130
  "zarr_format": 2
128
131
  },
@@ -138,9 +141,9 @@
138
141
  },
139
142
  "salt_south/.zarray": {
140
143
  "chunks": [
141
- 1,
144
+ 2,
142
145
  3,
143
- 4
146
+ 5
144
147
  ],
145
148
  "compressor": {
146
149
  "blocksize": 0,
@@ -154,9 +157,9 @@
154
157
  "filters": null,
155
158
  "order": "C",
156
159
  "shape": [
157
- 1,
160
+ 2,
158
161
  3,
159
- 4
162
+ 5
160
163
  ],
161
164
  "zarr_format": 2
162
165
  },
@@ -172,9 +175,9 @@
172
175
  },
173
176
  "salt_west/.zarray": {
174
177
  "chunks": [
175
- 1,
178
+ 2,
176
179
  3,
177
- 4
180
+ 5
178
181
  ],
179
182
  "compressor": {
180
183
  "blocksize": 0,
@@ -188,9 +191,9 @@
188
191
  "filters": null,
189
192
  "order": "C",
190
193
  "shape": [
191
- 1,
194
+ 2,
192
195
  3,
193
- 4
196
+ 5
194
197
  ],
195
198
  "zarr_format": 2
196
199
  },
@@ -206,9 +209,9 @@
206
209
  },
207
210
  "temp_east/.zarray": {
208
211
  "chunks": [
209
- 1,
212
+ 2,
210
213
  3,
211
- 4
214
+ 5
212
215
  ],
213
216
  "compressor": {
214
217
  "blocksize": 0,
@@ -222,9 +225,9 @@
222
225
  "filters": null,
223
226
  "order": "C",
224
227
  "shape": [
225
- 1,
228
+ 2,
226
229
  3,
227
- 4
230
+ 5
228
231
  ],
229
232
  "zarr_format": 2
230
233
  },
@@ -240,9 +243,9 @@
240
243
  },
241
244
  "temp_north/.zarray": {
242
245
  "chunks": [
243
- 1,
246
+ 2,
244
247
  3,
245
- 4
248
+ 5
246
249
  ],
247
250
  "compressor": {
248
251
  "blocksize": 0,
@@ -256,9 +259,9 @@
256
259
  "filters": null,
257
260
  "order": "C",
258
261
  "shape": [
259
- 1,
262
+ 2,
260
263
  3,
261
- 4
264
+ 5
262
265
  ],
263
266
  "zarr_format": 2
264
267
  },
@@ -274,9 +277,9 @@
274
277
  },
275
278
  "temp_south/.zarray": {
276
279
  "chunks": [
277
- 1,
280
+ 2,
278
281
  3,
279
- 4
282
+ 5
280
283
  ],
281
284
  "compressor": {
282
285
  "blocksize": 0,
@@ -290,9 +293,9 @@
290
293
  "filters": null,
291
294
  "order": "C",
292
295
  "shape": [
293
- 1,
296
+ 2,
294
297
  3,
295
- 4
298
+ 5
296
299
  ],
297
300
  "zarr_format": 2
298
301
  },
@@ -308,9 +311,9 @@
308
311
  },
309
312
  "temp_west/.zarray": {
310
313
  "chunks": [
311
- 1,
314
+ 2,
312
315
  3,
313
- 4
316
+ 5
314
317
  ],
315
318
  "compressor": {
316
319
  "blocksize": 0,
@@ -324,9 +327,9 @@
324
327
  "filters": null,
325
328
  "order": "C",
326
329
  "shape": [
327
- 1,
330
+ 2,
328
331
  3,
329
- 4
332
+ 5
330
333
  ],
331
334
  "zarr_format": 2
332
335
  },
@@ -342,9 +345,9 @@
342
345
  },
343
346
  "u_east/.zarray": {
344
347
  "chunks": [
345
- 1,
348
+ 2,
346
349
  3,
347
- 4
350
+ 5
348
351
  ],
349
352
  "compressor": {
350
353
  "blocksize": 0,
@@ -358,9 +361,9 @@
358
361
  "filters": null,
359
362
  "order": "C",
360
363
  "shape": [
361
- 1,
364
+ 2,
362
365
  3,
363
- 4
366
+ 5
364
367
  ],
365
368
  "zarr_format": 2
366
369
  },
@@ -376,9 +379,9 @@
376
379
  },
377
380
  "u_north/.zarray": {
378
381
  "chunks": [
379
- 1,
382
+ 2,
380
383
  3,
381
- 3
384
+ 4
382
385
  ],
383
386
  "compressor": {
384
387
  "blocksize": 0,
@@ -392,9 +395,9 @@
392
395
  "filters": null,
393
396
  "order": "C",
394
397
  "shape": [
395
- 1,
398
+ 2,
396
399
  3,
397
- 3
400
+ 4
398
401
  ],
399
402
  "zarr_format": 2
400
403
  },
@@ -410,9 +413,9 @@
410
413
  },
411
414
  "u_south/.zarray": {
412
415
  "chunks": [
413
- 1,
416
+ 2,
414
417
  3,
415
- 3
418
+ 4
416
419
  ],
417
420
  "compressor": {
418
421
  "blocksize": 0,
@@ -426,9 +429,9 @@
426
429
  "filters": null,
427
430
  "order": "C",
428
431
  "shape": [
429
- 1,
432
+ 2,
430
433
  3,
431
- 3
434
+ 4
432
435
  ],
433
436
  "zarr_format": 2
434
437
  },
@@ -444,9 +447,9 @@
444
447
  },
445
448
  "u_west/.zarray": {
446
449
  "chunks": [
447
- 1,
450
+ 2,
448
451
  3,
449
- 4
452
+ 5
450
453
  ],
451
454
  "compressor": {
452
455
  "blocksize": 0,
@@ -460,9 +463,9 @@
460
463
  "filters": null,
461
464
  "order": "C",
462
465
  "shape": [
463
- 1,
466
+ 2,
464
467
  3,
465
- 4
468
+ 5
466
469
  ],
467
470
  "zarr_format": 2
468
471
  },
@@ -478,8 +481,8 @@
478
481
  },
479
482
  "ubar_east/.zarray": {
480
483
  "chunks": [
481
- 1,
482
- 4
484
+ 2,
485
+ 5
483
486
  ],
484
487
  "compressor": {
485
488
  "blocksize": 0,
@@ -493,8 +496,8 @@
493
496
  "filters": null,
494
497
  "order": "C",
495
498
  "shape": [
496
- 1,
497
- 4
499
+ 2,
500
+ 5
498
501
  ],
499
502
  "zarr_format": 2
500
503
  },
@@ -509,8 +512,8 @@
509
512
  },
510
513
  "ubar_north/.zarray": {
511
514
  "chunks": [
512
- 1,
513
- 3
515
+ 2,
516
+ 4
514
517
  ],
515
518
  "compressor": {
516
519
  "blocksize": 0,
@@ -524,8 +527,8 @@
524
527
  "filters": null,
525
528
  "order": "C",
526
529
  "shape": [
527
- 1,
528
- 3
530
+ 2,
531
+ 4
529
532
  ],
530
533
  "zarr_format": 2
531
534
  },
@@ -540,8 +543,8 @@
540
543
  },
541
544
  "ubar_south/.zarray": {
542
545
  "chunks": [
543
- 1,
544
- 3
546
+ 2,
547
+ 4
545
548
  ],
546
549
  "compressor": {
547
550
  "blocksize": 0,
@@ -555,8 +558,8 @@
555
558
  "filters": null,
556
559
  "order": "C",
557
560
  "shape": [
558
- 1,
559
- 3
561
+ 2,
562
+ 4
560
563
  ],
561
564
  "zarr_format": 2
562
565
  },
@@ -571,8 +574,8 @@
571
574
  },
572
575
  "ubar_west/.zarray": {
573
576
  "chunks": [
574
- 1,
575
- 4
577
+ 2,
578
+ 5
576
579
  ],
577
580
  "compressor": {
578
581
  "blocksize": 0,
@@ -586,8 +589,8 @@
586
589
  "filters": null,
587
590
  "order": "C",
588
591
  "shape": [
589
- 1,
590
- 4
592
+ 2,
593
+ 5
591
594
  ],
592
595
  "zarr_format": 2
593
596
  },
@@ -602,9 +605,9 @@
602
605
  },
603
606
  "v_east/.zarray": {
604
607
  "chunks": [
605
- 1,
608
+ 2,
606
609
  3,
607
- 3
610
+ 4
608
611
  ],
609
612
  "compressor": {
610
613
  "blocksize": 0,
@@ -618,9 +621,9 @@
618
621
  "filters": null,
619
622
  "order": "C",
620
623
  "shape": [
621
- 1,
624
+ 2,
622
625
  3,
623
- 3
626
+ 4
624
627
  ],
625
628
  "zarr_format": 2
626
629
  },
@@ -636,9 +639,9 @@
636
639
  },
637
640
  "v_north/.zarray": {
638
641
  "chunks": [
639
- 1,
642
+ 2,
640
643
  3,
641
- 4
644
+ 5
642
645
  ],
643
646
  "compressor": {
644
647
  "blocksize": 0,
@@ -652,9 +655,9 @@
652
655
  "filters": null,
653
656
  "order": "C",
654
657
  "shape": [
655
- 1,
658
+ 2,
656
659
  3,
657
- 4
660
+ 5
658
661
  ],
659
662
  "zarr_format": 2
660
663
  },
@@ -670,9 +673,9 @@
670
673
  },
671
674
  "v_south/.zarray": {
672
675
  "chunks": [
673
- 1,
676
+ 2,
674
677
  3,
675
- 4
678
+ 5
676
679
  ],
677
680
  "compressor": {
678
681
  "blocksize": 0,
@@ -686,9 +689,9 @@
686
689
  "filters": null,
687
690
  "order": "C",
688
691
  "shape": [
689
- 1,
692
+ 2,
690
693
  3,
691
- 4
694
+ 5
692
695
  ],
693
696
  "zarr_format": 2
694
697
  },
@@ -704,9 +707,9 @@
704
707
  },
705
708
  "v_west/.zarray": {
706
709
  "chunks": [
707
- 1,
710
+ 2,
708
711
  3,
709
- 3
712
+ 4
710
713
  ],
711
714
  "compressor": {
712
715
  "blocksize": 0,
@@ -720,9 +723,9 @@
720
723
  "filters": null,
721
724
  "order": "C",
722
725
  "shape": [
723
- 1,
726
+ 2,
724
727
  3,
725
- 3
728
+ 4
726
729
  ],
727
730
  "zarr_format": 2
728
731
  },
@@ -738,8 +741,8 @@
738
741
  },
739
742
  "vbar_east/.zarray": {
740
743
  "chunks": [
741
- 1,
742
- 3
744
+ 2,
745
+ 4
743
746
  ],
744
747
  "compressor": {
745
748
  "blocksize": 0,
@@ -753,8 +756,8 @@
753
756
  "filters": null,
754
757
  "order": "C",
755
758
  "shape": [
756
- 1,
757
- 3
759
+ 2,
760
+ 4
758
761
  ],
759
762
  "zarr_format": 2
760
763
  },
@@ -769,8 +772,8 @@
769
772
  },
770
773
  "vbar_north/.zarray": {
771
774
  "chunks": [
772
- 1,
773
- 4
775
+ 2,
776
+ 5
774
777
  ],
775
778
  "compressor": {
776
779
  "blocksize": 0,
@@ -784,8 +787,8 @@
784
787
  "filters": null,
785
788
  "order": "C",
786
789
  "shape": [
787
- 1,
788
- 4
790
+ 2,
791
+ 5
789
792
  ],
790
793
  "zarr_format": 2
791
794
  },
@@ -800,8 +803,8 @@
800
803
  },
801
804
  "vbar_south/.zarray": {
802
805
  "chunks": [
803
- 1,
804
- 4
806
+ 2,
807
+ 5
805
808
  ],
806
809
  "compressor": {
807
810
  "blocksize": 0,
@@ -815,8 +818,8 @@
815
818
  "filters": null,
816
819
  "order": "C",
817
820
  "shape": [
818
- 1,
819
- 4
821
+ 2,
822
+ 5
820
823
  ],
821
824
  "zarr_format": 2
822
825
  },
@@ -831,8 +834,8 @@
831
834
  },
832
835
  "vbar_west/.zarray": {
833
836
  "chunks": [
834
- 1,
835
- 3
837
+ 2,
838
+ 4
836
839
  ],
837
840
  "compressor": {
838
841
  "blocksize": 0,
@@ -846,8 +849,8 @@
846
849
  "filters": null,
847
850
  "order": "C",
848
851
  "shape": [
849
- 1,
850
- 3
852
+ 2,
853
+ 4
851
854
  ],
852
855
  "zarr_format": 2
853
856
  },
@@ -862,8 +865,8 @@
862
865
  },
863
866
  "zeta_east/.zarray": {
864
867
  "chunks": [
865
- 1,
866
- 4
868
+ 2,
869
+ 5
867
870
  ],
868
871
  "compressor": {
869
872
  "blocksize": 0,
@@ -877,8 +880,8 @@
877
880
  "filters": null,
878
881
  "order": "C",
879
882
  "shape": [
880
- 1,
881
- 4
883
+ 2,
884
+ 5
882
885
  ],
883
886
  "zarr_format": 2
884
887
  },
@@ -887,14 +890,22 @@
887
890
  "bry_time",
888
891
  "eta_rho"
889
892
  ],
893
+ "_ChunkSizes": [
894
+ 1,
895
+ 681,
896
+ 1440
897
+ ],
898
+ "cell_methods": "area: mean",
890
899
  "coordinates": "abs_time",
891
900
  "long_name": "eastern boundary sea surface height",
901
+ "standard_name": "sea_surface_height_above_geoid",
902
+ "unit_long": "Meters",
892
903
  "units": "m"
893
904
  },
894
905
  "zeta_north/.zarray": {
895
906
  "chunks": [
896
- 1,
897
- 4
907
+ 2,
908
+ 5
898
909
  ],
899
910
  "compressor": {
900
911
  "blocksize": 0,
@@ -908,8 +919,8 @@
908
919
  "filters": null,
909
920
  "order": "C",
910
921
  "shape": [
911
- 1,
912
- 4
922
+ 2,
923
+ 5
913
924
  ],
914
925
  "zarr_format": 2
915
926
  },
@@ -918,14 +929,22 @@
918
929
  "bry_time",
919
930
  "xi_rho"
920
931
  ],
932
+ "_ChunkSizes": [
933
+ 1,
934
+ 681,
935
+ 1440
936
+ ],
937
+ "cell_methods": "area: mean",
921
938
  "coordinates": "abs_time",
922
939
  "long_name": "northern boundary sea surface height",
940
+ "standard_name": "sea_surface_height_above_geoid",
941
+ "unit_long": "Meters",
923
942
  "units": "m"
924
943
  },
925
944
  "zeta_south/.zarray": {
926
945
  "chunks": [
927
- 1,
928
- 4
946
+ 2,
947
+ 5
929
948
  ],
930
949
  "compressor": {
931
950
  "blocksize": 0,
@@ -939,8 +958,8 @@
939
958
  "filters": null,
940
959
  "order": "C",
941
960
  "shape": [
942
- 1,
943
- 4
961
+ 2,
962
+ 5
944
963
  ],
945
964
  "zarr_format": 2
946
965
  },
@@ -949,14 +968,22 @@
949
968
  "bry_time",
950
969
  "xi_rho"
951
970
  ],
971
+ "_ChunkSizes": [
972
+ 1,
973
+ 681,
974
+ 1440
975
+ ],
976
+ "cell_methods": "area: mean",
952
977
  "coordinates": "abs_time",
953
978
  "long_name": "southern boundary sea surface height",
979
+ "standard_name": "sea_surface_height_above_geoid",
980
+ "unit_long": "Meters",
954
981
  "units": "m"
955
982
  },
956
983
  "zeta_west/.zarray": {
957
984
  "chunks": [
958
- 1,
959
- 4
985
+ 2,
986
+ 5
960
987
  ],
961
988
  "compressor": {
962
989
  "blocksize": 0,
@@ -970,8 +997,8 @@
970
997
  "filters": null,
971
998
  "order": "C",
972
999
  "shape": [
973
- 1,
974
- 4
1000
+ 2,
1001
+ 5
975
1002
  ],
976
1003
  "zarr_format": 2
977
1004
  },
@@ -980,8 +1007,16 @@
980
1007
  "bry_time",
981
1008
  "eta_rho"
982
1009
  ],
1010
+ "_ChunkSizes": [
1011
+ 1,
1012
+ 681,
1013
+ 1440
1014
+ ],
1015
+ "cell_methods": "area: mean",
983
1016
  "coordinates": "abs_time",
984
1017
  "long_name": "western boundary sea surface height",
1018
+ "standard_name": "sea_surface_height_above_geoid",
1019
+ "unit_long": "Meters",
985
1020
  "units": "m"
986
1021
  }
987
1022
  },