roms-tools 1.7.0__py3-none-any.whl → 2.0.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 (85) hide show
  1. roms_tools/_version.py +1 -1
  2. roms_tools/setup/boundary_forcing.py +253 -144
  3. roms_tools/setup/datasets.py +216 -48
  4. roms_tools/setup/download.py +13 -17
  5. roms_tools/setup/grid.py +561 -512
  6. roms_tools/setup/initial_conditions.py +148 -30
  7. roms_tools/setup/mask.py +69 -0
  8. roms_tools/setup/plot.py +4 -8
  9. roms_tools/setup/regrid.py +4 -2
  10. roms_tools/setup/surface_forcing.py +11 -18
  11. roms_tools/setup/tides.py +9 -12
  12. roms_tools/setup/topography.py +92 -128
  13. roms_tools/setup/utils.py +49 -25
  14. roms_tools/setup/vertical_coordinate.py +5 -16
  15. roms_tools/tests/test_setup/test_boundary_forcing.py +10 -5
  16. roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs +0 -1
  17. roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata +56 -201
  18. roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/.zattrs +1 -1
  19. roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/.zattrs +1 -1
  20. roms_tools/tests/test_setup/test_data/grid.zarr/{interface_depth_rho → sigma_r}/.zarray +2 -6
  21. roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/.zattrs +7 -0
  22. roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/0 +0 -0
  23. roms_tools/tests/test_setup/test_data/grid.zarr/{interface_depth_u → sigma_w}/.zarray +2 -6
  24. roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/.zattrs +7 -0
  25. roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/0 +0 -0
  26. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs +1 -2
  27. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata +58 -203
  28. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/.zattrs +1 -1
  29. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/.zattrs +1 -1
  30. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/.zattrs +1 -1
  31. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/0.0 +0 -0
  32. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/0.0 +0 -0
  33. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/0.0 +0 -0
  34. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/0.0 +0 -0
  35. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/0.0 +0 -0
  36. roms_tools/tests/test_setup/test_data/{grid.zarr/interface_depth_v → grid_that_straddles_dateline.zarr/sigma_r}/.zarray +2 -6
  37. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/.zattrs +7 -0
  38. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/0 +0 -0
  39. roms_tools/tests/test_setup/test_data/{grid.zarr/layer_depth_rho → grid_that_straddles_dateline.zarr/sigma_w}/.zarray +2 -6
  40. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/.zattrs +7 -0
  41. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/0 +0 -0
  42. roms_tools/tests/test_setup/test_grid.py +110 -12
  43. roms_tools/tests/test_setup/test_initial_conditions.py +2 -1
  44. roms_tools/tests/test_setup/test_river_forcing.py +3 -2
  45. roms_tools/tests/test_setup/test_surface_forcing.py +2 -22
  46. roms_tools/tests/test_setup/test_tides.py +2 -1
  47. roms_tools/tests/test_setup/test_topography.py +106 -1
  48. {roms_tools-1.7.0.dist-info → roms_tools-2.0.0.dist-info}/LICENSE +1 -1
  49. {roms_tools-1.7.0.dist-info → roms_tools-2.0.0.dist-info}/METADATA +2 -1
  50. {roms_tools-1.7.0.dist-info → roms_tools-2.0.0.dist-info}/RECORD +52 -76
  51. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_rho/.zattrs +0 -9
  52. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_rho/0.0.0 +0 -0
  53. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_u/.zattrs +0 -9
  54. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_u/0.0.0 +0 -0
  55. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_v/.zattrs +0 -9
  56. roms_tools/tests/test_setup/test_data/grid.zarr/interface_depth_v/0.0.0 +0 -0
  57. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_rho/.zattrs +0 -9
  58. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_rho/0.0.0 +0 -0
  59. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_u/.zarray +0 -24
  60. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_u/.zattrs +0 -9
  61. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_u/0.0.0 +0 -0
  62. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_v/.zarray +0 -24
  63. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_v/.zattrs +0 -9
  64. roms_tools/tests/test_setup/test_data/grid.zarr/layer_depth_v/0.0.0 +0 -0
  65. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_rho/.zarray +0 -24
  66. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_rho/.zattrs +0 -9
  67. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_rho/0.0.0 +0 -0
  68. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_u/.zarray +0 -24
  69. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_u/.zattrs +0 -9
  70. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_u/0.0.0 +0 -0
  71. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_v/.zarray +0 -24
  72. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_v/.zattrs +0 -9
  73. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/interface_depth_v/0.0.0 +0 -0
  74. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_rho/.zarray +0 -24
  75. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_rho/.zattrs +0 -9
  76. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_rho/0.0.0 +0 -0
  77. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_u/.zarray +0 -24
  78. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_u/.zattrs +0 -9
  79. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_u/0.0.0 +0 -0
  80. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_v/.zarray +0 -24
  81. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_v/.zattrs +0 -9
  82. roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/layer_depth_v/0.0.0 +0 -0
  83. roms_tools/tests/test_setup/test_vertical_coordinate.py +0 -91
  84. {roms_tools-1.7.0.dist-info → roms_tools-2.0.0.dist-info}/WHEEL +0 -0
  85. {roms_tools-1.7.0.dist-info → roms_tools-2.0.0.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,6 @@
3
3
  ".zattrs": {
4
4
  "center_lat": 0,
5
5
  "center_lon": -20,
6
- "coordinates": "interface_depth_rho interface_depth_u interface_depth_v layer_depth_rho layer_depth_u layer_depth_v",
7
6
  "hc": 300.0,
8
7
  "hmin": 5.0,
9
8
  "roms_tools_version": "0.1.dev157+dirty",
@@ -42,7 +41,7 @@
42
41
  "_ARRAY_DIMENSIONS": [
43
42
  "s_rho"
44
43
  ],
45
- "long_name": "S-coordinate stretching curves at rho-points",
44
+ "long_name": "Vertical stretching function at rho-points",
46
45
  "units": "nondimensional"
47
46
  },
48
47
  "Cs_w/.zarray": {
@@ -69,7 +68,7 @@
69
68
  "_ARRAY_DIMENSIONS": [
70
69
  "s_w"
71
70
  ],
72
- "long_name": "S-coordinate stretching curves at w-points",
71
+ "long_name": "Vertical stretching function at w-points",
73
72
  "units": "nondimensional"
74
73
  },
75
74
  "angle/.zarray": {
@@ -196,105 +195,6 @@
196
195
  "long_name": "Final bathymetry at rho-points",
197
196
  "units": "meter"
198
197
  },
199
- "interface_depth_rho/.zarray": {
200
- "chunks": [
201
- 101,
202
- 3,
203
- 3
204
- ],
205
- "compressor": {
206
- "blocksize": 0,
207
- "clevel": 5,
208
- "cname": "lz4",
209
- "id": "blosc",
210
- "shuffle": 1
211
- },
212
- "dtype": "<f4",
213
- "fill_value": "NaN",
214
- "filters": null,
215
- "order": "C",
216
- "shape": [
217
- 101,
218
- 3,
219
- 3
220
- ],
221
- "zarr_format": 2
222
- },
223
- "interface_depth_rho/.zattrs": {
224
- "_ARRAY_DIMENSIONS": [
225
- "s_w",
226
- "eta_rho",
227
- "xi_rho"
228
- ],
229
- "long_name": "Interface depth at rho-points",
230
- "units": "m"
231
- },
232
- "interface_depth_u/.zarray": {
233
- "chunks": [
234
- 101,
235
- 3,
236
- 2
237
- ],
238
- "compressor": {
239
- "blocksize": 0,
240
- "clevel": 5,
241
- "cname": "lz4",
242
- "id": "blosc",
243
- "shuffle": 1
244
- },
245
- "dtype": "<f4",
246
- "fill_value": "NaN",
247
- "filters": null,
248
- "order": "C",
249
- "shape": [
250
- 101,
251
- 3,
252
- 2
253
- ],
254
- "zarr_format": 2
255
- },
256
- "interface_depth_u/.zattrs": {
257
- "_ARRAY_DIMENSIONS": [
258
- "s_w",
259
- "eta_rho",
260
- "xi_u"
261
- ],
262
- "long_name": "Interface depth at u-points",
263
- "units": "m"
264
- },
265
- "interface_depth_v/.zarray": {
266
- "chunks": [
267
- 101,
268
- 2,
269
- 3
270
- ],
271
- "compressor": {
272
- "blocksize": 0,
273
- "clevel": 5,
274
- "cname": "lz4",
275
- "id": "blosc",
276
- "shuffle": 1
277
- },
278
- "dtype": "<f4",
279
- "fill_value": "NaN",
280
- "filters": null,
281
- "order": "C",
282
- "shape": [
283
- 101,
284
- 2,
285
- 3
286
- ],
287
- "zarr_format": 2
288
- },
289
- "interface_depth_v/.zattrs": {
290
- "_ARRAY_DIMENSIONS": [
291
- "s_w",
292
- "eta_v",
293
- "xi_rho"
294
- ],
295
- "long_name": "Interface depth at v-points",
296
- "units": "m"
297
- },
298
198
  "lat_coarse/.zarray": {
299
199
  "chunks": [
300
200
  2,
@@ -415,105 +315,6 @@
415
315
  "long_name": "latitude of v-points",
416
316
  "units": "degrees North"
417
317
  },
418
- "layer_depth_rho/.zarray": {
419
- "chunks": [
420
- 100,
421
- 3,
422
- 3
423
- ],
424
- "compressor": {
425
- "blocksize": 0,
426
- "clevel": 5,
427
- "cname": "lz4",
428
- "id": "blosc",
429
- "shuffle": 1
430
- },
431
- "dtype": "<f4",
432
- "fill_value": "NaN",
433
- "filters": null,
434
- "order": "C",
435
- "shape": [
436
- 100,
437
- 3,
438
- 3
439
- ],
440
- "zarr_format": 2
441
- },
442
- "layer_depth_rho/.zattrs": {
443
- "_ARRAY_DIMENSIONS": [
444
- "s_rho",
445
- "eta_rho",
446
- "xi_rho"
447
- ],
448
- "long_name": "Layer depth at rho-points",
449
- "units": "m"
450
- },
451
- "layer_depth_u/.zarray": {
452
- "chunks": [
453
- 100,
454
- 3,
455
- 2
456
- ],
457
- "compressor": {
458
- "blocksize": 0,
459
- "clevel": 5,
460
- "cname": "lz4",
461
- "id": "blosc",
462
- "shuffle": 1
463
- },
464
- "dtype": "<f4",
465
- "fill_value": "NaN",
466
- "filters": null,
467
- "order": "C",
468
- "shape": [
469
- 100,
470
- 3,
471
- 2
472
- ],
473
- "zarr_format": 2
474
- },
475
- "layer_depth_u/.zattrs": {
476
- "_ARRAY_DIMENSIONS": [
477
- "s_rho",
478
- "eta_rho",
479
- "xi_u"
480
- ],
481
- "long_name": "Layer depth at u-points",
482
- "units": "m"
483
- },
484
- "layer_depth_v/.zarray": {
485
- "chunks": [
486
- 100,
487
- 2,
488
- 3
489
- ],
490
- "compressor": {
491
- "blocksize": 0,
492
- "clevel": 5,
493
- "cname": "lz4",
494
- "id": "blosc",
495
- "shuffle": 1
496
- },
497
- "dtype": "<f4",
498
- "fill_value": "NaN",
499
- "filters": null,
500
- "order": "C",
501
- "shape": [
502
- 100,
503
- 2,
504
- 3
505
- ],
506
- "zarr_format": 2
507
- },
508
- "layer_depth_v/.zattrs": {
509
- "_ARRAY_DIMENSIONS": [
510
- "s_rho",
511
- "eta_v",
512
- "xi_rho"
513
- ],
514
- "long_name": "Layer depth at v-points",
515
- "units": "m"
516
- },
517
318
  "lon_coarse/.zarray": {
518
319
  "chunks": [
519
320
  2,
@@ -820,6 +621,60 @@
820
621
  "long_name": "Curvilinear coordinate metric in eta-direction",
821
622
  "units": "meter-1"
822
623
  },
624
+ "sigma_r/.zarray": {
625
+ "chunks": [
626
+ 100
627
+ ],
628
+ "compressor": {
629
+ "blocksize": 0,
630
+ "clevel": 5,
631
+ "cname": "lz4",
632
+ "id": "blosc",
633
+ "shuffle": 1
634
+ },
635
+ "dtype": "<f4",
636
+ "fill_value": "NaN",
637
+ "filters": null,
638
+ "order": "C",
639
+ "shape": [
640
+ 100
641
+ ],
642
+ "zarr_format": 2
643
+ },
644
+ "sigma_r/.zattrs": {
645
+ "_ARRAY_DIMENSIONS": [
646
+ "s_rho"
647
+ ],
648
+ "long_name": "Fractional vertical stretching coordinate at rho-points",
649
+ "units": "nondimensional"
650
+ },
651
+ "sigma_w/.zarray": {
652
+ "chunks": [
653
+ 101
654
+ ],
655
+ "compressor": {
656
+ "blocksize": 0,
657
+ "clevel": 5,
658
+ "cname": "lz4",
659
+ "id": "blosc",
660
+ "shuffle": 1
661
+ },
662
+ "dtype": "<f4",
663
+ "fill_value": "NaN",
664
+ "filters": null,
665
+ "order": "C",
666
+ "shape": [
667
+ 101
668
+ ],
669
+ "zarr_format": 2
670
+ },
671
+ "sigma_w/.zattrs": {
672
+ "_ARRAY_DIMENSIONS": [
673
+ "s_w"
674
+ ],
675
+ "long_name": "Fractional vertical stretching coordinate at w-points",
676
+ "units": "nondimensional"
677
+ },
823
678
  "spherical/.zarray": {
824
679
  "chunks": [],
825
680
  "compressor": null,
@@ -2,6 +2,6 @@
2
2
  "_ARRAY_DIMENSIONS": [
3
3
  "s_rho"
4
4
  ],
5
- "long_name": "S-coordinate stretching curves at rho-points",
5
+ "long_name": "Vertical stretching function at rho-points",
6
6
  "units": "nondimensional"
7
7
  }
@@ -2,6 +2,6 @@
2
2
  "_ARRAY_DIMENSIONS": [
3
3
  "s_w"
4
4
  ],
5
- "long_name": "S-coordinate stretching curves at w-points",
5
+ "long_name": "Vertical stretching function at w-points",
6
6
  "units": "nondimensional"
7
7
  }
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "chunks": [
3
- 101,
4
- 3,
5
- 3
3
+ 100
6
4
  ],
7
5
  "compressor": {
8
6
  "blocksize": 0,
@@ -16,9 +14,7 @@
16
14
  "filters": null,
17
15
  "order": "C",
18
16
  "shape": [
19
- 101,
20
- 3,
21
- 3
17
+ 100
22
18
  ],
23
19
  "zarr_format": 2
24
20
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "_ARRAY_DIMENSIONS": [
3
+ "s_rho"
4
+ ],
5
+ "long_name": "Fractional vertical stretching coordinate at rho-points",
6
+ "units": "nondimensional"
7
+ }
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "chunks": [
3
- 101,
4
- 3,
5
- 2
3
+ 101
6
4
  ],
7
5
  "compressor": {
8
6
  "blocksize": 0,
@@ -16,9 +14,7 @@
16
14
  "filters": null,
17
15
  "order": "C",
18
16
  "shape": [
19
- 101,
20
- 3,
21
- 2
17
+ 101
22
18
  ],
23
19
  "zarr_format": 2
24
20
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "_ARRAY_DIMENSIONS": [
3
+ "s_w"
4
+ ],
5
+ "long_name": "Fractional vertical stretching coordinate at w-points",
6
+ "units": "nondimensional"
7
+ }
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "center_lat": 0,
3
3
  "center_lon": 0,
4
- "coordinates": "interface_depth_rho interface_depth_u interface_depth_v layer_depth_rho layer_depth_u layer_depth_v",
5
4
  "hc": 300.0,
6
5
  "hmin": 5.0,
7
- "roms_tools_version": "0.1.dev157+dirty",
6
+ "roms_tools_version": "0.1.dev239+dirty",
8
7
  "rot": 20,
9
8
  "size_x": 100,
10
9
  "size_y": 100,
@@ -3,10 +3,9 @@
3
3
  ".zattrs": {
4
4
  "center_lat": 0,
5
5
  "center_lon": 0,
6
- "coordinates": "interface_depth_rho interface_depth_u interface_depth_v layer_depth_rho layer_depth_u layer_depth_v",
7
6
  "hc": 300.0,
8
7
  "hmin": 5.0,
9
- "roms_tools_version": "0.1.dev157+dirty",
8
+ "roms_tools_version": "0.1.dev239+dirty",
10
9
  "rot": 20,
11
10
  "size_x": 100,
12
11
  "size_y": 100,
@@ -42,7 +41,7 @@
42
41
  "_ARRAY_DIMENSIONS": [
43
42
  "s_rho"
44
43
  ],
45
- "long_name": "S-coordinate stretching curves at rho-points",
44
+ "long_name": "Vertical stretching function at rho-points",
46
45
  "units": "nondimensional"
47
46
  },
48
47
  "Cs_w/.zarray": {
@@ -69,7 +68,7 @@
69
68
  "_ARRAY_DIMENSIONS": [
70
69
  "s_w"
71
70
  ],
72
- "long_name": "S-coordinate stretching curves at w-points",
71
+ "long_name": "Vertical stretching function at w-points",
73
72
  "units": "nondimensional"
74
73
  },
75
74
  "angle/.zarray": {
@@ -193,108 +192,9 @@
193
192
  "xi_rho"
194
193
  ],
195
194
  "coordinates": "lat_rho lon_rho",
196
- "long_name": "Final bathymetry at rho-points",
195
+ "long_name": "Bathymetry at rho-points",
197
196
  "units": "meter"
198
197
  },
199
- "interface_depth_rho/.zarray": {
200
- "chunks": [
201
- 101,
202
- 3,
203
- 3
204
- ],
205
- "compressor": {
206
- "blocksize": 0,
207
- "clevel": 5,
208
- "cname": "lz4",
209
- "id": "blosc",
210
- "shuffle": 1
211
- },
212
- "dtype": "<f4",
213
- "fill_value": "NaN",
214
- "filters": null,
215
- "order": "C",
216
- "shape": [
217
- 101,
218
- 3,
219
- 3
220
- ],
221
- "zarr_format": 2
222
- },
223
- "interface_depth_rho/.zattrs": {
224
- "_ARRAY_DIMENSIONS": [
225
- "s_w",
226
- "eta_rho",
227
- "xi_rho"
228
- ],
229
- "long_name": "Interface depth at rho-points",
230
- "units": "m"
231
- },
232
- "interface_depth_u/.zarray": {
233
- "chunks": [
234
- 101,
235
- 3,
236
- 2
237
- ],
238
- "compressor": {
239
- "blocksize": 0,
240
- "clevel": 5,
241
- "cname": "lz4",
242
- "id": "blosc",
243
- "shuffle": 1
244
- },
245
- "dtype": "<f4",
246
- "fill_value": "NaN",
247
- "filters": null,
248
- "order": "C",
249
- "shape": [
250
- 101,
251
- 3,
252
- 2
253
- ],
254
- "zarr_format": 2
255
- },
256
- "interface_depth_u/.zattrs": {
257
- "_ARRAY_DIMENSIONS": [
258
- "s_w",
259
- "eta_rho",
260
- "xi_u"
261
- ],
262
- "long_name": "Interface depth at u-points",
263
- "units": "m"
264
- },
265
- "interface_depth_v/.zarray": {
266
- "chunks": [
267
- 101,
268
- 2,
269
- 3
270
- ],
271
- "compressor": {
272
- "blocksize": 0,
273
- "clevel": 5,
274
- "cname": "lz4",
275
- "id": "blosc",
276
- "shuffle": 1
277
- },
278
- "dtype": "<f4",
279
- "fill_value": "NaN",
280
- "filters": null,
281
- "order": "C",
282
- "shape": [
283
- 101,
284
- 2,
285
- 3
286
- ],
287
- "zarr_format": 2
288
- },
289
- "interface_depth_v/.zattrs": {
290
- "_ARRAY_DIMENSIONS": [
291
- "s_w",
292
- "eta_v",
293
- "xi_rho"
294
- ],
295
- "long_name": "Interface depth at v-points",
296
- "units": "m"
297
- },
298
198
  "lat_coarse/.zarray": {
299
199
  "chunks": [
300
200
  2,
@@ -415,105 +315,6 @@
415
315
  "long_name": "latitude of v-points",
416
316
  "units": "degrees North"
417
317
  },
418
- "layer_depth_rho/.zarray": {
419
- "chunks": [
420
- 100,
421
- 3,
422
- 3
423
- ],
424
- "compressor": {
425
- "blocksize": 0,
426
- "clevel": 5,
427
- "cname": "lz4",
428
- "id": "blosc",
429
- "shuffle": 1
430
- },
431
- "dtype": "<f4",
432
- "fill_value": "NaN",
433
- "filters": null,
434
- "order": "C",
435
- "shape": [
436
- 100,
437
- 3,
438
- 3
439
- ],
440
- "zarr_format": 2
441
- },
442
- "layer_depth_rho/.zattrs": {
443
- "_ARRAY_DIMENSIONS": [
444
- "s_rho",
445
- "eta_rho",
446
- "xi_rho"
447
- ],
448
- "long_name": "Layer depth at rho-points",
449
- "units": "m"
450
- },
451
- "layer_depth_u/.zarray": {
452
- "chunks": [
453
- 100,
454
- 3,
455
- 2
456
- ],
457
- "compressor": {
458
- "blocksize": 0,
459
- "clevel": 5,
460
- "cname": "lz4",
461
- "id": "blosc",
462
- "shuffle": 1
463
- },
464
- "dtype": "<f4",
465
- "fill_value": "NaN",
466
- "filters": null,
467
- "order": "C",
468
- "shape": [
469
- 100,
470
- 3,
471
- 2
472
- ],
473
- "zarr_format": 2
474
- },
475
- "layer_depth_u/.zattrs": {
476
- "_ARRAY_DIMENSIONS": [
477
- "s_rho",
478
- "eta_rho",
479
- "xi_u"
480
- ],
481
- "long_name": "Layer depth at u-points",
482
- "units": "m"
483
- },
484
- "layer_depth_v/.zarray": {
485
- "chunks": [
486
- 100,
487
- 2,
488
- 3
489
- ],
490
- "compressor": {
491
- "blocksize": 0,
492
- "clevel": 5,
493
- "cname": "lz4",
494
- "id": "blosc",
495
- "shuffle": 1
496
- },
497
- "dtype": "<f4",
498
- "fill_value": "NaN",
499
- "filters": null,
500
- "order": "C",
501
- "shape": [
502
- 100,
503
- 2,
504
- 3
505
- ],
506
- "zarr_format": 2
507
- },
508
- "layer_depth_v/.zattrs": {
509
- "_ARRAY_DIMENSIONS": [
510
- "s_rho",
511
- "eta_v",
512
- "xi_rho"
513
- ],
514
- "long_name": "Layer depth at v-points",
515
- "units": "m"
516
- },
517
318
  "lon_coarse/.zarray": {
518
319
  "chunks": [
519
320
  2,
@@ -820,6 +621,60 @@
820
621
  "long_name": "Curvilinear coordinate metric in eta-direction",
821
622
  "units": "meter-1"
822
623
  },
624
+ "sigma_r/.zarray": {
625
+ "chunks": [
626
+ 100
627
+ ],
628
+ "compressor": {
629
+ "blocksize": 0,
630
+ "clevel": 5,
631
+ "cname": "lz4",
632
+ "id": "blosc",
633
+ "shuffle": 1
634
+ },
635
+ "dtype": "<f4",
636
+ "fill_value": "NaN",
637
+ "filters": null,
638
+ "order": "C",
639
+ "shape": [
640
+ 100
641
+ ],
642
+ "zarr_format": 2
643
+ },
644
+ "sigma_r/.zattrs": {
645
+ "_ARRAY_DIMENSIONS": [
646
+ "s_rho"
647
+ ],
648
+ "long_name": "Fractional vertical stretching coordinate at rho-points",
649
+ "units": "nondimensional"
650
+ },
651
+ "sigma_w/.zarray": {
652
+ "chunks": [
653
+ 101
654
+ ],
655
+ "compressor": {
656
+ "blocksize": 0,
657
+ "clevel": 5,
658
+ "cname": "lz4",
659
+ "id": "blosc",
660
+ "shuffle": 1
661
+ },
662
+ "dtype": "<f4",
663
+ "fill_value": "NaN",
664
+ "filters": null,
665
+ "order": "C",
666
+ "shape": [
667
+ 101
668
+ ],
669
+ "zarr_format": 2
670
+ },
671
+ "sigma_w/.zattrs": {
672
+ "_ARRAY_DIMENSIONS": [
673
+ "s_w"
674
+ ],
675
+ "long_name": "Fractional vertical stretching coordinate at w-points",
676
+ "units": "nondimensional"
677
+ },
823
678
  "spherical/.zarray": {
824
679
  "chunks": [],
825
680
  "compressor": null,