roms-tools 3.4.0__py3-none-any.whl → 3.5.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 (111) hide show
  1. roms_tools/datasets/lat_lon_datasets.py +12 -0
  2. roms_tools/datasets/roms_dataset.py +140 -53
  3. roms_tools/datasets/utils.py +14 -2
  4. roms_tools/regrid.py +76 -0
  5. roms_tools/setup/boundary_forcing.py +2 -2
  6. roms_tools/setup/grid.py +17 -3
  7. roms_tools/setup/initial_conditions.py +314 -55
  8. roms_tools/setup/mask.py +2 -5
  9. roms_tools/setup/nesting.py +6 -3
  10. roms_tools/setup/surface_forcing.py +1 -2
  11. roms_tools/setup/tides.py +6 -5
  12. roms_tools/setup/utils.py +220 -142
  13. roms_tools/tests/test_datasets/test_roms_dataset.py +225 -21
  14. roms_tools/tests/test_regrid.py +120 -1
  15. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/c/0/0/0/0 +0 -0
  16. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/zarr.json +57 -0
  17. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
  18. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/zarr.json +57 -0
  19. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/c/0 +0 -0
  20. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/zarr.json +47 -0
  21. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/c/0 +0 -0
  22. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/zarr.json +47 -0
  23. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/c/0/0/0/0 +0 -0
  24. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/zarr.json +57 -0
  25. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
  26. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/zarr.json +57 -0
  27. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/c/0/0/0/0 +0 -0
  28. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/zarr.json +57 -0
  29. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/c/0/0/0/0 +0 -0
  30. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/zarr.json +57 -0
  31. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/c/0/0/0/0 +0 -0
  32. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/zarr.json +57 -0
  33. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/c/0/0/0/0 +0 -0
  34. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/zarr.json +57 -0
  35. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/c/0/0/0/0 +0 -0
  36. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/zarr.json +57 -0
  37. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/c/0/0/0/0 +0 -0
  38. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/zarr.json +57 -0
  39. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/c/0/0/0/0 +0 -0
  40. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/zarr.json +57 -0
  41. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/c/0/0/0/0 +0 -0
  42. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/zarr.json +57 -0
  43. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/c/0/0/0/0 +0 -0
  44. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/zarr.json +57 -0
  45. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/c/0/0/0/0 +0 -0
  46. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/zarr.json +57 -0
  47. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/c/0/0/0/0 +0 -0
  48. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/zarr.json +57 -0
  49. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/c/0/0/0/0 +0 -0
  50. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/zarr.json +57 -0
  51. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/c/0/0/0/0 +0 -0
  52. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/zarr.json +57 -0
  53. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/abs_time/zarr.json +47 -0
  54. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/c/0/0/0/0 +0 -0
  55. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/zarr.json +57 -0
  56. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/c/0/0/0/0 +0 -0
  57. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/zarr.json +57 -0
  58. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/c/0/0/0/0 +0 -0
  59. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/zarr.json +57 -0
  60. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/c/0/0/0/0 +0 -0
  61. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/zarr.json +57 -0
  62. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/c/0/0/0/0 +0 -0
  63. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/zarr.json +57 -0
  64. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/c/0/0/0/0 +0 -0
  65. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/zarr.json +57 -0
  66. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/c/0/0/0/0 +0 -0
  67. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/zarr.json +57 -0
  68. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/c/0/0/0/0 +0 -0
  69. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/zarr.json +57 -0
  70. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/c/0/0/0/0 +0 -0
  71. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/zarr.json +57 -0
  72. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/c/0 +0 -0
  73. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/zarr.json +47 -0
  74. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/c/0/0/0/0 +0 -0
  75. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/zarr.json +57 -0
  76. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/c/0/0/0/0 +0 -0
  77. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/zarr.json +57 -0
  78. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/c/0/0/0/0 +0 -0
  79. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/zarr.json +57 -0
  80. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/c/0/0/0/0 +0 -0
  81. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/zarr.json +57 -0
  82. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/c/0/0/0/0 +0 -0
  83. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/zarr.json +57 -0
  84. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/c/0/0/0/0 +0 -0
  85. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/zarr.json +57 -0
  86. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/c/0/0/0/0 +0 -0
  87. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/zarr.json +57 -0
  88. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/c/0/0/0/0 +0 -0
  89. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/zarr.json +57 -0
  90. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/c/0/0/0 +0 -0
  91. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/zarr.json +54 -0
  92. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/c/0/0/0/0 +0 -0
  93. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/zarr.json +57 -0
  94. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/c/0/0/0 +0 -0
  95. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/zarr.json +54 -0
  96. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/w/zarr.json +57 -0
  97. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zarr.json +2481 -0
  98. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/c/0/0/0 +0 -0
  99. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/zarr.json +54 -0
  100. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/c/0/0/0/0 +0 -0
  101. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/zarr.json +57 -0
  102. roms_tools/tests/test_setup/test_grid.py +24 -0
  103. roms_tools/tests/test_setup/test_initial_conditions.py +128 -11
  104. roms_tools/tests/test_setup/test_validation.py +15 -0
  105. roms_tools/tests/test_utils.py +287 -0
  106. roms_tools/utils.py +177 -72
  107. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/METADATA +2 -3
  108. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/RECORD +111 -24
  109. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/WHEEL +1 -1
  110. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/licenses/LICENSE +0 -0
  111. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved inorganic carbon, alternative CO2",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved organic carbon",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "refractory dissolved organic carbon",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved organic nitrogen",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "refractory dissolved organic nitrogen",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved organic phosphorus",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "refractory dissolved organic phosphorus",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved inorganic iron",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "iron binding ligand",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved ammonia",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "shape": [
3
+ 1,
4
+ 3,
5
+ 7,
6
+ 7
7
+ ],
8
+ "data_type": "float32",
9
+ "chunk_grid": {
10
+ "name": "regular",
11
+ "configuration": {
12
+ "chunk_shape": [
13
+ 1,
14
+ 3,
15
+ 7,
16
+ 7
17
+ ]
18
+ }
19
+ },
20
+ "chunk_key_encoding": {
21
+ "name": "default",
22
+ "configuration": {
23
+ "separator": "/"
24
+ }
25
+ },
26
+ "fill_value": 0.0,
27
+ "codecs": [
28
+ {
29
+ "name": "bytes",
30
+ "configuration": {
31
+ "endian": "little"
32
+ }
33
+ },
34
+ {
35
+ "name": "zstd",
36
+ "configuration": {
37
+ "level": 0,
38
+ "checksum": false
39
+ }
40
+ }
41
+ ],
42
+ "attributes": {
43
+ "long_name": "dissolved inorganic nitrate",
44
+ "units": "mmol/m^3",
45
+ "coordinates": "abs_time",
46
+ "_FillValue": "AAAAAAAA+H8="
47
+ },
48
+ "dimension_names": [
49
+ "ocean_time",
50
+ "s_rho",
51
+ "eta_rho",
52
+ "xi_rho"
53
+ ],
54
+ "zarr_format": 3,
55
+ "node_type": "array",
56
+ "storage_transformers": []
57
+ }