roms-tools 2.6.0__py3-none-any.whl → 2.6.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 (613) hide show
  1. roms_tools/analysis/roms_output.py +218 -10
  2. roms_tools/analysis/utils.py +41 -9
  3. roms_tools/download.py +1 -0
  4. roms_tools/regrid.py +9 -2
  5. roms_tools/setup/boundary_forcing.py +92 -70
  6. roms_tools/setup/datasets.py +232 -272
  7. roms_tools/setup/initial_conditions.py +70 -34
  8. roms_tools/setup/river_forcing.py +20 -14
  9. roms_tools/setup/surface_forcing.py +19 -3
  10. roms_tools/setup/utils.py +221 -40
  11. roms_tools/tests/test_analysis/test_roms_output.py +55 -0
  12. roms_tools/tests/test_setup/test_boundary_forcing.py +119 -36
  13. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/.zattrs +14 -0
  14. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/.zgroup +3 -0
  15. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/.zmetadata +4456 -0
  16. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/.zarray +24 -0
  17. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/.zattrs +10 -0
  18. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/0.0.0 +0 -0
  19. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/.zarray +24 -0
  20. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/.zattrs +10 -0
  21. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/0.0.0 +0 -0
  22. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/.zarray +24 -0
  23. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/.zattrs +10 -0
  24. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/0.0.0 +0 -0
  25. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/.zarray +24 -0
  26. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/.zattrs +10 -0
  27. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/0.0.0 +0 -0
  28. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/.zarray +24 -0
  29. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/.zattrs +10 -0
  30. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/0.0.0 +0 -0
  31. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/.zarray +24 -0
  32. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/.zattrs +10 -0
  33. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/0.0.0 +0 -0
  34. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/.zarray +24 -0
  35. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/.zattrs +10 -0
  36. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/0.0.0 +0 -0
  37. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/.zarray +24 -0
  38. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/.zattrs +10 -0
  39. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/0.0.0 +0 -0
  40. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/.zarray +24 -0
  41. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/.zattrs +10 -0
  42. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/0.0.0 +0 -0
  43. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/.zarray +24 -0
  44. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/.zattrs +10 -0
  45. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/0.0.0 +0 -0
  46. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/.zarray +24 -0
  47. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/.zattrs +10 -0
  48. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/0.0.0 +0 -0
  49. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/.zarray +24 -0
  50. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/.zattrs +10 -0
  51. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/0.0.0 +0 -0
  52. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/.zarray +24 -0
  53. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/.zattrs +10 -0
  54. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/0.0.0 +0 -0
  55. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/.zarray +24 -0
  56. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/.zattrs +10 -0
  57. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/0.0.0 +0 -0
  58. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/.zarray +24 -0
  59. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/.zattrs +10 -0
  60. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/0.0.0 +0 -0
  61. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/.zarray +24 -0
  62. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/.zattrs +10 -0
  63. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/0.0.0 +0 -0
  64. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/.zarray +24 -0
  65. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/.zattrs +10 -0
  66. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/0.0.0 +0 -0
  67. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/.zarray +24 -0
  68. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/.zattrs +10 -0
  69. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/0.0.0 +0 -0
  70. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/.zarray +24 -0
  71. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/.zattrs +10 -0
  72. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/0.0.0 +0 -0
  73. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/.zarray +24 -0
  74. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/.zattrs +10 -0
  75. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/0.0.0 +0 -0
  76. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_east/.zarray +24 -0
  77. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_east/.zattrs +10 -0
  78. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_east/0.0.0 +0 -0
  79. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_north/.zarray +24 -0
  80. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_north/.zattrs +10 -0
  81. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_north/0.0.0 +0 -0
  82. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_south/.zarray +24 -0
  83. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_south/.zattrs +10 -0
  84. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_south/0.0.0 +0 -0
  85. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/.zarray +24 -0
  86. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/.zattrs +10 -0
  87. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/0.0.0 +0 -0
  88. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_east/.zarray +24 -0
  89. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_east/.zattrs +10 -0
  90. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_east/0.0.0 +0 -0
  91. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_north/.zarray +24 -0
  92. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_north/.zattrs +10 -0
  93. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_north/0.0.0 +0 -0
  94. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_south/.zarray +24 -0
  95. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_south/.zattrs +10 -0
  96. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_south/0.0.0 +0 -0
  97. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/.zarray +24 -0
  98. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/.zattrs +10 -0
  99. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/0.0.0 +0 -0
  100. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_east/.zarray +24 -0
  101. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_east/.zattrs +10 -0
  102. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_east/0.0.0 +0 -0
  103. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_north/.zarray +24 -0
  104. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_north/.zattrs +10 -0
  105. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_north/0.0.0 +0 -0
  106. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_south/.zarray +24 -0
  107. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_south/.zattrs +10 -0
  108. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_south/0.0.0 +0 -0
  109. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/.zarray +24 -0
  110. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/.zattrs +10 -0
  111. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/0.0.0 +0 -0
  112. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_east/.zarray +24 -0
  113. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_east/.zattrs +10 -0
  114. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_east/0.0.0 +0 -0
  115. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_north/.zarray +24 -0
  116. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_north/.zattrs +10 -0
  117. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_north/0.0.0 +0 -0
  118. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_south/.zarray +24 -0
  119. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_south/.zattrs +10 -0
  120. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_south/0.0.0 +0 -0
  121. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/.zarray +24 -0
  122. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/.zattrs +10 -0
  123. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/0.0.0 +0 -0
  124. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_east/.zarray +24 -0
  125. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_east/.zattrs +10 -0
  126. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_east/0.0.0 +0 -0
  127. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_north/.zarray +24 -0
  128. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_north/.zattrs +10 -0
  129. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_north/0.0.0 +0 -0
  130. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_south/.zarray +24 -0
  131. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_south/.zattrs +10 -0
  132. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_south/0.0.0 +0 -0
  133. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/.zarray +24 -0
  134. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/.zattrs +10 -0
  135. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/0.0.0 +0 -0
  136. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/.zarray +24 -0
  137. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/.zattrs +10 -0
  138. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/0.0.0 +0 -0
  139. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/.zarray +24 -0
  140. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/.zattrs +10 -0
  141. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/0.0.0 +0 -0
  142. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/.zarray +24 -0
  143. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/.zattrs +10 -0
  144. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/0.0.0 +0 -0
  145. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/.zarray +24 -0
  146. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/.zattrs +10 -0
  147. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/0.0.0 +0 -0
  148. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/.zarray +24 -0
  149. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/.zattrs +10 -0
  150. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/0.0.0 +0 -0
  151. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/.zarray +24 -0
  152. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/.zattrs +10 -0
  153. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/0.0.0 +0 -0
  154. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/.zarray +24 -0
  155. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/.zattrs +10 -0
  156. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/0.0.0 +0 -0
  157. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/.zarray +24 -0
  158. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/.zattrs +10 -0
  159. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/0.0.0 +0 -0
  160. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_east/.zarray +24 -0
  161. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_east/.zattrs +10 -0
  162. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_east/0.0.0 +0 -0
  163. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_north/.zarray +24 -0
  164. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_north/.zattrs +10 -0
  165. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_north/0.0.0 +0 -0
  166. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_south/.zarray +24 -0
  167. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_south/.zattrs +10 -0
  168. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_south/0.0.0 +0 -0
  169. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/.zarray +24 -0
  170. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/.zattrs +10 -0
  171. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/0.0.0 +0 -0
  172. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/.zarray +24 -0
  173. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/.zattrs +10 -0
  174. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/0.0.0 +0 -0
  175. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/.zarray +24 -0
  176. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/.zattrs +10 -0
  177. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/0.0.0 +0 -0
  178. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/.zarray +24 -0
  179. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/.zattrs +10 -0
  180. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/0.0.0 +0 -0
  181. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/.zarray +24 -0
  182. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/.zattrs +10 -0
  183. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/0.0.0 +0 -0
  184. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/.zarray +24 -0
  185. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/.zattrs +10 -0
  186. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/0.0.0 +0 -0
  187. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/.zarray +24 -0
  188. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/.zattrs +10 -0
  189. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/0.0.0 +0 -0
  190. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/.zarray +24 -0
  191. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/.zattrs +10 -0
  192. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/0.0.0 +0 -0
  193. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/.zarray +24 -0
  194. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/.zattrs +10 -0
  195. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/0.0.0 +0 -0
  196. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/.zarray +24 -0
  197. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/.zattrs +10 -0
  198. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/0.0.0 +0 -0
  199. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/.zarray +24 -0
  200. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/.zattrs +10 -0
  201. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/0.0.0 +0 -0
  202. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/.zarray +24 -0
  203. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/.zattrs +10 -0
  204. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/0.0.0 +0 -0
  205. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/.zarray +24 -0
  206. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/.zattrs +10 -0
  207. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/0.0.0 +0 -0
  208. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/.zarray +24 -0
  209. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/.zattrs +10 -0
  210. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/0.0.0 +0 -0
  211. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/.zarray +24 -0
  212. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/.zattrs +10 -0
  213. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/0.0.0 +0 -0
  214. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/.zarray +24 -0
  215. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/.zattrs +10 -0
  216. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/0.0.0 +0 -0
  217. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/.zarray +24 -0
  218. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/.zattrs +10 -0
  219. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/0.0.0 +0 -0
  220. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/abs_time/.zarray +20 -0
  221. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/abs_time/.zattrs +8 -0
  222. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/abs_time/0 +0 -0
  223. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/bry_time/.zarray +20 -0
  224. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/bry_time/.zattrs +8 -0
  225. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/bry_time/0 +0 -0
  226. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_east/.zarray +24 -0
  227. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_east/.zattrs +10 -0
  228. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_east/0.0.0 +0 -0
  229. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_north/.zarray +24 -0
  230. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_north/.zattrs +10 -0
  231. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_north/0.0.0 +0 -0
  232. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/.zarray +24 -0
  233. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/.zattrs +10 -0
  234. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/0.0.0 +0 -0
  235. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/.zarray +24 -0
  236. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/.zattrs +10 -0
  237. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/0.0.0 +0 -0
  238. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/.zarray +24 -0
  239. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/.zattrs +10 -0
  240. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/0.0.0 +0 -0
  241. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/.zarray +24 -0
  242. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/.zattrs +10 -0
  243. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/0.0.0 +0 -0
  244. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/.zarray +24 -0
  245. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/.zattrs +10 -0
  246. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/0.0.0 +0 -0
  247. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/.zarray +24 -0
  248. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/.zattrs +10 -0
  249. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/0.0.0 +0 -0
  250. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/.zarray +24 -0
  251. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/.zattrs +10 -0
  252. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/0.0.0 +0 -0
  253. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/.zarray +24 -0
  254. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/.zattrs +10 -0
  255. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/0.0.0 +0 -0
  256. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/.zarray +24 -0
  257. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/.zattrs +10 -0
  258. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/0.0.0 +0 -0
  259. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/.zarray +24 -0
  260. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/.zattrs +10 -0
  261. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/0.0.0 +0 -0
  262. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/.zarray +24 -0
  263. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/.zattrs +10 -0
  264. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/0.0.0 +0 -0
  265. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/.zarray +24 -0
  266. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/.zattrs +10 -0
  267. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/0.0.0 +0 -0
  268. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/.zarray +24 -0
  269. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/.zattrs +10 -0
  270. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/0.0.0 +0 -0
  271. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/.zarray +24 -0
  272. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/.zattrs +10 -0
  273. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/0.0.0 +0 -0
  274. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/.zarray +24 -0
  275. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/.zattrs +10 -0
  276. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/0.0.0 +0 -0
  277. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/.zarray +24 -0
  278. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/.zattrs +10 -0
  279. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/0.0.0 +0 -0
  280. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/.zarray +24 -0
  281. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/.zattrs +10 -0
  282. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/0.0.0 +0 -0
  283. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/.zarray +24 -0
  284. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/.zattrs +10 -0
  285. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/0.0.0 +0 -0
  286. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/.zarray +24 -0
  287. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/.zattrs +10 -0
  288. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/0.0.0 +0 -0
  289. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/.zarray +24 -0
  290. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/.zattrs +10 -0
  291. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/0.0.0 +0 -0
  292. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/.zarray +24 -0
  293. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/.zattrs +10 -0
  294. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/0.0.0 +0 -0
  295. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/.zarray +24 -0
  296. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/.zattrs +10 -0
  297. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/0.0.0 +0 -0
  298. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/.zarray +24 -0
  299. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/.zattrs +10 -0
  300. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/0.0.0 +0 -0
  301. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/.zarray +24 -0
  302. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/.zattrs +10 -0
  303. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/0.0.0 +0 -0
  304. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/.zarray +24 -0
  305. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/.zattrs +10 -0
  306. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/0.0.0 +0 -0
  307. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/.zarray +24 -0
  308. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/.zattrs +10 -0
  309. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/0.0.0 +0 -0
  310. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/.zarray +24 -0
  311. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/.zattrs +10 -0
  312. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/0.0.0 +0 -0
  313. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/.zarray +24 -0
  314. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/.zattrs +10 -0
  315. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/0.0.0 +0 -0
  316. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/.zarray +24 -0
  317. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/.zattrs +10 -0
  318. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/0.0.0 +0 -0
  319. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/.zarray +24 -0
  320. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/.zattrs +10 -0
  321. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/0.0.0 +0 -0
  322. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/.zarray +24 -0
  323. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/.zattrs +10 -0
  324. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/0.0.0 +0 -0
  325. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/.zarray +24 -0
  326. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/.zattrs +10 -0
  327. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/0.0.0 +0 -0
  328. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/.zarray +24 -0
  329. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/.zattrs +10 -0
  330. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/0.0.0 +0 -0
  331. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/.zarray +24 -0
  332. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/.zattrs +10 -0
  333. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/0.0.0 +0 -0
  334. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/month/.zarray +20 -0
  335. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/month/.zattrs +6 -0
  336. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/month/0 +0 -0
  337. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_east/.zarray +24 -0
  338. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_east/.zattrs +10 -0
  339. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_east/0.0.0 +0 -0
  340. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_north/.zarray +24 -0
  341. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_north/.zattrs +10 -0
  342. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_north/0.0.0 +0 -0
  343. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/.zarray +24 -0
  344. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/.zattrs +10 -0
  345. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/0.0.0 +0 -0
  346. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/.zarray +24 -0
  347. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/.zattrs +10 -0
  348. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/0.0.0 +0 -0
  349. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/.zarray +24 -0
  350. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/.zattrs +10 -0
  351. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/0.0.0 +0 -0
  352. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/.zarray +24 -0
  353. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/.zattrs +10 -0
  354. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/0.0.0 +0 -0
  355. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/.zarray +24 -0
  356. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/.zattrs +10 -0
  357. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/0.0.0 +0 -0
  358. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/.zarray +24 -0
  359. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/.zattrs +10 -0
  360. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/0.0.0 +0 -0
  361. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/.zarray +24 -0
  362. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/.zattrs +10 -0
  363. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/0.0.0 +0 -0
  364. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/.zarray +24 -0
  365. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/.zattrs +10 -0
  366. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/0.0.0 +0 -0
  367. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/.zarray +24 -0
  368. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/.zattrs +10 -0
  369. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/0.0.0 +0 -0
  370. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/.zarray +24 -0
  371. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/.zattrs +10 -0
  372. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/0.0.0 +0 -0
  373. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/.zarray +24 -0
  374. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/.zattrs +10 -0
  375. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/0.0.0 +0 -0
  376. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/.zarray +24 -0
  377. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/.zattrs +10 -0
  378. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/0.0.0 +0 -0
  379. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/.zarray +24 -0
  380. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/.zattrs +10 -0
  381. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/0.0.0 +0 -0
  382. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/.zarray +24 -0
  383. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/.zattrs +10 -0
  384. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/0.0.0 +0 -0
  385. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/.zarray +24 -0
  386. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/.zattrs +10 -0
  387. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/0.0.0 +0 -0
  388. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/.zarray +24 -0
  389. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/.zattrs +10 -0
  390. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/0.0.0 +0 -0
  391. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/.zarray +24 -0
  392. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/.zattrs +10 -0
  393. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/0.0.0 +0 -0
  394. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/.zarray +24 -0
  395. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/.zattrs +10 -0
  396. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/0.0.0 +0 -0
  397. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/.zarray +24 -0
  398. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/.zattrs +10 -0
  399. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/0.0.0 +0 -0
  400. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/.zarray +24 -0
  401. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/.zattrs +10 -0
  402. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/0.0.0 +0 -0
  403. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/.zarray +24 -0
  404. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/.zattrs +10 -0
  405. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/0.0.0 +0 -0
  406. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/.zarray +24 -0
  407. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/.zattrs +10 -0
  408. roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/0.0.0 +0 -0
  409. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/.zattrs +12 -0
  410. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/.zgroup +3 -0
  411. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/.zmetadata +424 -0
  412. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/abs_time/.zarray +20 -0
  413. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/abs_time/.zattrs +8 -0
  414. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/abs_time/0 +0 -0
  415. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust/.zarray +24 -0
  416. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust/.zattrs +12 -0
  417. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust/0.0.0 +0 -0
  418. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust_time/.zarray +20 -0
  419. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust_time/.zattrs +8 -0
  420. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust_time/0 +0 -0
  421. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron/.zarray +24 -0
  422. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron/.zattrs +12 -0
  423. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron/0.0.0 +0 -0
  424. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron_time/.zarray +20 -0
  425. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron_time/.zattrs +8 -0
  426. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron_time/0 +0 -0
  427. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/month/.zarray +20 -0
  428. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/month/.zattrs +6 -0
  429. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/month/0 +0 -0
  430. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy/.zarray +24 -0
  431. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy/.zattrs +10 -0
  432. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy/0.0.0 +0 -0
  433. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy_time/.zarray +20 -0
  434. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy_time/.zattrs +8 -0
  435. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nhy_time/0 +0 -0
  436. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox/.zarray +24 -0
  437. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox/.zattrs +10 -0
  438. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox/0.0.0 +0 -0
  439. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox_time/.zarray +20 -0
  440. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox_time/.zattrs +8 -0
  441. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox_time/0 +0 -0
  442. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air/.zarray +24 -0
  443. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air/.zattrs +12 -0
  444. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air/0.0.0 +0 -0
  445. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air_alt/.zarray +24 -0
  446. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air_alt/.zattrs +10 -0
  447. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air_alt/0.0.0 +0 -0
  448. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_time/.zarray +20 -0
  449. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_time/.zattrs +8 -0
  450. roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_time/0 +0 -0
  451. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/.zattrs +12 -0
  452. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/.zgroup +3 -0
  453. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/.zmetadata +1600 -0
  454. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK/.zarray +26 -0
  455. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK/.zattrs +11 -0
  456. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK/0.0.0.0 +0 -0
  457. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK_ALT_CO2/.zarray +26 -0
  458. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK_ALT_CO2/.zattrs +11 -0
  459. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK_ALT_CO2/0.0.0.0 +0 -0
  460. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_r/.zarray +20 -0
  461. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_r/.zattrs +7 -0
  462. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_r/0 +0 -0
  463. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_w/.zarray +20 -0
  464. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_w/.zattrs +7 -0
  465. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Cs_w/0 +0 -0
  466. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC/.zarray +26 -0
  467. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC/.zattrs +11 -0
  468. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC/0.0.0.0 +0 -0
  469. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC_ALT_CO2/.zarray +26 -0
  470. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC_ALT_CO2/.zattrs +11 -0
  471. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC_ALT_CO2/0.0.0.0 +0 -0
  472. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOC/.zarray +26 -0
  473. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOC/.zattrs +11 -0
  474. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOC/0.0.0.0 +0 -0
  475. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOCr/.zarray +26 -0
  476. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOCr/.zattrs +11 -0
  477. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOCr/0.0.0.0 +0 -0
  478. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DON/.zarray +26 -0
  479. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DON/.zattrs +11 -0
  480. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DON/0.0.0.0 +0 -0
  481. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DONr/.zarray +26 -0
  482. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DONr/.zattrs +11 -0
  483. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DONr/0.0.0.0 +0 -0
  484. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOP/.zarray +26 -0
  485. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOP/.zattrs +11 -0
  486. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOP/0.0.0.0 +0 -0
  487. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOPr/.zarray +26 -0
  488. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOPr/.zattrs +11 -0
  489. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOPr/0.0.0.0 +0 -0
  490. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Fe/.zarray +26 -0
  491. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Fe/.zattrs +11 -0
  492. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Fe/0.0.0.0 +0 -0
  493. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Lig/.zarray +26 -0
  494. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Lig/.zattrs +11 -0
  495. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Lig/0.0.0.0 +0 -0
  496. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NH4/.zarray +26 -0
  497. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NH4/.zattrs +11 -0
  498. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NH4/0.0.0.0 +0 -0
  499. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NO3/.zarray +26 -0
  500. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NO3/.zattrs +11 -0
  501. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NO3/0.0.0.0 +0 -0
  502. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/O2/.zarray +26 -0
  503. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/O2/.zattrs +11 -0
  504. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/O2/0.0.0.0 +0 -0
  505. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/PO4/.zarray +26 -0
  506. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/PO4/.zattrs +11 -0
  507. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/PO4/0.0.0.0 +0 -0
  508. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/SiO3/.zarray +26 -0
  509. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/SiO3/.zattrs +11 -0
  510. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/SiO3/0.0.0.0 +0 -0
  511. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/abs_time/.zarray +20 -0
  512. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/abs_time/.zattrs +8 -0
  513. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/abs_time/0 +0 -0
  514. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatC/.zarray +26 -0
  515. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatC/.zattrs +11 -0
  516. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatC/0.0.0.0 +0 -0
  517. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatChl/.zarray +26 -0
  518. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatChl/.zattrs +11 -0
  519. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatChl/0.0.0.0 +0 -0
  520. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatFe/.zarray +26 -0
  521. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatFe/.zattrs +11 -0
  522. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatFe/0.0.0.0 +0 -0
  523. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatP/.zarray +26 -0
  524. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatP/.zattrs +11 -0
  525. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatP/0.0.0.0 +0 -0
  526. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatSi/.zarray +26 -0
  527. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatSi/.zattrs +11 -0
  528. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatSi/0.0.0.0 +0 -0
  529. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazC/.zarray +26 -0
  530. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazC/.zattrs +11 -0
  531. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazC/0.0.0.0 +0 -0
  532. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazChl/.zarray +26 -0
  533. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazChl/.zattrs +11 -0
  534. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazChl/0.0.0.0 +0 -0
  535. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazFe/.zarray +26 -0
  536. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazFe/.zattrs +11 -0
  537. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazFe/0.0.0.0 +0 -0
  538. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazP/.zarray +26 -0
  539. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazP/.zattrs +11 -0
  540. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazP/0.0.0.0 +0 -0
  541. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ocean_time/.zarray +20 -0
  542. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ocean_time/.zattrs +7 -0
  543. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ocean_time/0 +0 -0
  544. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/salt/.zarray +26 -0
  545. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/salt/.zattrs +11 -0
  546. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/salt/0.0.0.0 +0 -0
  547. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spC/.zarray +26 -0
  548. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spC/.zattrs +11 -0
  549. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spC/0.0.0.0 +0 -0
  550. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spCaCO3/.zarray +26 -0
  551. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spCaCO3/.zattrs +11 -0
  552. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spCaCO3/0.0.0.0 +0 -0
  553. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spChl/.zarray +26 -0
  554. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spChl/.zattrs +11 -0
  555. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spChl/0.0.0.0 +0 -0
  556. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spFe/.zarray +26 -0
  557. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spFe/.zattrs +11 -0
  558. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spFe/0.0.0.0 +0 -0
  559. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spP/.zarray +26 -0
  560. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spP/.zattrs +11 -0
  561. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spP/0.0.0.0 +0 -0
  562. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/temp/.zarray +26 -0
  563. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/temp/.zattrs +11 -0
  564. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/temp/0.0.0.0 +0 -0
  565. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/u/.zarray +26 -0
  566. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/u/.zattrs +11 -0
  567. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/u/0.0.0.0 +0 -0
  568. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ubar/.zarray +24 -0
  569. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ubar/.zattrs +10 -0
  570. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ubar/0.0.0 +0 -0
  571. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/v/.zarray +26 -0
  572. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/v/.zattrs +11 -0
  573. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/v/0.0.0.0 +0 -0
  574. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/vbar/.zarray +24 -0
  575. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/vbar/.zattrs +10 -0
  576. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/vbar/0.0.0 +0 -0
  577. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/w/.zarray +26 -0
  578. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/w/.zattrs +11 -0
  579. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/w/0.0.0.0 +0 -0
  580. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zeta/.zarray +24 -0
  581. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zeta/.zattrs +10 -0
  582. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zeta/0.0.0 +0 -0
  583. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zooC/.zarray +26 -0
  584. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zooC/.zattrs +11 -0
  585. roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zooC/0.0.0.0 +0 -0
  586. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zmetadata +33 -3
  587. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/{river_location → river_fraction}/.zattrs +1 -1
  588. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/0.0 +0 -0
  589. roms_tools/tests/test_setup/test_data/{river_forcing_with_bgc.zarr/river_location → river_forcing_no_climatology.zarr/river_index}/.zattrs +1 -1
  590. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/0.0 +0 -0
  591. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/.zmetadata +33 -3
  592. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_fraction/.zarray +22 -0
  593. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_fraction/.zattrs +8 -0
  594. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_fraction/0.0 +0 -0
  595. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_index/.zarray +22 -0
  596. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_index/.zattrs +8 -0
  597. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_index/0.0 +0 -0
  598. roms_tools/tests/test_setup/test_datasets.py +2 -0
  599. roms_tools/tests/test_setup/test_initial_conditions.py +112 -25
  600. roms_tools/tests/test_setup/test_river_forcing.py +4 -3
  601. roms_tools/tests/test_setup/test_surface_forcing.py +67 -41
  602. roms_tools/tests/test_setup/test_validation.py +6 -0
  603. roms_tools/tests/test_vertical_coordinate.py +73 -0
  604. roms_tools/vertical_coordinate.py +6 -0
  605. {roms_tools-2.6.0.dist-info → roms_tools-2.6.2.dist-info}/METADATA +1 -3
  606. {roms_tools-2.6.0.dist-info → roms_tools-2.6.2.dist-info}/RECORD +611 -31
  607. roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_location/0.0 +0 -0
  608. roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_location/0.0 +0 -0
  609. /roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/{river_location → river_fraction}/.zarray +0 -0
  610. /roms_tools/tests/test_setup/test_data/{river_forcing_with_bgc.zarr/river_location → river_forcing_no_climatology.zarr/river_index}/.zarray +0 -0
  611. {roms_tools-2.6.0.dist-info → roms_tools-2.6.2.dist-info}/WHEEL +0 -0
  612. {roms_tools-2.6.0.dist-info → roms_tools-2.6.2.dist-info}/licenses/LICENSE +0 -0
  613. {roms_tools-2.6.0.dist-info → roms_tools-2.6.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,4456 @@
1
+ {
2
+ "metadata": {
3
+ ".zattrs": {
4
+ "adjust_depth_for_sea_surface_height": "False",
5
+ "apply_2d_horizontal_fill": "True",
6
+ "climatology": "True",
7
+ "end_time": "2021-06-30 00:00:00",
8
+ "hc": 250.0,
9
+ "model_reference_date": "2000-01-01 00:00:00",
10
+ "roms_tools_version": "0.1.dev177",
11
+ "source": "UNIFIED",
12
+ "start_time": "2021-06-29 00:00:00",
13
+ "theta_b": 2.0,
14
+ "theta_s": 5.0,
15
+ "title": "ROMS boundary forcing file created by ROMS-Tools"
16
+ },
17
+ ".zgroup": {
18
+ "zarr_format": 2
19
+ },
20
+ "ALK_ALT_CO2_east/.zarray": {
21
+ "chunks": [
22
+ 12,
23
+ 3,
24
+ 4
25
+ ],
26
+ "compressor": {
27
+ "blocksize": 0,
28
+ "clevel": 5,
29
+ "cname": "lz4",
30
+ "id": "blosc",
31
+ "shuffle": 1
32
+ },
33
+ "dtype": "<f4",
34
+ "fill_value": "NaN",
35
+ "filters": null,
36
+ "order": "C",
37
+ "shape": [
38
+ 12,
39
+ 3,
40
+ 4
41
+ ],
42
+ "zarr_format": 2
43
+ },
44
+ "ALK_ALT_CO2_east/.zattrs": {
45
+ "_ARRAY_DIMENSIONS": [
46
+ "bry_time",
47
+ "s_rho",
48
+ "eta_rho"
49
+ ],
50
+ "coordinates": "abs_time month",
51
+ "long_name": "eastern boundary alkalinity, alternative CO2",
52
+ "units": "meq/m^3"
53
+ },
54
+ "ALK_ALT_CO2_north/.zarray": {
55
+ "chunks": [
56
+ 12,
57
+ 3,
58
+ 4
59
+ ],
60
+ "compressor": {
61
+ "blocksize": 0,
62
+ "clevel": 5,
63
+ "cname": "lz4",
64
+ "id": "blosc",
65
+ "shuffle": 1
66
+ },
67
+ "dtype": "<f4",
68
+ "fill_value": "NaN",
69
+ "filters": null,
70
+ "order": "C",
71
+ "shape": [
72
+ 12,
73
+ 3,
74
+ 4
75
+ ],
76
+ "zarr_format": 2
77
+ },
78
+ "ALK_ALT_CO2_north/.zattrs": {
79
+ "_ARRAY_DIMENSIONS": [
80
+ "bry_time",
81
+ "s_rho",
82
+ "xi_rho"
83
+ ],
84
+ "coordinates": "abs_time month",
85
+ "long_name": "northern boundary alkalinity, alternative CO2",
86
+ "units": "meq/m^3"
87
+ },
88
+ "ALK_ALT_CO2_south/.zarray": {
89
+ "chunks": [
90
+ 12,
91
+ 3,
92
+ 4
93
+ ],
94
+ "compressor": {
95
+ "blocksize": 0,
96
+ "clevel": 5,
97
+ "cname": "lz4",
98
+ "id": "blosc",
99
+ "shuffle": 1
100
+ },
101
+ "dtype": "<f4",
102
+ "fill_value": "NaN",
103
+ "filters": null,
104
+ "order": "C",
105
+ "shape": [
106
+ 12,
107
+ 3,
108
+ 4
109
+ ],
110
+ "zarr_format": 2
111
+ },
112
+ "ALK_ALT_CO2_south/.zattrs": {
113
+ "_ARRAY_DIMENSIONS": [
114
+ "bry_time",
115
+ "s_rho",
116
+ "xi_rho"
117
+ ],
118
+ "coordinates": "abs_time month",
119
+ "long_name": "southern boundary alkalinity, alternative CO2",
120
+ "units": "meq/m^3"
121
+ },
122
+ "ALK_ALT_CO2_west/.zarray": {
123
+ "chunks": [
124
+ 12,
125
+ 3,
126
+ 4
127
+ ],
128
+ "compressor": {
129
+ "blocksize": 0,
130
+ "clevel": 5,
131
+ "cname": "lz4",
132
+ "id": "blosc",
133
+ "shuffle": 1
134
+ },
135
+ "dtype": "<f4",
136
+ "fill_value": "NaN",
137
+ "filters": null,
138
+ "order": "C",
139
+ "shape": [
140
+ 12,
141
+ 3,
142
+ 4
143
+ ],
144
+ "zarr_format": 2
145
+ },
146
+ "ALK_ALT_CO2_west/.zattrs": {
147
+ "_ARRAY_DIMENSIONS": [
148
+ "bry_time",
149
+ "s_rho",
150
+ "eta_rho"
151
+ ],
152
+ "coordinates": "abs_time month",
153
+ "long_name": "western boundary alkalinity, alternative CO2",
154
+ "units": "meq/m^3"
155
+ },
156
+ "ALK_east/.zarray": {
157
+ "chunks": [
158
+ 12,
159
+ 3,
160
+ 4
161
+ ],
162
+ "compressor": {
163
+ "blocksize": 0,
164
+ "clevel": 5,
165
+ "cname": "lz4",
166
+ "id": "blosc",
167
+ "shuffle": 1
168
+ },
169
+ "dtype": "<f4",
170
+ "fill_value": "NaN",
171
+ "filters": null,
172
+ "order": "C",
173
+ "shape": [
174
+ 12,
175
+ 3,
176
+ 4
177
+ ],
178
+ "zarr_format": 2
179
+ },
180
+ "ALK_east/.zattrs": {
181
+ "_ARRAY_DIMENSIONS": [
182
+ "bry_time",
183
+ "s_rho",
184
+ "eta_rho"
185
+ ],
186
+ "coordinates": "abs_time month",
187
+ "long_name": "eastern boundary alkalinity",
188
+ "units": "meq/m^3"
189
+ },
190
+ "ALK_north/.zarray": {
191
+ "chunks": [
192
+ 12,
193
+ 3,
194
+ 4
195
+ ],
196
+ "compressor": {
197
+ "blocksize": 0,
198
+ "clevel": 5,
199
+ "cname": "lz4",
200
+ "id": "blosc",
201
+ "shuffle": 1
202
+ },
203
+ "dtype": "<f4",
204
+ "fill_value": "NaN",
205
+ "filters": null,
206
+ "order": "C",
207
+ "shape": [
208
+ 12,
209
+ 3,
210
+ 4
211
+ ],
212
+ "zarr_format": 2
213
+ },
214
+ "ALK_north/.zattrs": {
215
+ "_ARRAY_DIMENSIONS": [
216
+ "bry_time",
217
+ "s_rho",
218
+ "xi_rho"
219
+ ],
220
+ "coordinates": "abs_time month",
221
+ "long_name": "northern boundary alkalinity",
222
+ "units": "meq/m^3"
223
+ },
224
+ "ALK_south/.zarray": {
225
+ "chunks": [
226
+ 12,
227
+ 3,
228
+ 4
229
+ ],
230
+ "compressor": {
231
+ "blocksize": 0,
232
+ "clevel": 5,
233
+ "cname": "lz4",
234
+ "id": "blosc",
235
+ "shuffle": 1
236
+ },
237
+ "dtype": "<f4",
238
+ "fill_value": "NaN",
239
+ "filters": null,
240
+ "order": "C",
241
+ "shape": [
242
+ 12,
243
+ 3,
244
+ 4
245
+ ],
246
+ "zarr_format": 2
247
+ },
248
+ "ALK_south/.zattrs": {
249
+ "_ARRAY_DIMENSIONS": [
250
+ "bry_time",
251
+ "s_rho",
252
+ "xi_rho"
253
+ ],
254
+ "coordinates": "abs_time month",
255
+ "long_name": "southern boundary alkalinity",
256
+ "units": "meq/m^3"
257
+ },
258
+ "ALK_west/.zarray": {
259
+ "chunks": [
260
+ 12,
261
+ 3,
262
+ 4
263
+ ],
264
+ "compressor": {
265
+ "blocksize": 0,
266
+ "clevel": 5,
267
+ "cname": "lz4",
268
+ "id": "blosc",
269
+ "shuffle": 1
270
+ },
271
+ "dtype": "<f4",
272
+ "fill_value": "NaN",
273
+ "filters": null,
274
+ "order": "C",
275
+ "shape": [
276
+ 12,
277
+ 3,
278
+ 4
279
+ ],
280
+ "zarr_format": 2
281
+ },
282
+ "ALK_west/.zattrs": {
283
+ "_ARRAY_DIMENSIONS": [
284
+ "bry_time",
285
+ "s_rho",
286
+ "eta_rho"
287
+ ],
288
+ "coordinates": "abs_time month",
289
+ "long_name": "western boundary alkalinity",
290
+ "units": "meq/m^3"
291
+ },
292
+ "DIC_ALT_CO2_east/.zarray": {
293
+ "chunks": [
294
+ 12,
295
+ 3,
296
+ 4
297
+ ],
298
+ "compressor": {
299
+ "blocksize": 0,
300
+ "clevel": 5,
301
+ "cname": "lz4",
302
+ "id": "blosc",
303
+ "shuffle": 1
304
+ },
305
+ "dtype": "<f4",
306
+ "fill_value": "NaN",
307
+ "filters": null,
308
+ "order": "C",
309
+ "shape": [
310
+ 12,
311
+ 3,
312
+ 4
313
+ ],
314
+ "zarr_format": 2
315
+ },
316
+ "DIC_ALT_CO2_east/.zattrs": {
317
+ "_ARRAY_DIMENSIONS": [
318
+ "bry_time",
319
+ "s_rho",
320
+ "eta_rho"
321
+ ],
322
+ "coordinates": "abs_time month",
323
+ "long_name": "eastern boundary dissolved inorganic carbon, alternative CO2",
324
+ "units": "mmol/m^3"
325
+ },
326
+ "DIC_ALT_CO2_north/.zarray": {
327
+ "chunks": [
328
+ 12,
329
+ 3,
330
+ 4
331
+ ],
332
+ "compressor": {
333
+ "blocksize": 0,
334
+ "clevel": 5,
335
+ "cname": "lz4",
336
+ "id": "blosc",
337
+ "shuffle": 1
338
+ },
339
+ "dtype": "<f4",
340
+ "fill_value": "NaN",
341
+ "filters": null,
342
+ "order": "C",
343
+ "shape": [
344
+ 12,
345
+ 3,
346
+ 4
347
+ ],
348
+ "zarr_format": 2
349
+ },
350
+ "DIC_ALT_CO2_north/.zattrs": {
351
+ "_ARRAY_DIMENSIONS": [
352
+ "bry_time",
353
+ "s_rho",
354
+ "xi_rho"
355
+ ],
356
+ "coordinates": "abs_time month",
357
+ "long_name": "northern boundary dissolved inorganic carbon, alternative CO2",
358
+ "units": "mmol/m^3"
359
+ },
360
+ "DIC_ALT_CO2_south/.zarray": {
361
+ "chunks": [
362
+ 12,
363
+ 3,
364
+ 4
365
+ ],
366
+ "compressor": {
367
+ "blocksize": 0,
368
+ "clevel": 5,
369
+ "cname": "lz4",
370
+ "id": "blosc",
371
+ "shuffle": 1
372
+ },
373
+ "dtype": "<f4",
374
+ "fill_value": "NaN",
375
+ "filters": null,
376
+ "order": "C",
377
+ "shape": [
378
+ 12,
379
+ 3,
380
+ 4
381
+ ],
382
+ "zarr_format": 2
383
+ },
384
+ "DIC_ALT_CO2_south/.zattrs": {
385
+ "_ARRAY_DIMENSIONS": [
386
+ "bry_time",
387
+ "s_rho",
388
+ "xi_rho"
389
+ ],
390
+ "coordinates": "abs_time month",
391
+ "long_name": "southern boundary dissolved inorganic carbon, alternative CO2",
392
+ "units": "mmol/m^3"
393
+ },
394
+ "DIC_ALT_CO2_west/.zarray": {
395
+ "chunks": [
396
+ 12,
397
+ 3,
398
+ 4
399
+ ],
400
+ "compressor": {
401
+ "blocksize": 0,
402
+ "clevel": 5,
403
+ "cname": "lz4",
404
+ "id": "blosc",
405
+ "shuffle": 1
406
+ },
407
+ "dtype": "<f4",
408
+ "fill_value": "NaN",
409
+ "filters": null,
410
+ "order": "C",
411
+ "shape": [
412
+ 12,
413
+ 3,
414
+ 4
415
+ ],
416
+ "zarr_format": 2
417
+ },
418
+ "DIC_ALT_CO2_west/.zattrs": {
419
+ "_ARRAY_DIMENSIONS": [
420
+ "bry_time",
421
+ "s_rho",
422
+ "eta_rho"
423
+ ],
424
+ "coordinates": "abs_time month",
425
+ "long_name": "western boundary dissolved inorganic carbon, alternative CO2",
426
+ "units": "mmol/m^3"
427
+ },
428
+ "DIC_east/.zarray": {
429
+ "chunks": [
430
+ 12,
431
+ 3,
432
+ 4
433
+ ],
434
+ "compressor": {
435
+ "blocksize": 0,
436
+ "clevel": 5,
437
+ "cname": "lz4",
438
+ "id": "blosc",
439
+ "shuffle": 1
440
+ },
441
+ "dtype": "<f4",
442
+ "fill_value": "NaN",
443
+ "filters": null,
444
+ "order": "C",
445
+ "shape": [
446
+ 12,
447
+ 3,
448
+ 4
449
+ ],
450
+ "zarr_format": 2
451
+ },
452
+ "DIC_east/.zattrs": {
453
+ "_ARRAY_DIMENSIONS": [
454
+ "bry_time",
455
+ "s_rho",
456
+ "eta_rho"
457
+ ],
458
+ "coordinates": "abs_time month",
459
+ "long_name": "eastern boundary dissolved inorganic carbon",
460
+ "units": "mmol/m^3"
461
+ },
462
+ "DIC_north/.zarray": {
463
+ "chunks": [
464
+ 12,
465
+ 3,
466
+ 4
467
+ ],
468
+ "compressor": {
469
+ "blocksize": 0,
470
+ "clevel": 5,
471
+ "cname": "lz4",
472
+ "id": "blosc",
473
+ "shuffle": 1
474
+ },
475
+ "dtype": "<f4",
476
+ "fill_value": "NaN",
477
+ "filters": null,
478
+ "order": "C",
479
+ "shape": [
480
+ 12,
481
+ 3,
482
+ 4
483
+ ],
484
+ "zarr_format": 2
485
+ },
486
+ "DIC_north/.zattrs": {
487
+ "_ARRAY_DIMENSIONS": [
488
+ "bry_time",
489
+ "s_rho",
490
+ "xi_rho"
491
+ ],
492
+ "coordinates": "abs_time month",
493
+ "long_name": "northern boundary dissolved inorganic carbon",
494
+ "units": "mmol/m^3"
495
+ },
496
+ "DIC_south/.zarray": {
497
+ "chunks": [
498
+ 12,
499
+ 3,
500
+ 4
501
+ ],
502
+ "compressor": {
503
+ "blocksize": 0,
504
+ "clevel": 5,
505
+ "cname": "lz4",
506
+ "id": "blosc",
507
+ "shuffle": 1
508
+ },
509
+ "dtype": "<f4",
510
+ "fill_value": "NaN",
511
+ "filters": null,
512
+ "order": "C",
513
+ "shape": [
514
+ 12,
515
+ 3,
516
+ 4
517
+ ],
518
+ "zarr_format": 2
519
+ },
520
+ "DIC_south/.zattrs": {
521
+ "_ARRAY_DIMENSIONS": [
522
+ "bry_time",
523
+ "s_rho",
524
+ "xi_rho"
525
+ ],
526
+ "coordinates": "abs_time month",
527
+ "long_name": "southern boundary dissolved inorganic carbon",
528
+ "units": "mmol/m^3"
529
+ },
530
+ "DIC_west/.zarray": {
531
+ "chunks": [
532
+ 12,
533
+ 3,
534
+ 4
535
+ ],
536
+ "compressor": {
537
+ "blocksize": 0,
538
+ "clevel": 5,
539
+ "cname": "lz4",
540
+ "id": "blosc",
541
+ "shuffle": 1
542
+ },
543
+ "dtype": "<f4",
544
+ "fill_value": "NaN",
545
+ "filters": null,
546
+ "order": "C",
547
+ "shape": [
548
+ 12,
549
+ 3,
550
+ 4
551
+ ],
552
+ "zarr_format": 2
553
+ },
554
+ "DIC_west/.zattrs": {
555
+ "_ARRAY_DIMENSIONS": [
556
+ "bry_time",
557
+ "s_rho",
558
+ "eta_rho"
559
+ ],
560
+ "coordinates": "abs_time month",
561
+ "long_name": "western boundary dissolved inorganic carbon",
562
+ "units": "mmol/m^3"
563
+ },
564
+ "DOC_east/.zarray": {
565
+ "chunks": [
566
+ 12,
567
+ 3,
568
+ 4
569
+ ],
570
+ "compressor": {
571
+ "blocksize": 0,
572
+ "clevel": 5,
573
+ "cname": "lz4",
574
+ "id": "blosc",
575
+ "shuffle": 1
576
+ },
577
+ "dtype": "<f4",
578
+ "fill_value": "NaN",
579
+ "filters": null,
580
+ "order": "C",
581
+ "shape": [
582
+ 12,
583
+ 3,
584
+ 4
585
+ ],
586
+ "zarr_format": 2
587
+ },
588
+ "DOC_east/.zattrs": {
589
+ "_ARRAY_DIMENSIONS": [
590
+ "bry_time",
591
+ "s_rho",
592
+ "eta_rho"
593
+ ],
594
+ "coordinates": "abs_time month",
595
+ "long_name": "eastern boundary dissolved organic carbon",
596
+ "units": "mmol/m^3"
597
+ },
598
+ "DOC_north/.zarray": {
599
+ "chunks": [
600
+ 12,
601
+ 3,
602
+ 4
603
+ ],
604
+ "compressor": {
605
+ "blocksize": 0,
606
+ "clevel": 5,
607
+ "cname": "lz4",
608
+ "id": "blosc",
609
+ "shuffle": 1
610
+ },
611
+ "dtype": "<f4",
612
+ "fill_value": "NaN",
613
+ "filters": null,
614
+ "order": "C",
615
+ "shape": [
616
+ 12,
617
+ 3,
618
+ 4
619
+ ],
620
+ "zarr_format": 2
621
+ },
622
+ "DOC_north/.zattrs": {
623
+ "_ARRAY_DIMENSIONS": [
624
+ "bry_time",
625
+ "s_rho",
626
+ "xi_rho"
627
+ ],
628
+ "coordinates": "abs_time month",
629
+ "long_name": "northern boundary dissolved organic carbon",
630
+ "units": "mmol/m^3"
631
+ },
632
+ "DOC_south/.zarray": {
633
+ "chunks": [
634
+ 12,
635
+ 3,
636
+ 4
637
+ ],
638
+ "compressor": {
639
+ "blocksize": 0,
640
+ "clevel": 5,
641
+ "cname": "lz4",
642
+ "id": "blosc",
643
+ "shuffle": 1
644
+ },
645
+ "dtype": "<f4",
646
+ "fill_value": "NaN",
647
+ "filters": null,
648
+ "order": "C",
649
+ "shape": [
650
+ 12,
651
+ 3,
652
+ 4
653
+ ],
654
+ "zarr_format": 2
655
+ },
656
+ "DOC_south/.zattrs": {
657
+ "_ARRAY_DIMENSIONS": [
658
+ "bry_time",
659
+ "s_rho",
660
+ "xi_rho"
661
+ ],
662
+ "coordinates": "abs_time month",
663
+ "long_name": "southern boundary dissolved organic carbon",
664
+ "units": "mmol/m^3"
665
+ },
666
+ "DOC_west/.zarray": {
667
+ "chunks": [
668
+ 12,
669
+ 3,
670
+ 4
671
+ ],
672
+ "compressor": {
673
+ "blocksize": 0,
674
+ "clevel": 5,
675
+ "cname": "lz4",
676
+ "id": "blosc",
677
+ "shuffle": 1
678
+ },
679
+ "dtype": "<f4",
680
+ "fill_value": "NaN",
681
+ "filters": null,
682
+ "order": "C",
683
+ "shape": [
684
+ 12,
685
+ 3,
686
+ 4
687
+ ],
688
+ "zarr_format": 2
689
+ },
690
+ "DOC_west/.zattrs": {
691
+ "_ARRAY_DIMENSIONS": [
692
+ "bry_time",
693
+ "s_rho",
694
+ "eta_rho"
695
+ ],
696
+ "coordinates": "abs_time month",
697
+ "long_name": "western boundary dissolved organic carbon",
698
+ "units": "mmol/m^3"
699
+ },
700
+ "DOCr_east/.zarray": {
701
+ "chunks": [
702
+ 12,
703
+ 3,
704
+ 4
705
+ ],
706
+ "compressor": {
707
+ "blocksize": 0,
708
+ "clevel": 5,
709
+ "cname": "lz4",
710
+ "id": "blosc",
711
+ "shuffle": 1
712
+ },
713
+ "dtype": "<f4",
714
+ "fill_value": "NaN",
715
+ "filters": null,
716
+ "order": "C",
717
+ "shape": [
718
+ 12,
719
+ 3,
720
+ 4
721
+ ],
722
+ "zarr_format": 2
723
+ },
724
+ "DOCr_east/.zattrs": {
725
+ "_ARRAY_DIMENSIONS": [
726
+ "bry_time",
727
+ "s_rho",
728
+ "eta_rho"
729
+ ],
730
+ "coordinates": "abs_time month",
731
+ "long_name": "eastern boundary refractory dissolved organic carbon",
732
+ "units": "mmol/m^3"
733
+ },
734
+ "DOCr_north/.zarray": {
735
+ "chunks": [
736
+ 12,
737
+ 3,
738
+ 4
739
+ ],
740
+ "compressor": {
741
+ "blocksize": 0,
742
+ "clevel": 5,
743
+ "cname": "lz4",
744
+ "id": "blosc",
745
+ "shuffle": 1
746
+ },
747
+ "dtype": "<f4",
748
+ "fill_value": "NaN",
749
+ "filters": null,
750
+ "order": "C",
751
+ "shape": [
752
+ 12,
753
+ 3,
754
+ 4
755
+ ],
756
+ "zarr_format": 2
757
+ },
758
+ "DOCr_north/.zattrs": {
759
+ "_ARRAY_DIMENSIONS": [
760
+ "bry_time",
761
+ "s_rho",
762
+ "xi_rho"
763
+ ],
764
+ "coordinates": "abs_time month",
765
+ "long_name": "northern boundary refractory dissolved organic carbon",
766
+ "units": "mmol/m^3"
767
+ },
768
+ "DOCr_south/.zarray": {
769
+ "chunks": [
770
+ 12,
771
+ 3,
772
+ 4
773
+ ],
774
+ "compressor": {
775
+ "blocksize": 0,
776
+ "clevel": 5,
777
+ "cname": "lz4",
778
+ "id": "blosc",
779
+ "shuffle": 1
780
+ },
781
+ "dtype": "<f4",
782
+ "fill_value": "NaN",
783
+ "filters": null,
784
+ "order": "C",
785
+ "shape": [
786
+ 12,
787
+ 3,
788
+ 4
789
+ ],
790
+ "zarr_format": 2
791
+ },
792
+ "DOCr_south/.zattrs": {
793
+ "_ARRAY_DIMENSIONS": [
794
+ "bry_time",
795
+ "s_rho",
796
+ "xi_rho"
797
+ ],
798
+ "coordinates": "abs_time month",
799
+ "long_name": "southern boundary refractory dissolved organic carbon",
800
+ "units": "mmol/m^3"
801
+ },
802
+ "DOCr_west/.zarray": {
803
+ "chunks": [
804
+ 12,
805
+ 3,
806
+ 4
807
+ ],
808
+ "compressor": {
809
+ "blocksize": 0,
810
+ "clevel": 5,
811
+ "cname": "lz4",
812
+ "id": "blosc",
813
+ "shuffle": 1
814
+ },
815
+ "dtype": "<f4",
816
+ "fill_value": "NaN",
817
+ "filters": null,
818
+ "order": "C",
819
+ "shape": [
820
+ 12,
821
+ 3,
822
+ 4
823
+ ],
824
+ "zarr_format": 2
825
+ },
826
+ "DOCr_west/.zattrs": {
827
+ "_ARRAY_DIMENSIONS": [
828
+ "bry_time",
829
+ "s_rho",
830
+ "eta_rho"
831
+ ],
832
+ "coordinates": "abs_time month",
833
+ "long_name": "western boundary refractory dissolved organic carbon",
834
+ "units": "mmol/m^3"
835
+ },
836
+ "DON_east/.zarray": {
837
+ "chunks": [
838
+ 12,
839
+ 3,
840
+ 4
841
+ ],
842
+ "compressor": {
843
+ "blocksize": 0,
844
+ "clevel": 5,
845
+ "cname": "lz4",
846
+ "id": "blosc",
847
+ "shuffle": 1
848
+ },
849
+ "dtype": "<f4",
850
+ "fill_value": "NaN",
851
+ "filters": null,
852
+ "order": "C",
853
+ "shape": [
854
+ 12,
855
+ 3,
856
+ 4
857
+ ],
858
+ "zarr_format": 2
859
+ },
860
+ "DON_east/.zattrs": {
861
+ "_ARRAY_DIMENSIONS": [
862
+ "bry_time",
863
+ "s_rho",
864
+ "eta_rho"
865
+ ],
866
+ "coordinates": "abs_time month",
867
+ "long_name": "eastern boundary dissolved organic nitrogen",
868
+ "units": "mmol/m^3"
869
+ },
870
+ "DON_north/.zarray": {
871
+ "chunks": [
872
+ 12,
873
+ 3,
874
+ 4
875
+ ],
876
+ "compressor": {
877
+ "blocksize": 0,
878
+ "clevel": 5,
879
+ "cname": "lz4",
880
+ "id": "blosc",
881
+ "shuffle": 1
882
+ },
883
+ "dtype": "<f4",
884
+ "fill_value": "NaN",
885
+ "filters": null,
886
+ "order": "C",
887
+ "shape": [
888
+ 12,
889
+ 3,
890
+ 4
891
+ ],
892
+ "zarr_format": 2
893
+ },
894
+ "DON_north/.zattrs": {
895
+ "_ARRAY_DIMENSIONS": [
896
+ "bry_time",
897
+ "s_rho",
898
+ "xi_rho"
899
+ ],
900
+ "coordinates": "abs_time month",
901
+ "long_name": "northern boundary dissolved organic nitrogen",
902
+ "units": "mmol/m^3"
903
+ },
904
+ "DON_south/.zarray": {
905
+ "chunks": [
906
+ 12,
907
+ 3,
908
+ 4
909
+ ],
910
+ "compressor": {
911
+ "blocksize": 0,
912
+ "clevel": 5,
913
+ "cname": "lz4",
914
+ "id": "blosc",
915
+ "shuffle": 1
916
+ },
917
+ "dtype": "<f4",
918
+ "fill_value": "NaN",
919
+ "filters": null,
920
+ "order": "C",
921
+ "shape": [
922
+ 12,
923
+ 3,
924
+ 4
925
+ ],
926
+ "zarr_format": 2
927
+ },
928
+ "DON_south/.zattrs": {
929
+ "_ARRAY_DIMENSIONS": [
930
+ "bry_time",
931
+ "s_rho",
932
+ "xi_rho"
933
+ ],
934
+ "coordinates": "abs_time month",
935
+ "long_name": "southern boundary dissolved organic nitrogen",
936
+ "units": "mmol/m^3"
937
+ },
938
+ "DON_west/.zarray": {
939
+ "chunks": [
940
+ 12,
941
+ 3,
942
+ 4
943
+ ],
944
+ "compressor": {
945
+ "blocksize": 0,
946
+ "clevel": 5,
947
+ "cname": "lz4",
948
+ "id": "blosc",
949
+ "shuffle": 1
950
+ },
951
+ "dtype": "<f4",
952
+ "fill_value": "NaN",
953
+ "filters": null,
954
+ "order": "C",
955
+ "shape": [
956
+ 12,
957
+ 3,
958
+ 4
959
+ ],
960
+ "zarr_format": 2
961
+ },
962
+ "DON_west/.zattrs": {
963
+ "_ARRAY_DIMENSIONS": [
964
+ "bry_time",
965
+ "s_rho",
966
+ "eta_rho"
967
+ ],
968
+ "coordinates": "abs_time month",
969
+ "long_name": "western boundary dissolved organic nitrogen",
970
+ "units": "mmol/m^3"
971
+ },
972
+ "DONr_east/.zarray": {
973
+ "chunks": [
974
+ 12,
975
+ 3,
976
+ 4
977
+ ],
978
+ "compressor": {
979
+ "blocksize": 0,
980
+ "clevel": 5,
981
+ "cname": "lz4",
982
+ "id": "blosc",
983
+ "shuffle": 1
984
+ },
985
+ "dtype": "<f4",
986
+ "fill_value": "NaN",
987
+ "filters": null,
988
+ "order": "C",
989
+ "shape": [
990
+ 12,
991
+ 3,
992
+ 4
993
+ ],
994
+ "zarr_format": 2
995
+ },
996
+ "DONr_east/.zattrs": {
997
+ "_ARRAY_DIMENSIONS": [
998
+ "bry_time",
999
+ "s_rho",
1000
+ "eta_rho"
1001
+ ],
1002
+ "coordinates": "abs_time month",
1003
+ "long_name": "eastern boundary refractory dissolved organic nitrogen",
1004
+ "units": "mmol/m^3"
1005
+ },
1006
+ "DONr_north/.zarray": {
1007
+ "chunks": [
1008
+ 12,
1009
+ 3,
1010
+ 4
1011
+ ],
1012
+ "compressor": {
1013
+ "blocksize": 0,
1014
+ "clevel": 5,
1015
+ "cname": "lz4",
1016
+ "id": "blosc",
1017
+ "shuffle": 1
1018
+ },
1019
+ "dtype": "<f4",
1020
+ "fill_value": "NaN",
1021
+ "filters": null,
1022
+ "order": "C",
1023
+ "shape": [
1024
+ 12,
1025
+ 3,
1026
+ 4
1027
+ ],
1028
+ "zarr_format": 2
1029
+ },
1030
+ "DONr_north/.zattrs": {
1031
+ "_ARRAY_DIMENSIONS": [
1032
+ "bry_time",
1033
+ "s_rho",
1034
+ "xi_rho"
1035
+ ],
1036
+ "coordinates": "abs_time month",
1037
+ "long_name": "northern boundary refractory dissolved organic nitrogen",
1038
+ "units": "mmol/m^3"
1039
+ },
1040
+ "DONr_south/.zarray": {
1041
+ "chunks": [
1042
+ 12,
1043
+ 3,
1044
+ 4
1045
+ ],
1046
+ "compressor": {
1047
+ "blocksize": 0,
1048
+ "clevel": 5,
1049
+ "cname": "lz4",
1050
+ "id": "blosc",
1051
+ "shuffle": 1
1052
+ },
1053
+ "dtype": "<f4",
1054
+ "fill_value": "NaN",
1055
+ "filters": null,
1056
+ "order": "C",
1057
+ "shape": [
1058
+ 12,
1059
+ 3,
1060
+ 4
1061
+ ],
1062
+ "zarr_format": 2
1063
+ },
1064
+ "DONr_south/.zattrs": {
1065
+ "_ARRAY_DIMENSIONS": [
1066
+ "bry_time",
1067
+ "s_rho",
1068
+ "xi_rho"
1069
+ ],
1070
+ "coordinates": "abs_time month",
1071
+ "long_name": "southern boundary refractory dissolved organic nitrogen",
1072
+ "units": "mmol/m^3"
1073
+ },
1074
+ "DONr_west/.zarray": {
1075
+ "chunks": [
1076
+ 12,
1077
+ 3,
1078
+ 4
1079
+ ],
1080
+ "compressor": {
1081
+ "blocksize": 0,
1082
+ "clevel": 5,
1083
+ "cname": "lz4",
1084
+ "id": "blosc",
1085
+ "shuffle": 1
1086
+ },
1087
+ "dtype": "<f4",
1088
+ "fill_value": "NaN",
1089
+ "filters": null,
1090
+ "order": "C",
1091
+ "shape": [
1092
+ 12,
1093
+ 3,
1094
+ 4
1095
+ ],
1096
+ "zarr_format": 2
1097
+ },
1098
+ "DONr_west/.zattrs": {
1099
+ "_ARRAY_DIMENSIONS": [
1100
+ "bry_time",
1101
+ "s_rho",
1102
+ "eta_rho"
1103
+ ],
1104
+ "coordinates": "abs_time month",
1105
+ "long_name": "western boundary refractory dissolved organic nitrogen",
1106
+ "units": "mmol/m^3"
1107
+ },
1108
+ "DOP_east/.zarray": {
1109
+ "chunks": [
1110
+ 12,
1111
+ 3,
1112
+ 4
1113
+ ],
1114
+ "compressor": {
1115
+ "blocksize": 0,
1116
+ "clevel": 5,
1117
+ "cname": "lz4",
1118
+ "id": "blosc",
1119
+ "shuffle": 1
1120
+ },
1121
+ "dtype": "<f4",
1122
+ "fill_value": "NaN",
1123
+ "filters": null,
1124
+ "order": "C",
1125
+ "shape": [
1126
+ 12,
1127
+ 3,
1128
+ 4
1129
+ ],
1130
+ "zarr_format": 2
1131
+ },
1132
+ "DOP_east/.zattrs": {
1133
+ "_ARRAY_DIMENSIONS": [
1134
+ "bry_time",
1135
+ "s_rho",
1136
+ "eta_rho"
1137
+ ],
1138
+ "coordinates": "abs_time month",
1139
+ "long_name": "eastern boundary dissolved organic phosphorus",
1140
+ "units": "mmol/m^3"
1141
+ },
1142
+ "DOP_north/.zarray": {
1143
+ "chunks": [
1144
+ 12,
1145
+ 3,
1146
+ 4
1147
+ ],
1148
+ "compressor": {
1149
+ "blocksize": 0,
1150
+ "clevel": 5,
1151
+ "cname": "lz4",
1152
+ "id": "blosc",
1153
+ "shuffle": 1
1154
+ },
1155
+ "dtype": "<f4",
1156
+ "fill_value": "NaN",
1157
+ "filters": null,
1158
+ "order": "C",
1159
+ "shape": [
1160
+ 12,
1161
+ 3,
1162
+ 4
1163
+ ],
1164
+ "zarr_format": 2
1165
+ },
1166
+ "DOP_north/.zattrs": {
1167
+ "_ARRAY_DIMENSIONS": [
1168
+ "bry_time",
1169
+ "s_rho",
1170
+ "xi_rho"
1171
+ ],
1172
+ "coordinates": "abs_time month",
1173
+ "long_name": "northern boundary dissolved organic phosphorus",
1174
+ "units": "mmol/m^3"
1175
+ },
1176
+ "DOP_south/.zarray": {
1177
+ "chunks": [
1178
+ 12,
1179
+ 3,
1180
+ 4
1181
+ ],
1182
+ "compressor": {
1183
+ "blocksize": 0,
1184
+ "clevel": 5,
1185
+ "cname": "lz4",
1186
+ "id": "blosc",
1187
+ "shuffle": 1
1188
+ },
1189
+ "dtype": "<f4",
1190
+ "fill_value": "NaN",
1191
+ "filters": null,
1192
+ "order": "C",
1193
+ "shape": [
1194
+ 12,
1195
+ 3,
1196
+ 4
1197
+ ],
1198
+ "zarr_format": 2
1199
+ },
1200
+ "DOP_south/.zattrs": {
1201
+ "_ARRAY_DIMENSIONS": [
1202
+ "bry_time",
1203
+ "s_rho",
1204
+ "xi_rho"
1205
+ ],
1206
+ "coordinates": "abs_time month",
1207
+ "long_name": "southern boundary dissolved organic phosphorus",
1208
+ "units": "mmol/m^3"
1209
+ },
1210
+ "DOP_west/.zarray": {
1211
+ "chunks": [
1212
+ 12,
1213
+ 3,
1214
+ 4
1215
+ ],
1216
+ "compressor": {
1217
+ "blocksize": 0,
1218
+ "clevel": 5,
1219
+ "cname": "lz4",
1220
+ "id": "blosc",
1221
+ "shuffle": 1
1222
+ },
1223
+ "dtype": "<f4",
1224
+ "fill_value": "NaN",
1225
+ "filters": null,
1226
+ "order": "C",
1227
+ "shape": [
1228
+ 12,
1229
+ 3,
1230
+ 4
1231
+ ],
1232
+ "zarr_format": 2
1233
+ },
1234
+ "DOP_west/.zattrs": {
1235
+ "_ARRAY_DIMENSIONS": [
1236
+ "bry_time",
1237
+ "s_rho",
1238
+ "eta_rho"
1239
+ ],
1240
+ "coordinates": "abs_time month",
1241
+ "long_name": "western boundary dissolved organic phosphorus",
1242
+ "units": "mmol/m^3"
1243
+ },
1244
+ "DOPr_east/.zarray": {
1245
+ "chunks": [
1246
+ 12,
1247
+ 3,
1248
+ 4
1249
+ ],
1250
+ "compressor": {
1251
+ "blocksize": 0,
1252
+ "clevel": 5,
1253
+ "cname": "lz4",
1254
+ "id": "blosc",
1255
+ "shuffle": 1
1256
+ },
1257
+ "dtype": "<f4",
1258
+ "fill_value": "NaN",
1259
+ "filters": null,
1260
+ "order": "C",
1261
+ "shape": [
1262
+ 12,
1263
+ 3,
1264
+ 4
1265
+ ],
1266
+ "zarr_format": 2
1267
+ },
1268
+ "DOPr_east/.zattrs": {
1269
+ "_ARRAY_DIMENSIONS": [
1270
+ "bry_time",
1271
+ "s_rho",
1272
+ "eta_rho"
1273
+ ],
1274
+ "coordinates": "abs_time month",
1275
+ "long_name": "eastern boundary refractory dissolved organic phosphorus",
1276
+ "units": "mmol/m^3"
1277
+ },
1278
+ "DOPr_north/.zarray": {
1279
+ "chunks": [
1280
+ 12,
1281
+ 3,
1282
+ 4
1283
+ ],
1284
+ "compressor": {
1285
+ "blocksize": 0,
1286
+ "clevel": 5,
1287
+ "cname": "lz4",
1288
+ "id": "blosc",
1289
+ "shuffle": 1
1290
+ },
1291
+ "dtype": "<f4",
1292
+ "fill_value": "NaN",
1293
+ "filters": null,
1294
+ "order": "C",
1295
+ "shape": [
1296
+ 12,
1297
+ 3,
1298
+ 4
1299
+ ],
1300
+ "zarr_format": 2
1301
+ },
1302
+ "DOPr_north/.zattrs": {
1303
+ "_ARRAY_DIMENSIONS": [
1304
+ "bry_time",
1305
+ "s_rho",
1306
+ "xi_rho"
1307
+ ],
1308
+ "coordinates": "abs_time month",
1309
+ "long_name": "northern boundary refractory dissolved organic phosphorus",
1310
+ "units": "mmol/m^3"
1311
+ },
1312
+ "DOPr_south/.zarray": {
1313
+ "chunks": [
1314
+ 12,
1315
+ 3,
1316
+ 4
1317
+ ],
1318
+ "compressor": {
1319
+ "blocksize": 0,
1320
+ "clevel": 5,
1321
+ "cname": "lz4",
1322
+ "id": "blosc",
1323
+ "shuffle": 1
1324
+ },
1325
+ "dtype": "<f4",
1326
+ "fill_value": "NaN",
1327
+ "filters": null,
1328
+ "order": "C",
1329
+ "shape": [
1330
+ 12,
1331
+ 3,
1332
+ 4
1333
+ ],
1334
+ "zarr_format": 2
1335
+ },
1336
+ "DOPr_south/.zattrs": {
1337
+ "_ARRAY_DIMENSIONS": [
1338
+ "bry_time",
1339
+ "s_rho",
1340
+ "xi_rho"
1341
+ ],
1342
+ "coordinates": "abs_time month",
1343
+ "long_name": "southern boundary refractory dissolved organic phosphorus",
1344
+ "units": "mmol/m^3"
1345
+ },
1346
+ "DOPr_west/.zarray": {
1347
+ "chunks": [
1348
+ 12,
1349
+ 3,
1350
+ 4
1351
+ ],
1352
+ "compressor": {
1353
+ "blocksize": 0,
1354
+ "clevel": 5,
1355
+ "cname": "lz4",
1356
+ "id": "blosc",
1357
+ "shuffle": 1
1358
+ },
1359
+ "dtype": "<f4",
1360
+ "fill_value": "NaN",
1361
+ "filters": null,
1362
+ "order": "C",
1363
+ "shape": [
1364
+ 12,
1365
+ 3,
1366
+ 4
1367
+ ],
1368
+ "zarr_format": 2
1369
+ },
1370
+ "DOPr_west/.zattrs": {
1371
+ "_ARRAY_DIMENSIONS": [
1372
+ "bry_time",
1373
+ "s_rho",
1374
+ "eta_rho"
1375
+ ],
1376
+ "coordinates": "abs_time month",
1377
+ "long_name": "western boundary refractory dissolved organic phosphorus",
1378
+ "units": "mmol/m^3"
1379
+ },
1380
+ "Fe_east/.zarray": {
1381
+ "chunks": [
1382
+ 12,
1383
+ 3,
1384
+ 4
1385
+ ],
1386
+ "compressor": {
1387
+ "blocksize": 0,
1388
+ "clevel": 5,
1389
+ "cname": "lz4",
1390
+ "id": "blosc",
1391
+ "shuffle": 1
1392
+ },
1393
+ "dtype": "<f4",
1394
+ "fill_value": "NaN",
1395
+ "filters": null,
1396
+ "order": "C",
1397
+ "shape": [
1398
+ 12,
1399
+ 3,
1400
+ 4
1401
+ ],
1402
+ "zarr_format": 2
1403
+ },
1404
+ "Fe_east/.zattrs": {
1405
+ "_ARRAY_DIMENSIONS": [
1406
+ "bry_time",
1407
+ "s_rho",
1408
+ "eta_rho"
1409
+ ],
1410
+ "coordinates": "abs_time month",
1411
+ "long_name": "eastern boundary dissolved inorganic iron",
1412
+ "units": "mmol/m^3"
1413
+ },
1414
+ "Fe_north/.zarray": {
1415
+ "chunks": [
1416
+ 12,
1417
+ 3,
1418
+ 4
1419
+ ],
1420
+ "compressor": {
1421
+ "blocksize": 0,
1422
+ "clevel": 5,
1423
+ "cname": "lz4",
1424
+ "id": "blosc",
1425
+ "shuffle": 1
1426
+ },
1427
+ "dtype": "<f4",
1428
+ "fill_value": "NaN",
1429
+ "filters": null,
1430
+ "order": "C",
1431
+ "shape": [
1432
+ 12,
1433
+ 3,
1434
+ 4
1435
+ ],
1436
+ "zarr_format": 2
1437
+ },
1438
+ "Fe_north/.zattrs": {
1439
+ "_ARRAY_DIMENSIONS": [
1440
+ "bry_time",
1441
+ "s_rho",
1442
+ "xi_rho"
1443
+ ],
1444
+ "coordinates": "abs_time month",
1445
+ "long_name": "northern boundary dissolved inorganic iron",
1446
+ "units": "mmol/m^3"
1447
+ },
1448
+ "Fe_south/.zarray": {
1449
+ "chunks": [
1450
+ 12,
1451
+ 3,
1452
+ 4
1453
+ ],
1454
+ "compressor": {
1455
+ "blocksize": 0,
1456
+ "clevel": 5,
1457
+ "cname": "lz4",
1458
+ "id": "blosc",
1459
+ "shuffle": 1
1460
+ },
1461
+ "dtype": "<f4",
1462
+ "fill_value": "NaN",
1463
+ "filters": null,
1464
+ "order": "C",
1465
+ "shape": [
1466
+ 12,
1467
+ 3,
1468
+ 4
1469
+ ],
1470
+ "zarr_format": 2
1471
+ },
1472
+ "Fe_south/.zattrs": {
1473
+ "_ARRAY_DIMENSIONS": [
1474
+ "bry_time",
1475
+ "s_rho",
1476
+ "xi_rho"
1477
+ ],
1478
+ "coordinates": "abs_time month",
1479
+ "long_name": "southern boundary dissolved inorganic iron",
1480
+ "units": "mmol/m^3"
1481
+ },
1482
+ "Fe_west/.zarray": {
1483
+ "chunks": [
1484
+ 12,
1485
+ 3,
1486
+ 4
1487
+ ],
1488
+ "compressor": {
1489
+ "blocksize": 0,
1490
+ "clevel": 5,
1491
+ "cname": "lz4",
1492
+ "id": "blosc",
1493
+ "shuffle": 1
1494
+ },
1495
+ "dtype": "<f4",
1496
+ "fill_value": "NaN",
1497
+ "filters": null,
1498
+ "order": "C",
1499
+ "shape": [
1500
+ 12,
1501
+ 3,
1502
+ 4
1503
+ ],
1504
+ "zarr_format": 2
1505
+ },
1506
+ "Fe_west/.zattrs": {
1507
+ "_ARRAY_DIMENSIONS": [
1508
+ "bry_time",
1509
+ "s_rho",
1510
+ "eta_rho"
1511
+ ],
1512
+ "coordinates": "abs_time month",
1513
+ "long_name": "western boundary dissolved inorganic iron",
1514
+ "units": "mmol/m^3"
1515
+ },
1516
+ "Lig_east/.zarray": {
1517
+ "chunks": [
1518
+ 12,
1519
+ 3,
1520
+ 4
1521
+ ],
1522
+ "compressor": {
1523
+ "blocksize": 0,
1524
+ "clevel": 5,
1525
+ "cname": "lz4",
1526
+ "id": "blosc",
1527
+ "shuffle": 1
1528
+ },
1529
+ "dtype": "<f4",
1530
+ "fill_value": "NaN",
1531
+ "filters": null,
1532
+ "order": "C",
1533
+ "shape": [
1534
+ 12,
1535
+ 3,
1536
+ 4
1537
+ ],
1538
+ "zarr_format": 2
1539
+ },
1540
+ "Lig_east/.zattrs": {
1541
+ "_ARRAY_DIMENSIONS": [
1542
+ "bry_time",
1543
+ "s_rho",
1544
+ "eta_rho"
1545
+ ],
1546
+ "coordinates": "abs_time month",
1547
+ "long_name": "eastern boundary iron binding ligand",
1548
+ "units": "mmol/m^3"
1549
+ },
1550
+ "Lig_north/.zarray": {
1551
+ "chunks": [
1552
+ 12,
1553
+ 3,
1554
+ 4
1555
+ ],
1556
+ "compressor": {
1557
+ "blocksize": 0,
1558
+ "clevel": 5,
1559
+ "cname": "lz4",
1560
+ "id": "blosc",
1561
+ "shuffle": 1
1562
+ },
1563
+ "dtype": "<f4",
1564
+ "fill_value": "NaN",
1565
+ "filters": null,
1566
+ "order": "C",
1567
+ "shape": [
1568
+ 12,
1569
+ 3,
1570
+ 4
1571
+ ],
1572
+ "zarr_format": 2
1573
+ },
1574
+ "Lig_north/.zattrs": {
1575
+ "_ARRAY_DIMENSIONS": [
1576
+ "bry_time",
1577
+ "s_rho",
1578
+ "xi_rho"
1579
+ ],
1580
+ "coordinates": "abs_time month",
1581
+ "long_name": "northern boundary iron binding ligand",
1582
+ "units": "mmol/m^3"
1583
+ },
1584
+ "Lig_south/.zarray": {
1585
+ "chunks": [
1586
+ 12,
1587
+ 3,
1588
+ 4
1589
+ ],
1590
+ "compressor": {
1591
+ "blocksize": 0,
1592
+ "clevel": 5,
1593
+ "cname": "lz4",
1594
+ "id": "blosc",
1595
+ "shuffle": 1
1596
+ },
1597
+ "dtype": "<f4",
1598
+ "fill_value": "NaN",
1599
+ "filters": null,
1600
+ "order": "C",
1601
+ "shape": [
1602
+ 12,
1603
+ 3,
1604
+ 4
1605
+ ],
1606
+ "zarr_format": 2
1607
+ },
1608
+ "Lig_south/.zattrs": {
1609
+ "_ARRAY_DIMENSIONS": [
1610
+ "bry_time",
1611
+ "s_rho",
1612
+ "xi_rho"
1613
+ ],
1614
+ "coordinates": "abs_time month",
1615
+ "long_name": "southern boundary iron binding ligand",
1616
+ "units": "mmol/m^3"
1617
+ },
1618
+ "Lig_west/.zarray": {
1619
+ "chunks": [
1620
+ 12,
1621
+ 3,
1622
+ 4
1623
+ ],
1624
+ "compressor": {
1625
+ "blocksize": 0,
1626
+ "clevel": 5,
1627
+ "cname": "lz4",
1628
+ "id": "blosc",
1629
+ "shuffle": 1
1630
+ },
1631
+ "dtype": "<f4",
1632
+ "fill_value": "NaN",
1633
+ "filters": null,
1634
+ "order": "C",
1635
+ "shape": [
1636
+ 12,
1637
+ 3,
1638
+ 4
1639
+ ],
1640
+ "zarr_format": 2
1641
+ },
1642
+ "Lig_west/.zattrs": {
1643
+ "_ARRAY_DIMENSIONS": [
1644
+ "bry_time",
1645
+ "s_rho",
1646
+ "eta_rho"
1647
+ ],
1648
+ "coordinates": "abs_time month",
1649
+ "long_name": "western boundary iron binding ligand",
1650
+ "units": "mmol/m^3"
1651
+ },
1652
+ "NH4_east/.zarray": {
1653
+ "chunks": [
1654
+ 12,
1655
+ 3,
1656
+ 4
1657
+ ],
1658
+ "compressor": {
1659
+ "blocksize": 0,
1660
+ "clevel": 5,
1661
+ "cname": "lz4",
1662
+ "id": "blosc",
1663
+ "shuffle": 1
1664
+ },
1665
+ "dtype": "<f4",
1666
+ "fill_value": "NaN",
1667
+ "filters": null,
1668
+ "order": "C",
1669
+ "shape": [
1670
+ 12,
1671
+ 3,
1672
+ 4
1673
+ ],
1674
+ "zarr_format": 2
1675
+ },
1676
+ "NH4_east/.zattrs": {
1677
+ "_ARRAY_DIMENSIONS": [
1678
+ "bry_time",
1679
+ "s_rho",
1680
+ "eta_rho"
1681
+ ],
1682
+ "coordinates": "abs_time month",
1683
+ "long_name": "eastern boundary dissolved ammonia",
1684
+ "units": "mmol/m^3"
1685
+ },
1686
+ "NH4_north/.zarray": {
1687
+ "chunks": [
1688
+ 12,
1689
+ 3,
1690
+ 4
1691
+ ],
1692
+ "compressor": {
1693
+ "blocksize": 0,
1694
+ "clevel": 5,
1695
+ "cname": "lz4",
1696
+ "id": "blosc",
1697
+ "shuffle": 1
1698
+ },
1699
+ "dtype": "<f4",
1700
+ "fill_value": "NaN",
1701
+ "filters": null,
1702
+ "order": "C",
1703
+ "shape": [
1704
+ 12,
1705
+ 3,
1706
+ 4
1707
+ ],
1708
+ "zarr_format": 2
1709
+ },
1710
+ "NH4_north/.zattrs": {
1711
+ "_ARRAY_DIMENSIONS": [
1712
+ "bry_time",
1713
+ "s_rho",
1714
+ "xi_rho"
1715
+ ],
1716
+ "coordinates": "abs_time month",
1717
+ "long_name": "northern boundary dissolved ammonia",
1718
+ "units": "mmol/m^3"
1719
+ },
1720
+ "NH4_south/.zarray": {
1721
+ "chunks": [
1722
+ 12,
1723
+ 3,
1724
+ 4
1725
+ ],
1726
+ "compressor": {
1727
+ "blocksize": 0,
1728
+ "clevel": 5,
1729
+ "cname": "lz4",
1730
+ "id": "blosc",
1731
+ "shuffle": 1
1732
+ },
1733
+ "dtype": "<f4",
1734
+ "fill_value": "NaN",
1735
+ "filters": null,
1736
+ "order": "C",
1737
+ "shape": [
1738
+ 12,
1739
+ 3,
1740
+ 4
1741
+ ],
1742
+ "zarr_format": 2
1743
+ },
1744
+ "NH4_south/.zattrs": {
1745
+ "_ARRAY_DIMENSIONS": [
1746
+ "bry_time",
1747
+ "s_rho",
1748
+ "xi_rho"
1749
+ ],
1750
+ "coordinates": "abs_time month",
1751
+ "long_name": "southern boundary dissolved ammonia",
1752
+ "units": "mmol/m^3"
1753
+ },
1754
+ "NH4_west/.zarray": {
1755
+ "chunks": [
1756
+ 12,
1757
+ 3,
1758
+ 4
1759
+ ],
1760
+ "compressor": {
1761
+ "blocksize": 0,
1762
+ "clevel": 5,
1763
+ "cname": "lz4",
1764
+ "id": "blosc",
1765
+ "shuffle": 1
1766
+ },
1767
+ "dtype": "<f4",
1768
+ "fill_value": "NaN",
1769
+ "filters": null,
1770
+ "order": "C",
1771
+ "shape": [
1772
+ 12,
1773
+ 3,
1774
+ 4
1775
+ ],
1776
+ "zarr_format": 2
1777
+ },
1778
+ "NH4_west/.zattrs": {
1779
+ "_ARRAY_DIMENSIONS": [
1780
+ "bry_time",
1781
+ "s_rho",
1782
+ "eta_rho"
1783
+ ],
1784
+ "coordinates": "abs_time month",
1785
+ "long_name": "western boundary dissolved ammonia",
1786
+ "units": "mmol/m^3"
1787
+ },
1788
+ "NO3_east/.zarray": {
1789
+ "chunks": [
1790
+ 12,
1791
+ 3,
1792
+ 4
1793
+ ],
1794
+ "compressor": {
1795
+ "blocksize": 0,
1796
+ "clevel": 5,
1797
+ "cname": "lz4",
1798
+ "id": "blosc",
1799
+ "shuffle": 1
1800
+ },
1801
+ "dtype": "<f4",
1802
+ "fill_value": "NaN",
1803
+ "filters": null,
1804
+ "order": "C",
1805
+ "shape": [
1806
+ 12,
1807
+ 3,
1808
+ 4
1809
+ ],
1810
+ "zarr_format": 2
1811
+ },
1812
+ "NO3_east/.zattrs": {
1813
+ "_ARRAY_DIMENSIONS": [
1814
+ "bry_time",
1815
+ "s_rho",
1816
+ "eta_rho"
1817
+ ],
1818
+ "coordinates": "abs_time month",
1819
+ "long_name": "eastern boundary dissolved inorganic nitrate",
1820
+ "units": "mmol/m^3"
1821
+ },
1822
+ "NO3_north/.zarray": {
1823
+ "chunks": [
1824
+ 12,
1825
+ 3,
1826
+ 4
1827
+ ],
1828
+ "compressor": {
1829
+ "blocksize": 0,
1830
+ "clevel": 5,
1831
+ "cname": "lz4",
1832
+ "id": "blosc",
1833
+ "shuffle": 1
1834
+ },
1835
+ "dtype": "<f4",
1836
+ "fill_value": "NaN",
1837
+ "filters": null,
1838
+ "order": "C",
1839
+ "shape": [
1840
+ 12,
1841
+ 3,
1842
+ 4
1843
+ ],
1844
+ "zarr_format": 2
1845
+ },
1846
+ "NO3_north/.zattrs": {
1847
+ "_ARRAY_DIMENSIONS": [
1848
+ "bry_time",
1849
+ "s_rho",
1850
+ "xi_rho"
1851
+ ],
1852
+ "coordinates": "abs_time month",
1853
+ "long_name": "northern boundary dissolved inorganic nitrate",
1854
+ "units": "mmol/m^3"
1855
+ },
1856
+ "NO3_south/.zarray": {
1857
+ "chunks": [
1858
+ 12,
1859
+ 3,
1860
+ 4
1861
+ ],
1862
+ "compressor": {
1863
+ "blocksize": 0,
1864
+ "clevel": 5,
1865
+ "cname": "lz4",
1866
+ "id": "blosc",
1867
+ "shuffle": 1
1868
+ },
1869
+ "dtype": "<f4",
1870
+ "fill_value": "NaN",
1871
+ "filters": null,
1872
+ "order": "C",
1873
+ "shape": [
1874
+ 12,
1875
+ 3,
1876
+ 4
1877
+ ],
1878
+ "zarr_format": 2
1879
+ },
1880
+ "NO3_south/.zattrs": {
1881
+ "_ARRAY_DIMENSIONS": [
1882
+ "bry_time",
1883
+ "s_rho",
1884
+ "xi_rho"
1885
+ ],
1886
+ "coordinates": "abs_time month",
1887
+ "long_name": "southern boundary dissolved inorganic nitrate",
1888
+ "units": "mmol/m^3"
1889
+ },
1890
+ "NO3_west/.zarray": {
1891
+ "chunks": [
1892
+ 12,
1893
+ 3,
1894
+ 4
1895
+ ],
1896
+ "compressor": {
1897
+ "blocksize": 0,
1898
+ "clevel": 5,
1899
+ "cname": "lz4",
1900
+ "id": "blosc",
1901
+ "shuffle": 1
1902
+ },
1903
+ "dtype": "<f4",
1904
+ "fill_value": "NaN",
1905
+ "filters": null,
1906
+ "order": "C",
1907
+ "shape": [
1908
+ 12,
1909
+ 3,
1910
+ 4
1911
+ ],
1912
+ "zarr_format": 2
1913
+ },
1914
+ "NO3_west/.zattrs": {
1915
+ "_ARRAY_DIMENSIONS": [
1916
+ "bry_time",
1917
+ "s_rho",
1918
+ "eta_rho"
1919
+ ],
1920
+ "coordinates": "abs_time month",
1921
+ "long_name": "western boundary dissolved inorganic nitrate",
1922
+ "units": "mmol/m^3"
1923
+ },
1924
+ "O2_east/.zarray": {
1925
+ "chunks": [
1926
+ 12,
1927
+ 3,
1928
+ 4
1929
+ ],
1930
+ "compressor": {
1931
+ "blocksize": 0,
1932
+ "clevel": 5,
1933
+ "cname": "lz4",
1934
+ "id": "blosc",
1935
+ "shuffle": 1
1936
+ },
1937
+ "dtype": "<f4",
1938
+ "fill_value": "NaN",
1939
+ "filters": null,
1940
+ "order": "C",
1941
+ "shape": [
1942
+ 12,
1943
+ 3,
1944
+ 4
1945
+ ],
1946
+ "zarr_format": 2
1947
+ },
1948
+ "O2_east/.zattrs": {
1949
+ "_ARRAY_DIMENSIONS": [
1950
+ "bry_time",
1951
+ "s_rho",
1952
+ "eta_rho"
1953
+ ],
1954
+ "coordinates": "abs_time month",
1955
+ "long_name": "eastern boundary dissolved oxygen",
1956
+ "units": "mmol/m^3"
1957
+ },
1958
+ "O2_north/.zarray": {
1959
+ "chunks": [
1960
+ 12,
1961
+ 3,
1962
+ 4
1963
+ ],
1964
+ "compressor": {
1965
+ "blocksize": 0,
1966
+ "clevel": 5,
1967
+ "cname": "lz4",
1968
+ "id": "blosc",
1969
+ "shuffle": 1
1970
+ },
1971
+ "dtype": "<f4",
1972
+ "fill_value": "NaN",
1973
+ "filters": null,
1974
+ "order": "C",
1975
+ "shape": [
1976
+ 12,
1977
+ 3,
1978
+ 4
1979
+ ],
1980
+ "zarr_format": 2
1981
+ },
1982
+ "O2_north/.zattrs": {
1983
+ "_ARRAY_DIMENSIONS": [
1984
+ "bry_time",
1985
+ "s_rho",
1986
+ "xi_rho"
1987
+ ],
1988
+ "coordinates": "abs_time month",
1989
+ "long_name": "northern boundary dissolved oxygen",
1990
+ "units": "mmol/m^3"
1991
+ },
1992
+ "O2_south/.zarray": {
1993
+ "chunks": [
1994
+ 12,
1995
+ 3,
1996
+ 4
1997
+ ],
1998
+ "compressor": {
1999
+ "blocksize": 0,
2000
+ "clevel": 5,
2001
+ "cname": "lz4",
2002
+ "id": "blosc",
2003
+ "shuffle": 1
2004
+ },
2005
+ "dtype": "<f4",
2006
+ "fill_value": "NaN",
2007
+ "filters": null,
2008
+ "order": "C",
2009
+ "shape": [
2010
+ 12,
2011
+ 3,
2012
+ 4
2013
+ ],
2014
+ "zarr_format": 2
2015
+ },
2016
+ "O2_south/.zattrs": {
2017
+ "_ARRAY_DIMENSIONS": [
2018
+ "bry_time",
2019
+ "s_rho",
2020
+ "xi_rho"
2021
+ ],
2022
+ "coordinates": "abs_time month",
2023
+ "long_name": "southern boundary dissolved oxygen",
2024
+ "units": "mmol/m^3"
2025
+ },
2026
+ "O2_west/.zarray": {
2027
+ "chunks": [
2028
+ 12,
2029
+ 3,
2030
+ 4
2031
+ ],
2032
+ "compressor": {
2033
+ "blocksize": 0,
2034
+ "clevel": 5,
2035
+ "cname": "lz4",
2036
+ "id": "blosc",
2037
+ "shuffle": 1
2038
+ },
2039
+ "dtype": "<f4",
2040
+ "fill_value": "NaN",
2041
+ "filters": null,
2042
+ "order": "C",
2043
+ "shape": [
2044
+ 12,
2045
+ 3,
2046
+ 4
2047
+ ],
2048
+ "zarr_format": 2
2049
+ },
2050
+ "O2_west/.zattrs": {
2051
+ "_ARRAY_DIMENSIONS": [
2052
+ "bry_time",
2053
+ "s_rho",
2054
+ "eta_rho"
2055
+ ],
2056
+ "coordinates": "abs_time month",
2057
+ "long_name": "western boundary dissolved oxygen",
2058
+ "units": "mmol/m^3"
2059
+ },
2060
+ "PO4_east/.zarray": {
2061
+ "chunks": [
2062
+ 12,
2063
+ 3,
2064
+ 4
2065
+ ],
2066
+ "compressor": {
2067
+ "blocksize": 0,
2068
+ "clevel": 5,
2069
+ "cname": "lz4",
2070
+ "id": "blosc",
2071
+ "shuffle": 1
2072
+ },
2073
+ "dtype": "<f4",
2074
+ "fill_value": "NaN",
2075
+ "filters": null,
2076
+ "order": "C",
2077
+ "shape": [
2078
+ 12,
2079
+ 3,
2080
+ 4
2081
+ ],
2082
+ "zarr_format": 2
2083
+ },
2084
+ "PO4_east/.zattrs": {
2085
+ "_ARRAY_DIMENSIONS": [
2086
+ "bry_time",
2087
+ "s_rho",
2088
+ "eta_rho"
2089
+ ],
2090
+ "coordinates": "abs_time month",
2091
+ "long_name": "eastern boundary dissolved inorganic phosphate",
2092
+ "units": "mmol/m^3"
2093
+ },
2094
+ "PO4_north/.zarray": {
2095
+ "chunks": [
2096
+ 12,
2097
+ 3,
2098
+ 4
2099
+ ],
2100
+ "compressor": {
2101
+ "blocksize": 0,
2102
+ "clevel": 5,
2103
+ "cname": "lz4",
2104
+ "id": "blosc",
2105
+ "shuffle": 1
2106
+ },
2107
+ "dtype": "<f4",
2108
+ "fill_value": "NaN",
2109
+ "filters": null,
2110
+ "order": "C",
2111
+ "shape": [
2112
+ 12,
2113
+ 3,
2114
+ 4
2115
+ ],
2116
+ "zarr_format": 2
2117
+ },
2118
+ "PO4_north/.zattrs": {
2119
+ "_ARRAY_DIMENSIONS": [
2120
+ "bry_time",
2121
+ "s_rho",
2122
+ "xi_rho"
2123
+ ],
2124
+ "coordinates": "abs_time month",
2125
+ "long_name": "northern boundary dissolved inorganic phosphate",
2126
+ "units": "mmol/m^3"
2127
+ },
2128
+ "PO4_south/.zarray": {
2129
+ "chunks": [
2130
+ 12,
2131
+ 3,
2132
+ 4
2133
+ ],
2134
+ "compressor": {
2135
+ "blocksize": 0,
2136
+ "clevel": 5,
2137
+ "cname": "lz4",
2138
+ "id": "blosc",
2139
+ "shuffle": 1
2140
+ },
2141
+ "dtype": "<f4",
2142
+ "fill_value": "NaN",
2143
+ "filters": null,
2144
+ "order": "C",
2145
+ "shape": [
2146
+ 12,
2147
+ 3,
2148
+ 4
2149
+ ],
2150
+ "zarr_format": 2
2151
+ },
2152
+ "PO4_south/.zattrs": {
2153
+ "_ARRAY_DIMENSIONS": [
2154
+ "bry_time",
2155
+ "s_rho",
2156
+ "xi_rho"
2157
+ ],
2158
+ "coordinates": "abs_time month",
2159
+ "long_name": "southern boundary dissolved inorganic phosphate",
2160
+ "units": "mmol/m^3"
2161
+ },
2162
+ "PO4_west/.zarray": {
2163
+ "chunks": [
2164
+ 12,
2165
+ 3,
2166
+ 4
2167
+ ],
2168
+ "compressor": {
2169
+ "blocksize": 0,
2170
+ "clevel": 5,
2171
+ "cname": "lz4",
2172
+ "id": "blosc",
2173
+ "shuffle": 1
2174
+ },
2175
+ "dtype": "<f4",
2176
+ "fill_value": "NaN",
2177
+ "filters": null,
2178
+ "order": "C",
2179
+ "shape": [
2180
+ 12,
2181
+ 3,
2182
+ 4
2183
+ ],
2184
+ "zarr_format": 2
2185
+ },
2186
+ "PO4_west/.zattrs": {
2187
+ "_ARRAY_DIMENSIONS": [
2188
+ "bry_time",
2189
+ "s_rho",
2190
+ "eta_rho"
2191
+ ],
2192
+ "coordinates": "abs_time month",
2193
+ "long_name": "western boundary dissolved inorganic phosphate",
2194
+ "units": "mmol/m^3"
2195
+ },
2196
+ "SiO3_east/.zarray": {
2197
+ "chunks": [
2198
+ 12,
2199
+ 3,
2200
+ 4
2201
+ ],
2202
+ "compressor": {
2203
+ "blocksize": 0,
2204
+ "clevel": 5,
2205
+ "cname": "lz4",
2206
+ "id": "blosc",
2207
+ "shuffle": 1
2208
+ },
2209
+ "dtype": "<f4",
2210
+ "fill_value": "NaN",
2211
+ "filters": null,
2212
+ "order": "C",
2213
+ "shape": [
2214
+ 12,
2215
+ 3,
2216
+ 4
2217
+ ],
2218
+ "zarr_format": 2
2219
+ },
2220
+ "SiO3_east/.zattrs": {
2221
+ "_ARRAY_DIMENSIONS": [
2222
+ "bry_time",
2223
+ "s_rho",
2224
+ "eta_rho"
2225
+ ],
2226
+ "coordinates": "abs_time month",
2227
+ "long_name": "eastern boundary dissolved inorganic silicate",
2228
+ "units": "mmol/m^3"
2229
+ },
2230
+ "SiO3_north/.zarray": {
2231
+ "chunks": [
2232
+ 12,
2233
+ 3,
2234
+ 4
2235
+ ],
2236
+ "compressor": {
2237
+ "blocksize": 0,
2238
+ "clevel": 5,
2239
+ "cname": "lz4",
2240
+ "id": "blosc",
2241
+ "shuffle": 1
2242
+ },
2243
+ "dtype": "<f4",
2244
+ "fill_value": "NaN",
2245
+ "filters": null,
2246
+ "order": "C",
2247
+ "shape": [
2248
+ 12,
2249
+ 3,
2250
+ 4
2251
+ ],
2252
+ "zarr_format": 2
2253
+ },
2254
+ "SiO3_north/.zattrs": {
2255
+ "_ARRAY_DIMENSIONS": [
2256
+ "bry_time",
2257
+ "s_rho",
2258
+ "xi_rho"
2259
+ ],
2260
+ "coordinates": "abs_time month",
2261
+ "long_name": "northern boundary dissolved inorganic silicate",
2262
+ "units": "mmol/m^3"
2263
+ },
2264
+ "SiO3_south/.zarray": {
2265
+ "chunks": [
2266
+ 12,
2267
+ 3,
2268
+ 4
2269
+ ],
2270
+ "compressor": {
2271
+ "blocksize": 0,
2272
+ "clevel": 5,
2273
+ "cname": "lz4",
2274
+ "id": "blosc",
2275
+ "shuffle": 1
2276
+ },
2277
+ "dtype": "<f4",
2278
+ "fill_value": "NaN",
2279
+ "filters": null,
2280
+ "order": "C",
2281
+ "shape": [
2282
+ 12,
2283
+ 3,
2284
+ 4
2285
+ ],
2286
+ "zarr_format": 2
2287
+ },
2288
+ "SiO3_south/.zattrs": {
2289
+ "_ARRAY_DIMENSIONS": [
2290
+ "bry_time",
2291
+ "s_rho",
2292
+ "xi_rho"
2293
+ ],
2294
+ "coordinates": "abs_time month",
2295
+ "long_name": "southern boundary dissolved inorganic silicate",
2296
+ "units": "mmol/m^3"
2297
+ },
2298
+ "SiO3_west/.zarray": {
2299
+ "chunks": [
2300
+ 12,
2301
+ 3,
2302
+ 4
2303
+ ],
2304
+ "compressor": {
2305
+ "blocksize": 0,
2306
+ "clevel": 5,
2307
+ "cname": "lz4",
2308
+ "id": "blosc",
2309
+ "shuffle": 1
2310
+ },
2311
+ "dtype": "<f4",
2312
+ "fill_value": "NaN",
2313
+ "filters": null,
2314
+ "order": "C",
2315
+ "shape": [
2316
+ 12,
2317
+ 3,
2318
+ 4
2319
+ ],
2320
+ "zarr_format": 2
2321
+ },
2322
+ "SiO3_west/.zattrs": {
2323
+ "_ARRAY_DIMENSIONS": [
2324
+ "bry_time",
2325
+ "s_rho",
2326
+ "eta_rho"
2327
+ ],
2328
+ "coordinates": "abs_time month",
2329
+ "long_name": "western boundary dissolved inorganic silicate",
2330
+ "units": "mmol/m^3"
2331
+ },
2332
+ "abs_time/.zarray": {
2333
+ "chunks": [
2334
+ 12
2335
+ ],
2336
+ "compressor": {
2337
+ "blocksize": 0,
2338
+ "clevel": 5,
2339
+ "cname": "lz4",
2340
+ "id": "blosc",
2341
+ "shuffle": 1
2342
+ },
2343
+ "dtype": "<i8",
2344
+ "fill_value": null,
2345
+ "filters": null,
2346
+ "order": "C",
2347
+ "shape": [
2348
+ 12
2349
+ ],
2350
+ "zarr_format": 2
2351
+ },
2352
+ "abs_time/.zattrs": {
2353
+ "_ARRAY_DIMENSIONS": [
2354
+ "bry_time"
2355
+ ],
2356
+ "calendar": "proleptic_gregorian",
2357
+ "long_name": "absolute time",
2358
+ "units": "hours since 2000-01-16 12:00:00"
2359
+ },
2360
+ "bry_time/.zarray": {
2361
+ "chunks": [
2362
+ 12
2363
+ ],
2364
+ "compressor": {
2365
+ "blocksize": 0,
2366
+ "clevel": 5,
2367
+ "cname": "lz4",
2368
+ "id": "blosc",
2369
+ "shuffle": 1
2370
+ },
2371
+ "dtype": "<f8",
2372
+ "fill_value": "NaN",
2373
+ "filters": null,
2374
+ "order": "C",
2375
+ "shape": [
2376
+ 12
2377
+ ],
2378
+ "zarr_format": 2
2379
+ },
2380
+ "bry_time/.zattrs": {
2381
+ "_ARRAY_DIMENSIONS": [
2382
+ "bry_time"
2383
+ ],
2384
+ "cycle_length": 365.25,
2385
+ "long_name": "relative time: days since 2000-01-01 00:00:00",
2386
+ "units": "days"
2387
+ },
2388
+ "diatC_east/.zarray": {
2389
+ "chunks": [
2390
+ 12,
2391
+ 3,
2392
+ 4
2393
+ ],
2394
+ "compressor": {
2395
+ "blocksize": 0,
2396
+ "clevel": 5,
2397
+ "cname": "lz4",
2398
+ "id": "blosc",
2399
+ "shuffle": 1
2400
+ },
2401
+ "dtype": "<f4",
2402
+ "fill_value": "NaN",
2403
+ "filters": null,
2404
+ "order": "C",
2405
+ "shape": [
2406
+ 12,
2407
+ 3,
2408
+ 4
2409
+ ],
2410
+ "zarr_format": 2
2411
+ },
2412
+ "diatC_east/.zattrs": {
2413
+ "_ARRAY_DIMENSIONS": [
2414
+ "bry_time",
2415
+ "s_rho",
2416
+ "eta_rho"
2417
+ ],
2418
+ "coordinates": "abs_time month",
2419
+ "long_name": "eastern boundary diatom carbon",
2420
+ "units": "mmol/m^3"
2421
+ },
2422
+ "diatC_north/.zarray": {
2423
+ "chunks": [
2424
+ 12,
2425
+ 3,
2426
+ 4
2427
+ ],
2428
+ "compressor": {
2429
+ "blocksize": 0,
2430
+ "clevel": 5,
2431
+ "cname": "lz4",
2432
+ "id": "blosc",
2433
+ "shuffle": 1
2434
+ },
2435
+ "dtype": "<f4",
2436
+ "fill_value": "NaN",
2437
+ "filters": null,
2438
+ "order": "C",
2439
+ "shape": [
2440
+ 12,
2441
+ 3,
2442
+ 4
2443
+ ],
2444
+ "zarr_format": 2
2445
+ },
2446
+ "diatC_north/.zattrs": {
2447
+ "_ARRAY_DIMENSIONS": [
2448
+ "bry_time",
2449
+ "s_rho",
2450
+ "xi_rho"
2451
+ ],
2452
+ "coordinates": "abs_time month",
2453
+ "long_name": "northern boundary diatom carbon",
2454
+ "units": "mmol/m^3"
2455
+ },
2456
+ "diatC_south/.zarray": {
2457
+ "chunks": [
2458
+ 12,
2459
+ 3,
2460
+ 4
2461
+ ],
2462
+ "compressor": {
2463
+ "blocksize": 0,
2464
+ "clevel": 5,
2465
+ "cname": "lz4",
2466
+ "id": "blosc",
2467
+ "shuffle": 1
2468
+ },
2469
+ "dtype": "<f4",
2470
+ "fill_value": "NaN",
2471
+ "filters": null,
2472
+ "order": "C",
2473
+ "shape": [
2474
+ 12,
2475
+ 3,
2476
+ 4
2477
+ ],
2478
+ "zarr_format": 2
2479
+ },
2480
+ "diatC_south/.zattrs": {
2481
+ "_ARRAY_DIMENSIONS": [
2482
+ "bry_time",
2483
+ "s_rho",
2484
+ "xi_rho"
2485
+ ],
2486
+ "coordinates": "abs_time month",
2487
+ "long_name": "southern boundary diatom carbon",
2488
+ "units": "mmol/m^3"
2489
+ },
2490
+ "diatC_west/.zarray": {
2491
+ "chunks": [
2492
+ 12,
2493
+ 3,
2494
+ 4
2495
+ ],
2496
+ "compressor": {
2497
+ "blocksize": 0,
2498
+ "clevel": 5,
2499
+ "cname": "lz4",
2500
+ "id": "blosc",
2501
+ "shuffle": 1
2502
+ },
2503
+ "dtype": "<f4",
2504
+ "fill_value": "NaN",
2505
+ "filters": null,
2506
+ "order": "C",
2507
+ "shape": [
2508
+ 12,
2509
+ 3,
2510
+ 4
2511
+ ],
2512
+ "zarr_format": 2
2513
+ },
2514
+ "diatC_west/.zattrs": {
2515
+ "_ARRAY_DIMENSIONS": [
2516
+ "bry_time",
2517
+ "s_rho",
2518
+ "eta_rho"
2519
+ ],
2520
+ "coordinates": "abs_time month",
2521
+ "long_name": "western boundary diatom carbon",
2522
+ "units": "mmol/m^3"
2523
+ },
2524
+ "diatChl_east/.zarray": {
2525
+ "chunks": [
2526
+ 12,
2527
+ 3,
2528
+ 4
2529
+ ],
2530
+ "compressor": {
2531
+ "blocksize": 0,
2532
+ "clevel": 5,
2533
+ "cname": "lz4",
2534
+ "id": "blosc",
2535
+ "shuffle": 1
2536
+ },
2537
+ "dtype": "<f4",
2538
+ "fill_value": "NaN",
2539
+ "filters": null,
2540
+ "order": "C",
2541
+ "shape": [
2542
+ 12,
2543
+ 3,
2544
+ 4
2545
+ ],
2546
+ "zarr_format": 2
2547
+ },
2548
+ "diatChl_east/.zattrs": {
2549
+ "_ARRAY_DIMENSIONS": [
2550
+ "bry_time",
2551
+ "s_rho",
2552
+ "eta_rho"
2553
+ ],
2554
+ "coordinates": "abs_time month",
2555
+ "long_name": "eastern boundary diatom chloropyll",
2556
+ "units": "mg/m^3"
2557
+ },
2558
+ "diatChl_north/.zarray": {
2559
+ "chunks": [
2560
+ 12,
2561
+ 3,
2562
+ 4
2563
+ ],
2564
+ "compressor": {
2565
+ "blocksize": 0,
2566
+ "clevel": 5,
2567
+ "cname": "lz4",
2568
+ "id": "blosc",
2569
+ "shuffle": 1
2570
+ },
2571
+ "dtype": "<f4",
2572
+ "fill_value": "NaN",
2573
+ "filters": null,
2574
+ "order": "C",
2575
+ "shape": [
2576
+ 12,
2577
+ 3,
2578
+ 4
2579
+ ],
2580
+ "zarr_format": 2
2581
+ },
2582
+ "diatChl_north/.zattrs": {
2583
+ "_ARRAY_DIMENSIONS": [
2584
+ "bry_time",
2585
+ "s_rho",
2586
+ "xi_rho"
2587
+ ],
2588
+ "coordinates": "abs_time month",
2589
+ "long_name": "northern boundary diatom chloropyll",
2590
+ "units": "mg/m^3"
2591
+ },
2592
+ "diatChl_south/.zarray": {
2593
+ "chunks": [
2594
+ 12,
2595
+ 3,
2596
+ 4
2597
+ ],
2598
+ "compressor": {
2599
+ "blocksize": 0,
2600
+ "clevel": 5,
2601
+ "cname": "lz4",
2602
+ "id": "blosc",
2603
+ "shuffle": 1
2604
+ },
2605
+ "dtype": "<f4",
2606
+ "fill_value": "NaN",
2607
+ "filters": null,
2608
+ "order": "C",
2609
+ "shape": [
2610
+ 12,
2611
+ 3,
2612
+ 4
2613
+ ],
2614
+ "zarr_format": 2
2615
+ },
2616
+ "diatChl_south/.zattrs": {
2617
+ "_ARRAY_DIMENSIONS": [
2618
+ "bry_time",
2619
+ "s_rho",
2620
+ "xi_rho"
2621
+ ],
2622
+ "coordinates": "abs_time month",
2623
+ "long_name": "southern boundary diatom chloropyll",
2624
+ "units": "mg/m^3"
2625
+ },
2626
+ "diatChl_west/.zarray": {
2627
+ "chunks": [
2628
+ 12,
2629
+ 3,
2630
+ 4
2631
+ ],
2632
+ "compressor": {
2633
+ "blocksize": 0,
2634
+ "clevel": 5,
2635
+ "cname": "lz4",
2636
+ "id": "blosc",
2637
+ "shuffle": 1
2638
+ },
2639
+ "dtype": "<f4",
2640
+ "fill_value": "NaN",
2641
+ "filters": null,
2642
+ "order": "C",
2643
+ "shape": [
2644
+ 12,
2645
+ 3,
2646
+ 4
2647
+ ],
2648
+ "zarr_format": 2
2649
+ },
2650
+ "diatChl_west/.zattrs": {
2651
+ "_ARRAY_DIMENSIONS": [
2652
+ "bry_time",
2653
+ "s_rho",
2654
+ "eta_rho"
2655
+ ],
2656
+ "coordinates": "abs_time month",
2657
+ "long_name": "western boundary diatom chloropyll",
2658
+ "units": "mg/m^3"
2659
+ },
2660
+ "diatFe_east/.zarray": {
2661
+ "chunks": [
2662
+ 12,
2663
+ 3,
2664
+ 4
2665
+ ],
2666
+ "compressor": {
2667
+ "blocksize": 0,
2668
+ "clevel": 5,
2669
+ "cname": "lz4",
2670
+ "id": "blosc",
2671
+ "shuffle": 1
2672
+ },
2673
+ "dtype": "<f4",
2674
+ "fill_value": "NaN",
2675
+ "filters": null,
2676
+ "order": "C",
2677
+ "shape": [
2678
+ 12,
2679
+ 3,
2680
+ 4
2681
+ ],
2682
+ "zarr_format": 2
2683
+ },
2684
+ "diatFe_east/.zattrs": {
2685
+ "_ARRAY_DIMENSIONS": [
2686
+ "bry_time",
2687
+ "s_rho",
2688
+ "eta_rho"
2689
+ ],
2690
+ "coordinates": "abs_time month",
2691
+ "long_name": "eastern boundary diatom iron",
2692
+ "units": "mmol/m^3"
2693
+ },
2694
+ "diatFe_north/.zarray": {
2695
+ "chunks": [
2696
+ 12,
2697
+ 3,
2698
+ 4
2699
+ ],
2700
+ "compressor": {
2701
+ "blocksize": 0,
2702
+ "clevel": 5,
2703
+ "cname": "lz4",
2704
+ "id": "blosc",
2705
+ "shuffle": 1
2706
+ },
2707
+ "dtype": "<f4",
2708
+ "fill_value": "NaN",
2709
+ "filters": null,
2710
+ "order": "C",
2711
+ "shape": [
2712
+ 12,
2713
+ 3,
2714
+ 4
2715
+ ],
2716
+ "zarr_format": 2
2717
+ },
2718
+ "diatFe_north/.zattrs": {
2719
+ "_ARRAY_DIMENSIONS": [
2720
+ "bry_time",
2721
+ "s_rho",
2722
+ "xi_rho"
2723
+ ],
2724
+ "coordinates": "abs_time month",
2725
+ "long_name": "northern boundary diatom iron",
2726
+ "units": "mmol/m^3"
2727
+ },
2728
+ "diatFe_south/.zarray": {
2729
+ "chunks": [
2730
+ 12,
2731
+ 3,
2732
+ 4
2733
+ ],
2734
+ "compressor": {
2735
+ "blocksize": 0,
2736
+ "clevel": 5,
2737
+ "cname": "lz4",
2738
+ "id": "blosc",
2739
+ "shuffle": 1
2740
+ },
2741
+ "dtype": "<f4",
2742
+ "fill_value": "NaN",
2743
+ "filters": null,
2744
+ "order": "C",
2745
+ "shape": [
2746
+ 12,
2747
+ 3,
2748
+ 4
2749
+ ],
2750
+ "zarr_format": 2
2751
+ },
2752
+ "diatFe_south/.zattrs": {
2753
+ "_ARRAY_DIMENSIONS": [
2754
+ "bry_time",
2755
+ "s_rho",
2756
+ "xi_rho"
2757
+ ],
2758
+ "coordinates": "abs_time month",
2759
+ "long_name": "southern boundary diatom iron",
2760
+ "units": "mmol/m^3"
2761
+ },
2762
+ "diatFe_west/.zarray": {
2763
+ "chunks": [
2764
+ 12,
2765
+ 3,
2766
+ 4
2767
+ ],
2768
+ "compressor": {
2769
+ "blocksize": 0,
2770
+ "clevel": 5,
2771
+ "cname": "lz4",
2772
+ "id": "blosc",
2773
+ "shuffle": 1
2774
+ },
2775
+ "dtype": "<f4",
2776
+ "fill_value": "NaN",
2777
+ "filters": null,
2778
+ "order": "C",
2779
+ "shape": [
2780
+ 12,
2781
+ 3,
2782
+ 4
2783
+ ],
2784
+ "zarr_format": 2
2785
+ },
2786
+ "diatFe_west/.zattrs": {
2787
+ "_ARRAY_DIMENSIONS": [
2788
+ "bry_time",
2789
+ "s_rho",
2790
+ "eta_rho"
2791
+ ],
2792
+ "coordinates": "abs_time month",
2793
+ "long_name": "western boundary diatom iron",
2794
+ "units": "mmol/m^3"
2795
+ },
2796
+ "diatP_east/.zarray": {
2797
+ "chunks": [
2798
+ 12,
2799
+ 3,
2800
+ 4
2801
+ ],
2802
+ "compressor": {
2803
+ "blocksize": 0,
2804
+ "clevel": 5,
2805
+ "cname": "lz4",
2806
+ "id": "blosc",
2807
+ "shuffle": 1
2808
+ },
2809
+ "dtype": "<f4",
2810
+ "fill_value": "NaN",
2811
+ "filters": null,
2812
+ "order": "C",
2813
+ "shape": [
2814
+ 12,
2815
+ 3,
2816
+ 4
2817
+ ],
2818
+ "zarr_format": 2
2819
+ },
2820
+ "diatP_east/.zattrs": {
2821
+ "_ARRAY_DIMENSIONS": [
2822
+ "bry_time",
2823
+ "s_rho",
2824
+ "eta_rho"
2825
+ ],
2826
+ "coordinates": "abs_time month",
2827
+ "long_name": "eastern boundary diatom phosphorus",
2828
+ "units": "mmol/m^3"
2829
+ },
2830
+ "diatP_north/.zarray": {
2831
+ "chunks": [
2832
+ 12,
2833
+ 3,
2834
+ 4
2835
+ ],
2836
+ "compressor": {
2837
+ "blocksize": 0,
2838
+ "clevel": 5,
2839
+ "cname": "lz4",
2840
+ "id": "blosc",
2841
+ "shuffle": 1
2842
+ },
2843
+ "dtype": "<f4",
2844
+ "fill_value": "NaN",
2845
+ "filters": null,
2846
+ "order": "C",
2847
+ "shape": [
2848
+ 12,
2849
+ 3,
2850
+ 4
2851
+ ],
2852
+ "zarr_format": 2
2853
+ },
2854
+ "diatP_north/.zattrs": {
2855
+ "_ARRAY_DIMENSIONS": [
2856
+ "bry_time",
2857
+ "s_rho",
2858
+ "xi_rho"
2859
+ ],
2860
+ "coordinates": "abs_time month",
2861
+ "long_name": "northern boundary diatom phosphorus",
2862
+ "units": "mmol/m^3"
2863
+ },
2864
+ "diatP_south/.zarray": {
2865
+ "chunks": [
2866
+ 12,
2867
+ 3,
2868
+ 4
2869
+ ],
2870
+ "compressor": {
2871
+ "blocksize": 0,
2872
+ "clevel": 5,
2873
+ "cname": "lz4",
2874
+ "id": "blosc",
2875
+ "shuffle": 1
2876
+ },
2877
+ "dtype": "<f4",
2878
+ "fill_value": "NaN",
2879
+ "filters": null,
2880
+ "order": "C",
2881
+ "shape": [
2882
+ 12,
2883
+ 3,
2884
+ 4
2885
+ ],
2886
+ "zarr_format": 2
2887
+ },
2888
+ "diatP_south/.zattrs": {
2889
+ "_ARRAY_DIMENSIONS": [
2890
+ "bry_time",
2891
+ "s_rho",
2892
+ "xi_rho"
2893
+ ],
2894
+ "coordinates": "abs_time month",
2895
+ "long_name": "southern boundary diatom phosphorus",
2896
+ "units": "mmol/m^3"
2897
+ },
2898
+ "diatP_west/.zarray": {
2899
+ "chunks": [
2900
+ 12,
2901
+ 3,
2902
+ 4
2903
+ ],
2904
+ "compressor": {
2905
+ "blocksize": 0,
2906
+ "clevel": 5,
2907
+ "cname": "lz4",
2908
+ "id": "blosc",
2909
+ "shuffle": 1
2910
+ },
2911
+ "dtype": "<f4",
2912
+ "fill_value": "NaN",
2913
+ "filters": null,
2914
+ "order": "C",
2915
+ "shape": [
2916
+ 12,
2917
+ 3,
2918
+ 4
2919
+ ],
2920
+ "zarr_format": 2
2921
+ },
2922
+ "diatP_west/.zattrs": {
2923
+ "_ARRAY_DIMENSIONS": [
2924
+ "bry_time",
2925
+ "s_rho",
2926
+ "eta_rho"
2927
+ ],
2928
+ "coordinates": "abs_time month",
2929
+ "long_name": "western boundary diatom phosphorus",
2930
+ "units": "mmol/m^3"
2931
+ },
2932
+ "diatSi_east/.zarray": {
2933
+ "chunks": [
2934
+ 12,
2935
+ 3,
2936
+ 4
2937
+ ],
2938
+ "compressor": {
2939
+ "blocksize": 0,
2940
+ "clevel": 5,
2941
+ "cname": "lz4",
2942
+ "id": "blosc",
2943
+ "shuffle": 1
2944
+ },
2945
+ "dtype": "<f4",
2946
+ "fill_value": "NaN",
2947
+ "filters": null,
2948
+ "order": "C",
2949
+ "shape": [
2950
+ 12,
2951
+ 3,
2952
+ 4
2953
+ ],
2954
+ "zarr_format": 2
2955
+ },
2956
+ "diatSi_east/.zattrs": {
2957
+ "_ARRAY_DIMENSIONS": [
2958
+ "bry_time",
2959
+ "s_rho",
2960
+ "eta_rho"
2961
+ ],
2962
+ "coordinates": "abs_time month",
2963
+ "long_name": "eastern boundary diatom silicate",
2964
+ "units": "mmol/m^3"
2965
+ },
2966
+ "diatSi_north/.zarray": {
2967
+ "chunks": [
2968
+ 12,
2969
+ 3,
2970
+ 4
2971
+ ],
2972
+ "compressor": {
2973
+ "blocksize": 0,
2974
+ "clevel": 5,
2975
+ "cname": "lz4",
2976
+ "id": "blosc",
2977
+ "shuffle": 1
2978
+ },
2979
+ "dtype": "<f4",
2980
+ "fill_value": "NaN",
2981
+ "filters": null,
2982
+ "order": "C",
2983
+ "shape": [
2984
+ 12,
2985
+ 3,
2986
+ 4
2987
+ ],
2988
+ "zarr_format": 2
2989
+ },
2990
+ "diatSi_north/.zattrs": {
2991
+ "_ARRAY_DIMENSIONS": [
2992
+ "bry_time",
2993
+ "s_rho",
2994
+ "xi_rho"
2995
+ ],
2996
+ "coordinates": "abs_time month",
2997
+ "long_name": "northern boundary diatom silicate",
2998
+ "units": "mmol/m^3"
2999
+ },
3000
+ "diatSi_south/.zarray": {
3001
+ "chunks": [
3002
+ 12,
3003
+ 3,
3004
+ 4
3005
+ ],
3006
+ "compressor": {
3007
+ "blocksize": 0,
3008
+ "clevel": 5,
3009
+ "cname": "lz4",
3010
+ "id": "blosc",
3011
+ "shuffle": 1
3012
+ },
3013
+ "dtype": "<f4",
3014
+ "fill_value": "NaN",
3015
+ "filters": null,
3016
+ "order": "C",
3017
+ "shape": [
3018
+ 12,
3019
+ 3,
3020
+ 4
3021
+ ],
3022
+ "zarr_format": 2
3023
+ },
3024
+ "diatSi_south/.zattrs": {
3025
+ "_ARRAY_DIMENSIONS": [
3026
+ "bry_time",
3027
+ "s_rho",
3028
+ "xi_rho"
3029
+ ],
3030
+ "coordinates": "abs_time month",
3031
+ "long_name": "southern boundary diatom silicate",
3032
+ "units": "mmol/m^3"
3033
+ },
3034
+ "diatSi_west/.zarray": {
3035
+ "chunks": [
3036
+ 12,
3037
+ 3,
3038
+ 4
3039
+ ],
3040
+ "compressor": {
3041
+ "blocksize": 0,
3042
+ "clevel": 5,
3043
+ "cname": "lz4",
3044
+ "id": "blosc",
3045
+ "shuffle": 1
3046
+ },
3047
+ "dtype": "<f4",
3048
+ "fill_value": "NaN",
3049
+ "filters": null,
3050
+ "order": "C",
3051
+ "shape": [
3052
+ 12,
3053
+ 3,
3054
+ 4
3055
+ ],
3056
+ "zarr_format": 2
3057
+ },
3058
+ "diatSi_west/.zattrs": {
3059
+ "_ARRAY_DIMENSIONS": [
3060
+ "bry_time",
3061
+ "s_rho",
3062
+ "eta_rho"
3063
+ ],
3064
+ "coordinates": "abs_time month",
3065
+ "long_name": "western boundary diatom silicate",
3066
+ "units": "mmol/m^3"
3067
+ },
3068
+ "diazC_east/.zarray": {
3069
+ "chunks": [
3070
+ 12,
3071
+ 3,
3072
+ 4
3073
+ ],
3074
+ "compressor": {
3075
+ "blocksize": 0,
3076
+ "clevel": 5,
3077
+ "cname": "lz4",
3078
+ "id": "blosc",
3079
+ "shuffle": 1
3080
+ },
3081
+ "dtype": "<f4",
3082
+ "fill_value": "NaN",
3083
+ "filters": null,
3084
+ "order": "C",
3085
+ "shape": [
3086
+ 12,
3087
+ 3,
3088
+ 4
3089
+ ],
3090
+ "zarr_format": 2
3091
+ },
3092
+ "diazC_east/.zattrs": {
3093
+ "_ARRAY_DIMENSIONS": [
3094
+ "bry_time",
3095
+ "s_rho",
3096
+ "eta_rho"
3097
+ ],
3098
+ "coordinates": "abs_time month",
3099
+ "long_name": "eastern boundary diazotroph carbon",
3100
+ "units": "mmol/m^3"
3101
+ },
3102
+ "diazC_north/.zarray": {
3103
+ "chunks": [
3104
+ 12,
3105
+ 3,
3106
+ 4
3107
+ ],
3108
+ "compressor": {
3109
+ "blocksize": 0,
3110
+ "clevel": 5,
3111
+ "cname": "lz4",
3112
+ "id": "blosc",
3113
+ "shuffle": 1
3114
+ },
3115
+ "dtype": "<f4",
3116
+ "fill_value": "NaN",
3117
+ "filters": null,
3118
+ "order": "C",
3119
+ "shape": [
3120
+ 12,
3121
+ 3,
3122
+ 4
3123
+ ],
3124
+ "zarr_format": 2
3125
+ },
3126
+ "diazC_north/.zattrs": {
3127
+ "_ARRAY_DIMENSIONS": [
3128
+ "bry_time",
3129
+ "s_rho",
3130
+ "xi_rho"
3131
+ ],
3132
+ "coordinates": "abs_time month",
3133
+ "long_name": "northern boundary diazotroph carbon",
3134
+ "units": "mmol/m^3"
3135
+ },
3136
+ "diazC_south/.zarray": {
3137
+ "chunks": [
3138
+ 12,
3139
+ 3,
3140
+ 4
3141
+ ],
3142
+ "compressor": {
3143
+ "blocksize": 0,
3144
+ "clevel": 5,
3145
+ "cname": "lz4",
3146
+ "id": "blosc",
3147
+ "shuffle": 1
3148
+ },
3149
+ "dtype": "<f4",
3150
+ "fill_value": "NaN",
3151
+ "filters": null,
3152
+ "order": "C",
3153
+ "shape": [
3154
+ 12,
3155
+ 3,
3156
+ 4
3157
+ ],
3158
+ "zarr_format": 2
3159
+ },
3160
+ "diazC_south/.zattrs": {
3161
+ "_ARRAY_DIMENSIONS": [
3162
+ "bry_time",
3163
+ "s_rho",
3164
+ "xi_rho"
3165
+ ],
3166
+ "coordinates": "abs_time month",
3167
+ "long_name": "southern boundary diazotroph carbon",
3168
+ "units": "mmol/m^3"
3169
+ },
3170
+ "diazC_west/.zarray": {
3171
+ "chunks": [
3172
+ 12,
3173
+ 3,
3174
+ 4
3175
+ ],
3176
+ "compressor": {
3177
+ "blocksize": 0,
3178
+ "clevel": 5,
3179
+ "cname": "lz4",
3180
+ "id": "blosc",
3181
+ "shuffle": 1
3182
+ },
3183
+ "dtype": "<f4",
3184
+ "fill_value": "NaN",
3185
+ "filters": null,
3186
+ "order": "C",
3187
+ "shape": [
3188
+ 12,
3189
+ 3,
3190
+ 4
3191
+ ],
3192
+ "zarr_format": 2
3193
+ },
3194
+ "diazC_west/.zattrs": {
3195
+ "_ARRAY_DIMENSIONS": [
3196
+ "bry_time",
3197
+ "s_rho",
3198
+ "eta_rho"
3199
+ ],
3200
+ "coordinates": "abs_time month",
3201
+ "long_name": "western boundary diazotroph carbon",
3202
+ "units": "mmol/m^3"
3203
+ },
3204
+ "diazChl_east/.zarray": {
3205
+ "chunks": [
3206
+ 12,
3207
+ 3,
3208
+ 4
3209
+ ],
3210
+ "compressor": {
3211
+ "blocksize": 0,
3212
+ "clevel": 5,
3213
+ "cname": "lz4",
3214
+ "id": "blosc",
3215
+ "shuffle": 1
3216
+ },
3217
+ "dtype": "<f4",
3218
+ "fill_value": "NaN",
3219
+ "filters": null,
3220
+ "order": "C",
3221
+ "shape": [
3222
+ 12,
3223
+ 3,
3224
+ 4
3225
+ ],
3226
+ "zarr_format": 2
3227
+ },
3228
+ "diazChl_east/.zattrs": {
3229
+ "_ARRAY_DIMENSIONS": [
3230
+ "bry_time",
3231
+ "s_rho",
3232
+ "eta_rho"
3233
+ ],
3234
+ "coordinates": "abs_time month",
3235
+ "long_name": "eastern boundary diazotroph chloropyll",
3236
+ "units": "mg/m^3"
3237
+ },
3238
+ "diazChl_north/.zarray": {
3239
+ "chunks": [
3240
+ 12,
3241
+ 3,
3242
+ 4
3243
+ ],
3244
+ "compressor": {
3245
+ "blocksize": 0,
3246
+ "clevel": 5,
3247
+ "cname": "lz4",
3248
+ "id": "blosc",
3249
+ "shuffle": 1
3250
+ },
3251
+ "dtype": "<f4",
3252
+ "fill_value": "NaN",
3253
+ "filters": null,
3254
+ "order": "C",
3255
+ "shape": [
3256
+ 12,
3257
+ 3,
3258
+ 4
3259
+ ],
3260
+ "zarr_format": 2
3261
+ },
3262
+ "diazChl_north/.zattrs": {
3263
+ "_ARRAY_DIMENSIONS": [
3264
+ "bry_time",
3265
+ "s_rho",
3266
+ "xi_rho"
3267
+ ],
3268
+ "coordinates": "abs_time month",
3269
+ "long_name": "northern boundary diazotroph chloropyll",
3270
+ "units": "mg/m^3"
3271
+ },
3272
+ "diazChl_south/.zarray": {
3273
+ "chunks": [
3274
+ 12,
3275
+ 3,
3276
+ 4
3277
+ ],
3278
+ "compressor": {
3279
+ "blocksize": 0,
3280
+ "clevel": 5,
3281
+ "cname": "lz4",
3282
+ "id": "blosc",
3283
+ "shuffle": 1
3284
+ },
3285
+ "dtype": "<f4",
3286
+ "fill_value": "NaN",
3287
+ "filters": null,
3288
+ "order": "C",
3289
+ "shape": [
3290
+ 12,
3291
+ 3,
3292
+ 4
3293
+ ],
3294
+ "zarr_format": 2
3295
+ },
3296
+ "diazChl_south/.zattrs": {
3297
+ "_ARRAY_DIMENSIONS": [
3298
+ "bry_time",
3299
+ "s_rho",
3300
+ "xi_rho"
3301
+ ],
3302
+ "coordinates": "abs_time month",
3303
+ "long_name": "southern boundary diazotroph chloropyll",
3304
+ "units": "mg/m^3"
3305
+ },
3306
+ "diazChl_west/.zarray": {
3307
+ "chunks": [
3308
+ 12,
3309
+ 3,
3310
+ 4
3311
+ ],
3312
+ "compressor": {
3313
+ "blocksize": 0,
3314
+ "clevel": 5,
3315
+ "cname": "lz4",
3316
+ "id": "blosc",
3317
+ "shuffle": 1
3318
+ },
3319
+ "dtype": "<f4",
3320
+ "fill_value": "NaN",
3321
+ "filters": null,
3322
+ "order": "C",
3323
+ "shape": [
3324
+ 12,
3325
+ 3,
3326
+ 4
3327
+ ],
3328
+ "zarr_format": 2
3329
+ },
3330
+ "diazChl_west/.zattrs": {
3331
+ "_ARRAY_DIMENSIONS": [
3332
+ "bry_time",
3333
+ "s_rho",
3334
+ "eta_rho"
3335
+ ],
3336
+ "coordinates": "abs_time month",
3337
+ "long_name": "western boundary diazotroph chloropyll",
3338
+ "units": "mg/m^3"
3339
+ },
3340
+ "diazFe_east/.zarray": {
3341
+ "chunks": [
3342
+ 12,
3343
+ 3,
3344
+ 4
3345
+ ],
3346
+ "compressor": {
3347
+ "blocksize": 0,
3348
+ "clevel": 5,
3349
+ "cname": "lz4",
3350
+ "id": "blosc",
3351
+ "shuffle": 1
3352
+ },
3353
+ "dtype": "<f4",
3354
+ "fill_value": "NaN",
3355
+ "filters": null,
3356
+ "order": "C",
3357
+ "shape": [
3358
+ 12,
3359
+ 3,
3360
+ 4
3361
+ ],
3362
+ "zarr_format": 2
3363
+ },
3364
+ "diazFe_east/.zattrs": {
3365
+ "_ARRAY_DIMENSIONS": [
3366
+ "bry_time",
3367
+ "s_rho",
3368
+ "eta_rho"
3369
+ ],
3370
+ "coordinates": "abs_time month",
3371
+ "long_name": "eastern boundary diazotroph iron",
3372
+ "units": "mmol/m^3"
3373
+ },
3374
+ "diazFe_north/.zarray": {
3375
+ "chunks": [
3376
+ 12,
3377
+ 3,
3378
+ 4
3379
+ ],
3380
+ "compressor": {
3381
+ "blocksize": 0,
3382
+ "clevel": 5,
3383
+ "cname": "lz4",
3384
+ "id": "blosc",
3385
+ "shuffle": 1
3386
+ },
3387
+ "dtype": "<f4",
3388
+ "fill_value": "NaN",
3389
+ "filters": null,
3390
+ "order": "C",
3391
+ "shape": [
3392
+ 12,
3393
+ 3,
3394
+ 4
3395
+ ],
3396
+ "zarr_format": 2
3397
+ },
3398
+ "diazFe_north/.zattrs": {
3399
+ "_ARRAY_DIMENSIONS": [
3400
+ "bry_time",
3401
+ "s_rho",
3402
+ "xi_rho"
3403
+ ],
3404
+ "coordinates": "abs_time month",
3405
+ "long_name": "northern boundary diazotroph iron",
3406
+ "units": "mmol/m^3"
3407
+ },
3408
+ "diazFe_south/.zarray": {
3409
+ "chunks": [
3410
+ 12,
3411
+ 3,
3412
+ 4
3413
+ ],
3414
+ "compressor": {
3415
+ "blocksize": 0,
3416
+ "clevel": 5,
3417
+ "cname": "lz4",
3418
+ "id": "blosc",
3419
+ "shuffle": 1
3420
+ },
3421
+ "dtype": "<f4",
3422
+ "fill_value": "NaN",
3423
+ "filters": null,
3424
+ "order": "C",
3425
+ "shape": [
3426
+ 12,
3427
+ 3,
3428
+ 4
3429
+ ],
3430
+ "zarr_format": 2
3431
+ },
3432
+ "diazFe_south/.zattrs": {
3433
+ "_ARRAY_DIMENSIONS": [
3434
+ "bry_time",
3435
+ "s_rho",
3436
+ "xi_rho"
3437
+ ],
3438
+ "coordinates": "abs_time month",
3439
+ "long_name": "southern boundary diazotroph iron",
3440
+ "units": "mmol/m^3"
3441
+ },
3442
+ "diazFe_west/.zarray": {
3443
+ "chunks": [
3444
+ 12,
3445
+ 3,
3446
+ 4
3447
+ ],
3448
+ "compressor": {
3449
+ "blocksize": 0,
3450
+ "clevel": 5,
3451
+ "cname": "lz4",
3452
+ "id": "blosc",
3453
+ "shuffle": 1
3454
+ },
3455
+ "dtype": "<f4",
3456
+ "fill_value": "NaN",
3457
+ "filters": null,
3458
+ "order": "C",
3459
+ "shape": [
3460
+ 12,
3461
+ 3,
3462
+ 4
3463
+ ],
3464
+ "zarr_format": 2
3465
+ },
3466
+ "diazFe_west/.zattrs": {
3467
+ "_ARRAY_DIMENSIONS": [
3468
+ "bry_time",
3469
+ "s_rho",
3470
+ "eta_rho"
3471
+ ],
3472
+ "coordinates": "abs_time month",
3473
+ "long_name": "western boundary diazotroph iron",
3474
+ "units": "mmol/m^3"
3475
+ },
3476
+ "diazP_east/.zarray": {
3477
+ "chunks": [
3478
+ 12,
3479
+ 3,
3480
+ 4
3481
+ ],
3482
+ "compressor": {
3483
+ "blocksize": 0,
3484
+ "clevel": 5,
3485
+ "cname": "lz4",
3486
+ "id": "blosc",
3487
+ "shuffle": 1
3488
+ },
3489
+ "dtype": "<f4",
3490
+ "fill_value": "NaN",
3491
+ "filters": null,
3492
+ "order": "C",
3493
+ "shape": [
3494
+ 12,
3495
+ 3,
3496
+ 4
3497
+ ],
3498
+ "zarr_format": 2
3499
+ },
3500
+ "diazP_east/.zattrs": {
3501
+ "_ARRAY_DIMENSIONS": [
3502
+ "bry_time",
3503
+ "s_rho",
3504
+ "eta_rho"
3505
+ ],
3506
+ "coordinates": "abs_time month",
3507
+ "long_name": "eastern boundary diazotroph phosphorus",
3508
+ "units": "mmol/m^3"
3509
+ },
3510
+ "diazP_north/.zarray": {
3511
+ "chunks": [
3512
+ 12,
3513
+ 3,
3514
+ 4
3515
+ ],
3516
+ "compressor": {
3517
+ "blocksize": 0,
3518
+ "clevel": 5,
3519
+ "cname": "lz4",
3520
+ "id": "blosc",
3521
+ "shuffle": 1
3522
+ },
3523
+ "dtype": "<f4",
3524
+ "fill_value": "NaN",
3525
+ "filters": null,
3526
+ "order": "C",
3527
+ "shape": [
3528
+ 12,
3529
+ 3,
3530
+ 4
3531
+ ],
3532
+ "zarr_format": 2
3533
+ },
3534
+ "diazP_north/.zattrs": {
3535
+ "_ARRAY_DIMENSIONS": [
3536
+ "bry_time",
3537
+ "s_rho",
3538
+ "xi_rho"
3539
+ ],
3540
+ "coordinates": "abs_time month",
3541
+ "long_name": "northern boundary diazotroph phosphorus",
3542
+ "units": "mmol/m^3"
3543
+ },
3544
+ "diazP_south/.zarray": {
3545
+ "chunks": [
3546
+ 12,
3547
+ 3,
3548
+ 4
3549
+ ],
3550
+ "compressor": {
3551
+ "blocksize": 0,
3552
+ "clevel": 5,
3553
+ "cname": "lz4",
3554
+ "id": "blosc",
3555
+ "shuffle": 1
3556
+ },
3557
+ "dtype": "<f4",
3558
+ "fill_value": "NaN",
3559
+ "filters": null,
3560
+ "order": "C",
3561
+ "shape": [
3562
+ 12,
3563
+ 3,
3564
+ 4
3565
+ ],
3566
+ "zarr_format": 2
3567
+ },
3568
+ "diazP_south/.zattrs": {
3569
+ "_ARRAY_DIMENSIONS": [
3570
+ "bry_time",
3571
+ "s_rho",
3572
+ "xi_rho"
3573
+ ],
3574
+ "coordinates": "abs_time month",
3575
+ "long_name": "southern boundary diazotroph phosphorus",
3576
+ "units": "mmol/m^3"
3577
+ },
3578
+ "diazP_west/.zarray": {
3579
+ "chunks": [
3580
+ 12,
3581
+ 3,
3582
+ 4
3583
+ ],
3584
+ "compressor": {
3585
+ "blocksize": 0,
3586
+ "clevel": 5,
3587
+ "cname": "lz4",
3588
+ "id": "blosc",
3589
+ "shuffle": 1
3590
+ },
3591
+ "dtype": "<f4",
3592
+ "fill_value": "NaN",
3593
+ "filters": null,
3594
+ "order": "C",
3595
+ "shape": [
3596
+ 12,
3597
+ 3,
3598
+ 4
3599
+ ],
3600
+ "zarr_format": 2
3601
+ },
3602
+ "diazP_west/.zattrs": {
3603
+ "_ARRAY_DIMENSIONS": [
3604
+ "bry_time",
3605
+ "s_rho",
3606
+ "eta_rho"
3607
+ ],
3608
+ "coordinates": "abs_time month",
3609
+ "long_name": "western boundary diazotroph phosphorus",
3610
+ "units": "mmol/m^3"
3611
+ },
3612
+ "month/.zarray": {
3613
+ "chunks": [
3614
+ 12
3615
+ ],
3616
+ "compressor": {
3617
+ "blocksize": 0,
3618
+ "clevel": 5,
3619
+ "cname": "lz4",
3620
+ "id": "blosc",
3621
+ "shuffle": 1
3622
+ },
3623
+ "dtype": "<i8",
3624
+ "fill_value": null,
3625
+ "filters": null,
3626
+ "order": "C",
3627
+ "shape": [
3628
+ 12
3629
+ ],
3630
+ "zarr_format": 2
3631
+ },
3632
+ "month/.zattrs": {
3633
+ "_ARRAY_DIMENSIONS": [
3634
+ "bry_time"
3635
+ ],
3636
+ "long_name": "Month index (1-12)"
3637
+ },
3638
+ "spC_east/.zarray": {
3639
+ "chunks": [
3640
+ 12,
3641
+ 3,
3642
+ 4
3643
+ ],
3644
+ "compressor": {
3645
+ "blocksize": 0,
3646
+ "clevel": 5,
3647
+ "cname": "lz4",
3648
+ "id": "blosc",
3649
+ "shuffle": 1
3650
+ },
3651
+ "dtype": "<f4",
3652
+ "fill_value": "NaN",
3653
+ "filters": null,
3654
+ "order": "C",
3655
+ "shape": [
3656
+ 12,
3657
+ 3,
3658
+ 4
3659
+ ],
3660
+ "zarr_format": 2
3661
+ },
3662
+ "spC_east/.zattrs": {
3663
+ "_ARRAY_DIMENSIONS": [
3664
+ "bry_time",
3665
+ "s_rho",
3666
+ "eta_rho"
3667
+ ],
3668
+ "coordinates": "abs_time month",
3669
+ "long_name": "eastern boundary small phytoplankton carbon",
3670
+ "units": "mmol/m^3"
3671
+ },
3672
+ "spC_north/.zarray": {
3673
+ "chunks": [
3674
+ 12,
3675
+ 3,
3676
+ 4
3677
+ ],
3678
+ "compressor": {
3679
+ "blocksize": 0,
3680
+ "clevel": 5,
3681
+ "cname": "lz4",
3682
+ "id": "blosc",
3683
+ "shuffle": 1
3684
+ },
3685
+ "dtype": "<f4",
3686
+ "fill_value": "NaN",
3687
+ "filters": null,
3688
+ "order": "C",
3689
+ "shape": [
3690
+ 12,
3691
+ 3,
3692
+ 4
3693
+ ],
3694
+ "zarr_format": 2
3695
+ },
3696
+ "spC_north/.zattrs": {
3697
+ "_ARRAY_DIMENSIONS": [
3698
+ "bry_time",
3699
+ "s_rho",
3700
+ "xi_rho"
3701
+ ],
3702
+ "coordinates": "abs_time month",
3703
+ "long_name": "northern boundary small phytoplankton carbon",
3704
+ "units": "mmol/m^3"
3705
+ },
3706
+ "spC_south/.zarray": {
3707
+ "chunks": [
3708
+ 12,
3709
+ 3,
3710
+ 4
3711
+ ],
3712
+ "compressor": {
3713
+ "blocksize": 0,
3714
+ "clevel": 5,
3715
+ "cname": "lz4",
3716
+ "id": "blosc",
3717
+ "shuffle": 1
3718
+ },
3719
+ "dtype": "<f4",
3720
+ "fill_value": "NaN",
3721
+ "filters": null,
3722
+ "order": "C",
3723
+ "shape": [
3724
+ 12,
3725
+ 3,
3726
+ 4
3727
+ ],
3728
+ "zarr_format": 2
3729
+ },
3730
+ "spC_south/.zattrs": {
3731
+ "_ARRAY_DIMENSIONS": [
3732
+ "bry_time",
3733
+ "s_rho",
3734
+ "xi_rho"
3735
+ ],
3736
+ "coordinates": "abs_time month",
3737
+ "long_name": "southern boundary small phytoplankton carbon",
3738
+ "units": "mmol/m^3"
3739
+ },
3740
+ "spC_west/.zarray": {
3741
+ "chunks": [
3742
+ 12,
3743
+ 3,
3744
+ 4
3745
+ ],
3746
+ "compressor": {
3747
+ "blocksize": 0,
3748
+ "clevel": 5,
3749
+ "cname": "lz4",
3750
+ "id": "blosc",
3751
+ "shuffle": 1
3752
+ },
3753
+ "dtype": "<f4",
3754
+ "fill_value": "NaN",
3755
+ "filters": null,
3756
+ "order": "C",
3757
+ "shape": [
3758
+ 12,
3759
+ 3,
3760
+ 4
3761
+ ],
3762
+ "zarr_format": 2
3763
+ },
3764
+ "spC_west/.zattrs": {
3765
+ "_ARRAY_DIMENSIONS": [
3766
+ "bry_time",
3767
+ "s_rho",
3768
+ "eta_rho"
3769
+ ],
3770
+ "coordinates": "abs_time month",
3771
+ "long_name": "western boundary small phytoplankton carbon",
3772
+ "units": "mmol/m^3"
3773
+ },
3774
+ "spCaCO3_east/.zarray": {
3775
+ "chunks": [
3776
+ 12,
3777
+ 3,
3778
+ 4
3779
+ ],
3780
+ "compressor": {
3781
+ "blocksize": 0,
3782
+ "clevel": 5,
3783
+ "cname": "lz4",
3784
+ "id": "blosc",
3785
+ "shuffle": 1
3786
+ },
3787
+ "dtype": "<f4",
3788
+ "fill_value": "NaN",
3789
+ "filters": null,
3790
+ "order": "C",
3791
+ "shape": [
3792
+ 12,
3793
+ 3,
3794
+ 4
3795
+ ],
3796
+ "zarr_format": 2
3797
+ },
3798
+ "spCaCO3_east/.zattrs": {
3799
+ "_ARRAY_DIMENSIONS": [
3800
+ "bry_time",
3801
+ "s_rho",
3802
+ "eta_rho"
3803
+ ],
3804
+ "coordinates": "abs_time month",
3805
+ "long_name": "eastern boundary small phytoplankton CaCO3",
3806
+ "units": "mmol/m^3"
3807
+ },
3808
+ "spCaCO3_north/.zarray": {
3809
+ "chunks": [
3810
+ 12,
3811
+ 3,
3812
+ 4
3813
+ ],
3814
+ "compressor": {
3815
+ "blocksize": 0,
3816
+ "clevel": 5,
3817
+ "cname": "lz4",
3818
+ "id": "blosc",
3819
+ "shuffle": 1
3820
+ },
3821
+ "dtype": "<f4",
3822
+ "fill_value": "NaN",
3823
+ "filters": null,
3824
+ "order": "C",
3825
+ "shape": [
3826
+ 12,
3827
+ 3,
3828
+ 4
3829
+ ],
3830
+ "zarr_format": 2
3831
+ },
3832
+ "spCaCO3_north/.zattrs": {
3833
+ "_ARRAY_DIMENSIONS": [
3834
+ "bry_time",
3835
+ "s_rho",
3836
+ "xi_rho"
3837
+ ],
3838
+ "coordinates": "abs_time month",
3839
+ "long_name": "northern boundary small phytoplankton CaCO3",
3840
+ "units": "mmol/m^3"
3841
+ },
3842
+ "spCaCO3_south/.zarray": {
3843
+ "chunks": [
3844
+ 12,
3845
+ 3,
3846
+ 4
3847
+ ],
3848
+ "compressor": {
3849
+ "blocksize": 0,
3850
+ "clevel": 5,
3851
+ "cname": "lz4",
3852
+ "id": "blosc",
3853
+ "shuffle": 1
3854
+ },
3855
+ "dtype": "<f4",
3856
+ "fill_value": "NaN",
3857
+ "filters": null,
3858
+ "order": "C",
3859
+ "shape": [
3860
+ 12,
3861
+ 3,
3862
+ 4
3863
+ ],
3864
+ "zarr_format": 2
3865
+ },
3866
+ "spCaCO3_south/.zattrs": {
3867
+ "_ARRAY_DIMENSIONS": [
3868
+ "bry_time",
3869
+ "s_rho",
3870
+ "xi_rho"
3871
+ ],
3872
+ "coordinates": "abs_time month",
3873
+ "long_name": "southern boundary small phytoplankton CaCO3",
3874
+ "units": "mmol/m^3"
3875
+ },
3876
+ "spCaCO3_west/.zarray": {
3877
+ "chunks": [
3878
+ 12,
3879
+ 3,
3880
+ 4
3881
+ ],
3882
+ "compressor": {
3883
+ "blocksize": 0,
3884
+ "clevel": 5,
3885
+ "cname": "lz4",
3886
+ "id": "blosc",
3887
+ "shuffle": 1
3888
+ },
3889
+ "dtype": "<f4",
3890
+ "fill_value": "NaN",
3891
+ "filters": null,
3892
+ "order": "C",
3893
+ "shape": [
3894
+ 12,
3895
+ 3,
3896
+ 4
3897
+ ],
3898
+ "zarr_format": 2
3899
+ },
3900
+ "spCaCO3_west/.zattrs": {
3901
+ "_ARRAY_DIMENSIONS": [
3902
+ "bry_time",
3903
+ "s_rho",
3904
+ "eta_rho"
3905
+ ],
3906
+ "coordinates": "abs_time month",
3907
+ "long_name": "western boundary small phytoplankton CaCO3",
3908
+ "units": "mmol/m^3"
3909
+ },
3910
+ "spChl_east/.zarray": {
3911
+ "chunks": [
3912
+ 12,
3913
+ 3,
3914
+ 4
3915
+ ],
3916
+ "compressor": {
3917
+ "blocksize": 0,
3918
+ "clevel": 5,
3919
+ "cname": "lz4",
3920
+ "id": "blosc",
3921
+ "shuffle": 1
3922
+ },
3923
+ "dtype": "<f4",
3924
+ "fill_value": "NaN",
3925
+ "filters": null,
3926
+ "order": "C",
3927
+ "shape": [
3928
+ 12,
3929
+ 3,
3930
+ 4
3931
+ ],
3932
+ "zarr_format": 2
3933
+ },
3934
+ "spChl_east/.zattrs": {
3935
+ "_ARRAY_DIMENSIONS": [
3936
+ "bry_time",
3937
+ "s_rho",
3938
+ "eta_rho"
3939
+ ],
3940
+ "coordinates": "abs_time month",
3941
+ "long_name": "eastern boundary small phytoplankton chlorophyll",
3942
+ "units": "mg/m^3"
3943
+ },
3944
+ "spChl_north/.zarray": {
3945
+ "chunks": [
3946
+ 12,
3947
+ 3,
3948
+ 4
3949
+ ],
3950
+ "compressor": {
3951
+ "blocksize": 0,
3952
+ "clevel": 5,
3953
+ "cname": "lz4",
3954
+ "id": "blosc",
3955
+ "shuffle": 1
3956
+ },
3957
+ "dtype": "<f4",
3958
+ "fill_value": "NaN",
3959
+ "filters": null,
3960
+ "order": "C",
3961
+ "shape": [
3962
+ 12,
3963
+ 3,
3964
+ 4
3965
+ ],
3966
+ "zarr_format": 2
3967
+ },
3968
+ "spChl_north/.zattrs": {
3969
+ "_ARRAY_DIMENSIONS": [
3970
+ "bry_time",
3971
+ "s_rho",
3972
+ "xi_rho"
3973
+ ],
3974
+ "coordinates": "abs_time month",
3975
+ "long_name": "northern boundary small phytoplankton chlorophyll",
3976
+ "units": "mg/m^3"
3977
+ },
3978
+ "spChl_south/.zarray": {
3979
+ "chunks": [
3980
+ 12,
3981
+ 3,
3982
+ 4
3983
+ ],
3984
+ "compressor": {
3985
+ "blocksize": 0,
3986
+ "clevel": 5,
3987
+ "cname": "lz4",
3988
+ "id": "blosc",
3989
+ "shuffle": 1
3990
+ },
3991
+ "dtype": "<f4",
3992
+ "fill_value": "NaN",
3993
+ "filters": null,
3994
+ "order": "C",
3995
+ "shape": [
3996
+ 12,
3997
+ 3,
3998
+ 4
3999
+ ],
4000
+ "zarr_format": 2
4001
+ },
4002
+ "spChl_south/.zattrs": {
4003
+ "_ARRAY_DIMENSIONS": [
4004
+ "bry_time",
4005
+ "s_rho",
4006
+ "xi_rho"
4007
+ ],
4008
+ "coordinates": "abs_time month",
4009
+ "long_name": "southern boundary small phytoplankton chlorophyll",
4010
+ "units": "mg/m^3"
4011
+ },
4012
+ "spChl_west/.zarray": {
4013
+ "chunks": [
4014
+ 12,
4015
+ 3,
4016
+ 4
4017
+ ],
4018
+ "compressor": {
4019
+ "blocksize": 0,
4020
+ "clevel": 5,
4021
+ "cname": "lz4",
4022
+ "id": "blosc",
4023
+ "shuffle": 1
4024
+ },
4025
+ "dtype": "<f4",
4026
+ "fill_value": "NaN",
4027
+ "filters": null,
4028
+ "order": "C",
4029
+ "shape": [
4030
+ 12,
4031
+ 3,
4032
+ 4
4033
+ ],
4034
+ "zarr_format": 2
4035
+ },
4036
+ "spChl_west/.zattrs": {
4037
+ "_ARRAY_DIMENSIONS": [
4038
+ "bry_time",
4039
+ "s_rho",
4040
+ "eta_rho"
4041
+ ],
4042
+ "coordinates": "abs_time month",
4043
+ "long_name": "western boundary small phytoplankton chlorophyll",
4044
+ "units": "mg/m^3"
4045
+ },
4046
+ "spFe_east/.zarray": {
4047
+ "chunks": [
4048
+ 12,
4049
+ 3,
4050
+ 4
4051
+ ],
4052
+ "compressor": {
4053
+ "blocksize": 0,
4054
+ "clevel": 5,
4055
+ "cname": "lz4",
4056
+ "id": "blosc",
4057
+ "shuffle": 1
4058
+ },
4059
+ "dtype": "<f4",
4060
+ "fill_value": "NaN",
4061
+ "filters": null,
4062
+ "order": "C",
4063
+ "shape": [
4064
+ 12,
4065
+ 3,
4066
+ 4
4067
+ ],
4068
+ "zarr_format": 2
4069
+ },
4070
+ "spFe_east/.zattrs": {
4071
+ "_ARRAY_DIMENSIONS": [
4072
+ "bry_time",
4073
+ "s_rho",
4074
+ "eta_rho"
4075
+ ],
4076
+ "coordinates": "abs_time month",
4077
+ "long_name": "eastern boundary small phytoplankton iron",
4078
+ "units": "mmol/m^3"
4079
+ },
4080
+ "spFe_north/.zarray": {
4081
+ "chunks": [
4082
+ 12,
4083
+ 3,
4084
+ 4
4085
+ ],
4086
+ "compressor": {
4087
+ "blocksize": 0,
4088
+ "clevel": 5,
4089
+ "cname": "lz4",
4090
+ "id": "blosc",
4091
+ "shuffle": 1
4092
+ },
4093
+ "dtype": "<f4",
4094
+ "fill_value": "NaN",
4095
+ "filters": null,
4096
+ "order": "C",
4097
+ "shape": [
4098
+ 12,
4099
+ 3,
4100
+ 4
4101
+ ],
4102
+ "zarr_format": 2
4103
+ },
4104
+ "spFe_north/.zattrs": {
4105
+ "_ARRAY_DIMENSIONS": [
4106
+ "bry_time",
4107
+ "s_rho",
4108
+ "xi_rho"
4109
+ ],
4110
+ "coordinates": "abs_time month",
4111
+ "long_name": "northern boundary small phytoplankton iron",
4112
+ "units": "mmol/m^3"
4113
+ },
4114
+ "spFe_south/.zarray": {
4115
+ "chunks": [
4116
+ 12,
4117
+ 3,
4118
+ 4
4119
+ ],
4120
+ "compressor": {
4121
+ "blocksize": 0,
4122
+ "clevel": 5,
4123
+ "cname": "lz4",
4124
+ "id": "blosc",
4125
+ "shuffle": 1
4126
+ },
4127
+ "dtype": "<f4",
4128
+ "fill_value": "NaN",
4129
+ "filters": null,
4130
+ "order": "C",
4131
+ "shape": [
4132
+ 12,
4133
+ 3,
4134
+ 4
4135
+ ],
4136
+ "zarr_format": 2
4137
+ },
4138
+ "spFe_south/.zattrs": {
4139
+ "_ARRAY_DIMENSIONS": [
4140
+ "bry_time",
4141
+ "s_rho",
4142
+ "xi_rho"
4143
+ ],
4144
+ "coordinates": "abs_time month",
4145
+ "long_name": "southern boundary small phytoplankton iron",
4146
+ "units": "mmol/m^3"
4147
+ },
4148
+ "spFe_west/.zarray": {
4149
+ "chunks": [
4150
+ 12,
4151
+ 3,
4152
+ 4
4153
+ ],
4154
+ "compressor": {
4155
+ "blocksize": 0,
4156
+ "clevel": 5,
4157
+ "cname": "lz4",
4158
+ "id": "blosc",
4159
+ "shuffle": 1
4160
+ },
4161
+ "dtype": "<f4",
4162
+ "fill_value": "NaN",
4163
+ "filters": null,
4164
+ "order": "C",
4165
+ "shape": [
4166
+ 12,
4167
+ 3,
4168
+ 4
4169
+ ],
4170
+ "zarr_format": 2
4171
+ },
4172
+ "spFe_west/.zattrs": {
4173
+ "_ARRAY_DIMENSIONS": [
4174
+ "bry_time",
4175
+ "s_rho",
4176
+ "eta_rho"
4177
+ ],
4178
+ "coordinates": "abs_time month",
4179
+ "long_name": "western boundary small phytoplankton iron",
4180
+ "units": "mmol/m^3"
4181
+ },
4182
+ "spP_east/.zarray": {
4183
+ "chunks": [
4184
+ 12,
4185
+ 3,
4186
+ 4
4187
+ ],
4188
+ "compressor": {
4189
+ "blocksize": 0,
4190
+ "clevel": 5,
4191
+ "cname": "lz4",
4192
+ "id": "blosc",
4193
+ "shuffle": 1
4194
+ },
4195
+ "dtype": "<f4",
4196
+ "fill_value": "NaN",
4197
+ "filters": null,
4198
+ "order": "C",
4199
+ "shape": [
4200
+ 12,
4201
+ 3,
4202
+ 4
4203
+ ],
4204
+ "zarr_format": 2
4205
+ },
4206
+ "spP_east/.zattrs": {
4207
+ "_ARRAY_DIMENSIONS": [
4208
+ "bry_time",
4209
+ "s_rho",
4210
+ "eta_rho"
4211
+ ],
4212
+ "coordinates": "abs_time month",
4213
+ "long_name": "eastern boundary small phytoplankton phosphorous",
4214
+ "units": "mmol/m^3"
4215
+ },
4216
+ "spP_north/.zarray": {
4217
+ "chunks": [
4218
+ 12,
4219
+ 3,
4220
+ 4
4221
+ ],
4222
+ "compressor": {
4223
+ "blocksize": 0,
4224
+ "clevel": 5,
4225
+ "cname": "lz4",
4226
+ "id": "blosc",
4227
+ "shuffle": 1
4228
+ },
4229
+ "dtype": "<f4",
4230
+ "fill_value": "NaN",
4231
+ "filters": null,
4232
+ "order": "C",
4233
+ "shape": [
4234
+ 12,
4235
+ 3,
4236
+ 4
4237
+ ],
4238
+ "zarr_format": 2
4239
+ },
4240
+ "spP_north/.zattrs": {
4241
+ "_ARRAY_DIMENSIONS": [
4242
+ "bry_time",
4243
+ "s_rho",
4244
+ "xi_rho"
4245
+ ],
4246
+ "coordinates": "abs_time month",
4247
+ "long_name": "northern boundary small phytoplankton phosphorous",
4248
+ "units": "mmol/m^3"
4249
+ },
4250
+ "spP_south/.zarray": {
4251
+ "chunks": [
4252
+ 12,
4253
+ 3,
4254
+ 4
4255
+ ],
4256
+ "compressor": {
4257
+ "blocksize": 0,
4258
+ "clevel": 5,
4259
+ "cname": "lz4",
4260
+ "id": "blosc",
4261
+ "shuffle": 1
4262
+ },
4263
+ "dtype": "<f4",
4264
+ "fill_value": "NaN",
4265
+ "filters": null,
4266
+ "order": "C",
4267
+ "shape": [
4268
+ 12,
4269
+ 3,
4270
+ 4
4271
+ ],
4272
+ "zarr_format": 2
4273
+ },
4274
+ "spP_south/.zattrs": {
4275
+ "_ARRAY_DIMENSIONS": [
4276
+ "bry_time",
4277
+ "s_rho",
4278
+ "xi_rho"
4279
+ ],
4280
+ "coordinates": "abs_time month",
4281
+ "long_name": "southern boundary small phytoplankton phosphorous",
4282
+ "units": "mmol/m^3"
4283
+ },
4284
+ "spP_west/.zarray": {
4285
+ "chunks": [
4286
+ 12,
4287
+ 3,
4288
+ 4
4289
+ ],
4290
+ "compressor": {
4291
+ "blocksize": 0,
4292
+ "clevel": 5,
4293
+ "cname": "lz4",
4294
+ "id": "blosc",
4295
+ "shuffle": 1
4296
+ },
4297
+ "dtype": "<f4",
4298
+ "fill_value": "NaN",
4299
+ "filters": null,
4300
+ "order": "C",
4301
+ "shape": [
4302
+ 12,
4303
+ 3,
4304
+ 4
4305
+ ],
4306
+ "zarr_format": 2
4307
+ },
4308
+ "spP_west/.zattrs": {
4309
+ "_ARRAY_DIMENSIONS": [
4310
+ "bry_time",
4311
+ "s_rho",
4312
+ "eta_rho"
4313
+ ],
4314
+ "coordinates": "abs_time month",
4315
+ "long_name": "western boundary small phytoplankton phosphorous",
4316
+ "units": "mmol/m^3"
4317
+ },
4318
+ "zooC_east/.zarray": {
4319
+ "chunks": [
4320
+ 12,
4321
+ 3,
4322
+ 4
4323
+ ],
4324
+ "compressor": {
4325
+ "blocksize": 0,
4326
+ "clevel": 5,
4327
+ "cname": "lz4",
4328
+ "id": "blosc",
4329
+ "shuffle": 1
4330
+ },
4331
+ "dtype": "<f4",
4332
+ "fill_value": "NaN",
4333
+ "filters": null,
4334
+ "order": "C",
4335
+ "shape": [
4336
+ 12,
4337
+ 3,
4338
+ 4
4339
+ ],
4340
+ "zarr_format": 2
4341
+ },
4342
+ "zooC_east/.zattrs": {
4343
+ "_ARRAY_DIMENSIONS": [
4344
+ "bry_time",
4345
+ "s_rho",
4346
+ "eta_rho"
4347
+ ],
4348
+ "coordinates": "abs_time month",
4349
+ "long_name": "eastern boundary zooplankton carbon",
4350
+ "units": "mmol/m^3"
4351
+ },
4352
+ "zooC_north/.zarray": {
4353
+ "chunks": [
4354
+ 12,
4355
+ 3,
4356
+ 4
4357
+ ],
4358
+ "compressor": {
4359
+ "blocksize": 0,
4360
+ "clevel": 5,
4361
+ "cname": "lz4",
4362
+ "id": "blosc",
4363
+ "shuffle": 1
4364
+ },
4365
+ "dtype": "<f4",
4366
+ "fill_value": "NaN",
4367
+ "filters": null,
4368
+ "order": "C",
4369
+ "shape": [
4370
+ 12,
4371
+ 3,
4372
+ 4
4373
+ ],
4374
+ "zarr_format": 2
4375
+ },
4376
+ "zooC_north/.zattrs": {
4377
+ "_ARRAY_DIMENSIONS": [
4378
+ "bry_time",
4379
+ "s_rho",
4380
+ "xi_rho"
4381
+ ],
4382
+ "coordinates": "abs_time month",
4383
+ "long_name": "northern boundary zooplankton carbon",
4384
+ "units": "mmol/m^3"
4385
+ },
4386
+ "zooC_south/.zarray": {
4387
+ "chunks": [
4388
+ 12,
4389
+ 3,
4390
+ 4
4391
+ ],
4392
+ "compressor": {
4393
+ "blocksize": 0,
4394
+ "clevel": 5,
4395
+ "cname": "lz4",
4396
+ "id": "blosc",
4397
+ "shuffle": 1
4398
+ },
4399
+ "dtype": "<f4",
4400
+ "fill_value": "NaN",
4401
+ "filters": null,
4402
+ "order": "C",
4403
+ "shape": [
4404
+ 12,
4405
+ 3,
4406
+ 4
4407
+ ],
4408
+ "zarr_format": 2
4409
+ },
4410
+ "zooC_south/.zattrs": {
4411
+ "_ARRAY_DIMENSIONS": [
4412
+ "bry_time",
4413
+ "s_rho",
4414
+ "xi_rho"
4415
+ ],
4416
+ "coordinates": "abs_time month",
4417
+ "long_name": "southern boundary zooplankton carbon",
4418
+ "units": "mmol/m^3"
4419
+ },
4420
+ "zooC_west/.zarray": {
4421
+ "chunks": [
4422
+ 12,
4423
+ 3,
4424
+ 4
4425
+ ],
4426
+ "compressor": {
4427
+ "blocksize": 0,
4428
+ "clevel": 5,
4429
+ "cname": "lz4",
4430
+ "id": "blosc",
4431
+ "shuffle": 1
4432
+ },
4433
+ "dtype": "<f4",
4434
+ "fill_value": "NaN",
4435
+ "filters": null,
4436
+ "order": "C",
4437
+ "shape": [
4438
+ 12,
4439
+ 3,
4440
+ 4
4441
+ ],
4442
+ "zarr_format": 2
4443
+ },
4444
+ "zooC_west/.zattrs": {
4445
+ "_ARRAY_DIMENSIONS": [
4446
+ "bry_time",
4447
+ "s_rho",
4448
+ "eta_rho"
4449
+ ],
4450
+ "coordinates": "abs_time month",
4451
+ "long_name": "western boundary zooplankton carbon",
4452
+ "units": "mmol/m^3"
4453
+ }
4454
+ },
4455
+ "zarr_consolidated_format": 1
4456
+ }