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,6 +1,6 @@
1
1
  {
2
2
  "chunks": [
3
- 1
3
+ 2
4
4
  ],
5
5
  "compressor": {
6
6
  "blocksize": 0,
@@ -14,7 +14,7 @@
14
14
  "filters": null,
15
15
  "order": "C",
16
16
  "shape": [
17
- 1
17
+ 2
18
18
  ],
19
19
  "zarr_format": 2
20
20
  }
@@ -3,5 +3,6 @@
3
3
  "bry_time"
4
4
  ],
5
5
  "calendar": "gregorian",
6
- "units": "seconds since 1970-01-01"
6
+ "long_name": "absolute time",
7
+ "units": "hours since 1950-01-01"
7
8
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "chunks": [
3
- 1
3
+ 2
4
4
  ],
5
5
  "compressor": {
6
6
  "blocksize": 0,
@@ -14,7 +14,7 @@
14
14
  "filters": null,
15
15
  "order": "C",
16
16
  "shape": [
17
- 1
17
+ 2
18
18
  ],
19
19
  "zarr_format": 2
20
20
  }
@@ -2,6 +2,6 @@
2
2
  "_ARRAY_DIMENSIONS": [
3
3
  "bry_time"
4
4
  ],
5
- "long_name": "days since 2000-01-01 00:00:00",
5
+ "long_name": "relative time: days since 2000-01-01 00:00:00",
6
6
  "units": "days"
7
7
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 3
5
+ 4
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 3
21
+ 4
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 3
5
+ 4
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 3
21
+ 4
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 4
3
+ 2,
4
+ 5
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 4
18
+ 2,
19
+ 5
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 3
3
+ 2,
4
+ 4
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 3
18
+ 2,
19
+ 4
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 3
3
+ 2,
4
+ 4
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 3
18
+ 2,
19
+ 4
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 4
3
+ 2,
4
+ 5
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 4
18
+ 2,
19
+ 5
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 3
5
+ 4
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 3
21
+ 4
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 4
5
+ 5
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 4
21
+ 5
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
3
+ 2,
4
4
  3,
5
- 3
5
+ 4
6
6
  ],
7
7
  "compressor": {
8
8
  "blocksize": 0,
@@ -16,9 +16,9 @@
16
16
  "filters": null,
17
17
  "order": "C",
18
18
  "shape": [
19
- 1,
19
+ 2,
20
20
  3,
21
- 3
21
+ 4
22
22
  ],
23
23
  "zarr_format": 2
24
24
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 3
3
+ 2,
4
+ 4
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 3
18
+ 2,
19
+ 4
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 4
3
+ 2,
4
+ 5
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 4
18
+ 2,
19
+ 5
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 4
3
+ 2,
4
+ 5
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 4
18
+ 2,
19
+ 5
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "chunks": [
3
- 1,
4
- 3
3
+ 2,
4
+ 4
5
5
  ],
6
6
  "compressor": {
7
7
  "blocksize": 0,
@@ -15,8 +15,8 @@
15
15
  "filters": null,
16
16
  "order": "C",
17
17
  "shape": [
18
- 1,
19
- 3
18
+ 2,
19
+ 4
20
20
  ],
21
21
  "zarr_format": 2
22
22
  }