roms-tools 3.0.0__py3-none-any.whl → 3.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- roms_tools/analysis/roms_output.py +53 -231
- roms_tools/download.py +0 -1
- roms_tools/plot.py +621 -131
- roms_tools/regrid.py +0 -6
- roms_tools/setup/boundary_forcing.py +45 -40
- roms_tools/setup/cdr_forcing.py +144 -253
- roms_tools/setup/cdr_release.py +19 -15
- roms_tools/setup/datasets.py +140 -109
- roms_tools/setup/fill.py +0 -3
- roms_tools/setup/grid.py +123 -178
- roms_tools/setup/initial_conditions.py +65 -210
- roms_tools/setup/mask.py +0 -1
- roms_tools/setup/nesting.py +42 -46
- roms_tools/setup/river_forcing.py +304 -100
- roms_tools/setup/surface_forcing.py +48 -52
- roms_tools/setup/tides.py +37 -64
- roms_tools/setup/topography.py +13 -9
- roms_tools/setup/utils.py +24 -50
- roms_tools/tests/test_analysis/test_roms_output.py +2 -8
- roms_tools/tests/test_regrid.py +2 -4
- roms_tools/tests/test_setup/test_boundary_forcing.py +7 -30
- roms_tools/tests/test_setup/test_cdr_forcing.py +4 -33
- roms_tools/tests/test_setup/test_cdr_release.py +2 -11
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/zarr.json +45 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json +7076 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zarr.json +412 -412
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air_alt/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air_alt/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/zarr.json +628 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/zarr.json +45 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/zarr.json +679 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/dust/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/iron/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/nox/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/pco2_air_alt/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_unified_climatology.zarr/zarr.json +72 -71
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/zarr.json +48 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zarr.json +1626 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/zarr.json +59 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/zarr.json +59 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/zarr.json +59 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/zarr.json +59 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/Tair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/Tair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/lwrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/lwrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/qair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/qair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/rain/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/rain/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/swrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/swrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/uwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/uwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/vwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/vwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/zarr.json +494 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/Tair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/Tair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/lwrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/lwrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/qair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/qair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/rain/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/rain/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/swrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/swrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/zarr.json +494 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/angle/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/angle_coarse/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/f/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/f/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/h/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/h/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pm/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pm/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pn/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pn/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/spherical/c +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/spherical/zarr.json +41 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/zarr.json +1160 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/c +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/zarr.json +41 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/zarr.json +1160 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/w/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zarr.json +2481 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zeta/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zeta/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/DOC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Fe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/Lig/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/NO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/O2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/PO4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/SiO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diatSi/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/diazP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/salt/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spCaCO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/spP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/temp/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/u/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ubar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/v/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/vbar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zarr.json +197 -197
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zeta/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zooC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/nriver/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/nriver/zarr.json +45 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/zarr.json +50 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/zarr.json +43 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/zarr.json +53 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/zarr.json +51 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_long_name/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_long_name/zarr.json +43 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/zarr.json +43 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_unit/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_unit/zarr.json +43 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/zarr.json +526 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/nriver/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/nriver/zarr.json +2 -2
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_index/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_name/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_name/zarr.json +2 -2
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_tracer/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_tracer/zarr.json +3 -3
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_volume/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/river_volume/zarr.json +3 -3
- roms_tools/tests/test_setup/test_data/river_forcing_with_bgc.zarr/zarr.json +73 -73
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/Tair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/Tair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/abs_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/lwrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/lwrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/qair/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/qair/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/rain/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/rain/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/swrad/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/swrad/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/uwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/uwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/vwnd/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/vwnd/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/zarr.json +494 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ntides/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ntides/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/omega/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/omega/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Im/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Re/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Im/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Re/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/zarr.json +542 -0
- roms_tools/tests/test_setup/test_datasets.py +52 -24
- roms_tools/tests/test_setup/test_fill.py +0 -2
- roms_tools/tests/test_setup/test_grid.py +12 -37
- roms_tools/tests/test_setup/test_initial_conditions.py +7 -27
- roms_tools/tests/test_setup/test_nesting.py +14 -25
- roms_tools/tests/test_setup/test_river_forcing.py +263 -20
- roms_tools/tests/test_setup/test_surface_forcing.py +13 -31
- roms_tools/tests/test_setup/test_tides.py +2 -16
- roms_tools/tests/test_setup/test_utils.py +2 -5
- roms_tools/tests/test_setup/test_validation.py +0 -3
- roms_tools/tests/test_tiling/test_partition.py +2 -2
- roms_tools/tiling/partition.py +1 -4
- roms_tools/utils.py +44 -9
- roms_tools/vertical_coordinate.py +2 -3
- roms_tools-3.1.0.dist-info/METADATA +143 -0
- roms_tools-3.1.0.dist-info/RECORD +1108 -0
- roms_tools/analysis/utils.py +0 -103
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zattrs +0 -14
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zmetadata +0 -4456
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/.zmetadata +0 -386
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/iron_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nhy_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/nox_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air_alt/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air_alt/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_air_alt/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/pco2_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/.zattrs +0 -12
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/.zmetadata +0 -418
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zattrs +0 -13
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zmetadata +0 -1024
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/bry_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/.zattrs +0 -17
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/.zattrs +0 -17
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/.zattrs +0 -17
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/.zattrs +0 -17
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/.zmetadata +0 -311
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/Tair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/Tair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/Tair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/abs_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/lwrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/lwrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/lwrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/qair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/qair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/qair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/rain/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/rain/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/rain/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/swrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/swrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/swrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/time/0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/uwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/uwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/uwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/vwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/vwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/coarse_surface_forcing.zarr/vwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/.zmetadata +0 -311
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/Tair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/Tair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/Tair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/abs_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/lwrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/lwrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/lwrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/qair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/qair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/qair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/rain/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/rain/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/rain/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/swrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/swrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/swrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/time/0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/uwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/corrected_surface_forcing.zarr/vwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/.zattrs +0 -14
- roms_tools/tests/test_setup/test_data/grid.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/grid.zarr/.zmetadata +0 -695
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_r/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid.zarr/Cs_w/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/angle/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/angle/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/angle/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/angle_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/angle_coarse/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/angle_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/f/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/f/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/f/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/h/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/h/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/h/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_u/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_v/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lat_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_u/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_v/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid.zarr/lon_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_coarse/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_rho/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_u/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_v/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/mask_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pm/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/pm/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/pm/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/pn/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid.zarr/pn/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid.zarr/pn/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_r/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid.zarr/sigma_w/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/spherical/.zarray +0 -10
- roms_tools/tests/test_setup/test_data/grid.zarr/spherical/.zattrs +0 -5
- roms_tools/tests/test_setup/test_data/grid.zarr/spherical/0 +0 -1
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zattrs +0 -14
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/.zmetadata +0 -695
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_r/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/Cs_w/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/angle_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/f/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lat_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/lon_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_coarse/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_rho/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_u/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/mask_v/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pm/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/pn/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_r/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/.zarray +0 -10
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/.zattrs +0 -5
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/0 +0 -1
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/.zattrs +0 -12
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/.zmetadata +0 -1600
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_r/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Cs_w/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ocean_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/w/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/w/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/w/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zeta/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zeta/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zeta/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/.zarray +0 -26
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/0.0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zattrs +0 -1
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zmetadata +0 -322
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/nriver/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/nriver/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/nriver/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_fraction/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/.zattrs +0 -8
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_index/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/.zarray +0 -22
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/.zattrs +0 -9
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_long_name/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_long_name/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_long_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_unit/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_unit/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_unit/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/.zattrs +0 -11
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/.zmetadata +0 -311
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/Tair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/Tair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/Tair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/abs_time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/abs_time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/lwrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/lwrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/lwrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/qair/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/qair/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/qair/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/rain/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/rain/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/rain/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/swrad/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/swrad/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/swrad/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/time/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/time/.zattrs +0 -7
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/time/0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/uwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/uwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/uwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/vwnd/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/vwnd/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/surface_forcing.zarr/vwnd/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/.zattrs +0 -6
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/.zgroup +0 -3
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/.zmetadata +0 -336
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ntides/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ntides/.zattrs +0 -5
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ntides/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/omega/.zarray +0 -20
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/omega/.zattrs +0 -5
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/omega/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Im/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Im/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Im/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Re/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Re/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/pot_Re/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Im/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Im/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Im/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Re/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Re/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/ssh_Re/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/.zarray +0 -24
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/.zattrs +0 -10
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/0.0.0 +0 -0
- roms_tools-3.0.0.dist-info/METADATA +0 -143
- roms_tools-3.0.0.dist-info/RECORD +0 -1462
- {roms_tools-3.0.0.dist-info → roms_tools-3.1.0.dist-info}/WHEEL +0 -0
- {roms_tools-3.0.0.dist-info → roms_tools-3.1.0.dist-info}/licenses/LICENSE +0 -0
- {roms_tools-3.0.0.dist-info → roms_tools-3.1.0.dist-info}/top_level.txt +0 -0
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zarr.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"attributes": {
|
|
3
3
|
"title": "ROMS boundary forcing file created by ROMS-Tools",
|
|
4
|
-
"roms_tools_version": "2.6.
|
|
4
|
+
"roms_tools_version": "2.6.1.dev52+gd44fe5da",
|
|
5
5
|
"start_time": "2021-06-29 00:00:00",
|
|
6
6
|
"end_time": "2021-06-30 00:00:00",
|
|
7
7
|
"source": "UNIFIED",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"kind": "inline",
|
|
19
19
|
"must_understand": false,
|
|
20
20
|
"metadata": {
|
|
21
|
-
"
|
|
21
|
+
"DOC_north": {
|
|
22
22
|
"shape": [
|
|
23
23
|
12,
|
|
24
24
|
3,
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
}
|
|
59
59
|
],
|
|
60
60
|
"attributes": {
|
|
61
|
-
"long_name": "
|
|
62
|
-
"units": "
|
|
61
|
+
"long_name": "northern boundary dissolved organic carbon",
|
|
62
|
+
"units": "mmol/m^3",
|
|
63
63
|
"coordinates": "abs_time month",
|
|
64
64
|
"_FillValue": "AAAAAAAA+H8="
|
|
65
65
|
},
|
|
@@ -72,20 +72,16 @@
|
|
|
72
72
|
"node_type": "array",
|
|
73
73
|
"storage_transformers": []
|
|
74
74
|
},
|
|
75
|
-
"
|
|
75
|
+
"month": {
|
|
76
76
|
"shape": [
|
|
77
|
-
12
|
|
78
|
-
3,
|
|
79
|
-
4
|
|
77
|
+
12
|
|
80
78
|
],
|
|
81
|
-
"data_type": "
|
|
79
|
+
"data_type": "int64",
|
|
82
80
|
"chunk_grid": {
|
|
83
81
|
"name": "regular",
|
|
84
82
|
"configuration": {
|
|
85
83
|
"chunk_shape": [
|
|
86
|
-
12
|
|
87
|
-
3,
|
|
88
|
-
4
|
|
84
|
+
12
|
|
89
85
|
]
|
|
90
86
|
}
|
|
91
87
|
},
|
|
@@ -95,7 +91,7 @@
|
|
|
95
91
|
"separator": "/"
|
|
96
92
|
}
|
|
97
93
|
},
|
|
98
|
-
"fill_value": 0
|
|
94
|
+
"fill_value": 0,
|
|
99
95
|
"codecs": [
|
|
100
96
|
{
|
|
101
97
|
"name": "bytes",
|
|
@@ -112,21 +108,16 @@
|
|
|
112
108
|
}
|
|
113
109
|
],
|
|
114
110
|
"attributes": {
|
|
115
|
-
"long_name": "
|
|
116
|
-
"units": "mg/m^3",
|
|
117
|
-
"coordinates": "abs_time month",
|
|
118
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
111
|
+
"long_name": "Month index (1-12)"
|
|
119
112
|
},
|
|
120
113
|
"dimension_names": [
|
|
121
|
-
"bry_time"
|
|
122
|
-
"s_rho",
|
|
123
|
-
"eta_rho"
|
|
114
|
+
"bry_time"
|
|
124
115
|
],
|
|
125
116
|
"zarr_format": 3,
|
|
126
117
|
"node_type": "array",
|
|
127
118
|
"storage_transformers": []
|
|
128
119
|
},
|
|
129
|
-
"
|
|
120
|
+
"spC_west": {
|
|
130
121
|
"shape": [
|
|
131
122
|
12,
|
|
132
123
|
3,
|
|
@@ -166,7 +157,7 @@
|
|
|
166
157
|
}
|
|
167
158
|
],
|
|
168
159
|
"attributes": {
|
|
169
|
-
"long_name": "
|
|
160
|
+
"long_name": "western boundary small phytoplankton carbon",
|
|
170
161
|
"units": "mmol/m^3",
|
|
171
162
|
"coordinates": "abs_time month",
|
|
172
163
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -180,7 +171,7 @@
|
|
|
180
171
|
"node_type": "array",
|
|
181
172
|
"storage_transformers": []
|
|
182
173
|
},
|
|
183
|
-
"
|
|
174
|
+
"diatSi_west": {
|
|
184
175
|
"shape": [
|
|
185
176
|
12,
|
|
186
177
|
3,
|
|
@@ -220,7 +211,7 @@
|
|
|
220
211
|
}
|
|
221
212
|
],
|
|
222
213
|
"attributes": {
|
|
223
|
-
"long_name": "
|
|
214
|
+
"long_name": "western boundary diatom silicate",
|
|
224
215
|
"units": "mmol/m^3",
|
|
225
216
|
"coordinates": "abs_time month",
|
|
226
217
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -234,7 +225,7 @@
|
|
|
234
225
|
"node_type": "array",
|
|
235
226
|
"storage_transformers": []
|
|
236
227
|
},
|
|
237
|
-
"
|
|
228
|
+
"spP_east": {
|
|
238
229
|
"shape": [
|
|
239
230
|
12,
|
|
240
231
|
3,
|
|
@@ -274,7 +265,7 @@
|
|
|
274
265
|
}
|
|
275
266
|
],
|
|
276
267
|
"attributes": {
|
|
277
|
-
"long_name": "
|
|
268
|
+
"long_name": "eastern boundary small phytoplankton phosphorous",
|
|
278
269
|
"units": "mmol/m^3",
|
|
279
270
|
"coordinates": "abs_time month",
|
|
280
271
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -282,13 +273,13 @@
|
|
|
282
273
|
"dimension_names": [
|
|
283
274
|
"bry_time",
|
|
284
275
|
"s_rho",
|
|
285
|
-
"
|
|
276
|
+
"eta_rho"
|
|
286
277
|
],
|
|
287
278
|
"zarr_format": 3,
|
|
288
279
|
"node_type": "array",
|
|
289
280
|
"storage_transformers": []
|
|
290
281
|
},
|
|
291
|
-
"
|
|
282
|
+
"SiO3_west": {
|
|
292
283
|
"shape": [
|
|
293
284
|
12,
|
|
294
285
|
3,
|
|
@@ -328,7 +319,7 @@
|
|
|
328
319
|
}
|
|
329
320
|
],
|
|
330
321
|
"attributes": {
|
|
331
|
-
"long_name": "western boundary
|
|
322
|
+
"long_name": "western boundary dissolved inorganic silicate",
|
|
332
323
|
"units": "mmol/m^3",
|
|
333
324
|
"coordinates": "abs_time month",
|
|
334
325
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -342,7 +333,7 @@
|
|
|
342
333
|
"node_type": "array",
|
|
343
334
|
"storage_transformers": []
|
|
344
335
|
},
|
|
345
|
-
"
|
|
336
|
+
"spChl_north": {
|
|
346
337
|
"shape": [
|
|
347
338
|
12,
|
|
348
339
|
3,
|
|
@@ -382,21 +373,21 @@
|
|
|
382
373
|
}
|
|
383
374
|
],
|
|
384
375
|
"attributes": {
|
|
385
|
-
"long_name": "
|
|
386
|
-
"units": "
|
|
376
|
+
"long_name": "northern boundary small phytoplankton chlorophyll",
|
|
377
|
+
"units": "mg/m^3",
|
|
387
378
|
"coordinates": "abs_time month",
|
|
388
379
|
"_FillValue": "AAAAAAAA+H8="
|
|
389
380
|
},
|
|
390
381
|
"dimension_names": [
|
|
391
382
|
"bry_time",
|
|
392
383
|
"s_rho",
|
|
393
|
-
"
|
|
384
|
+
"xi_rho"
|
|
394
385
|
],
|
|
395
386
|
"zarr_format": 3,
|
|
396
387
|
"node_type": "array",
|
|
397
388
|
"storage_transformers": []
|
|
398
389
|
},
|
|
399
|
-
"
|
|
390
|
+
"diatChl_south": {
|
|
400
391
|
"shape": [
|
|
401
392
|
12,
|
|
402
393
|
3,
|
|
@@ -436,8 +427,8 @@
|
|
|
436
427
|
}
|
|
437
428
|
],
|
|
438
429
|
"attributes": {
|
|
439
|
-
"long_name": "
|
|
440
|
-
"units": "
|
|
430
|
+
"long_name": "southern boundary diatom chloropyll",
|
|
431
|
+
"units": "mg/m^3",
|
|
441
432
|
"coordinates": "abs_time month",
|
|
442
433
|
"_FillValue": "AAAAAAAA+H8="
|
|
443
434
|
},
|
|
@@ -450,7 +441,7 @@
|
|
|
450
441
|
"node_type": "array",
|
|
451
442
|
"storage_transformers": []
|
|
452
443
|
},
|
|
453
|
-
"
|
|
444
|
+
"diatSi_south": {
|
|
454
445
|
"shape": [
|
|
455
446
|
12,
|
|
456
447
|
3,
|
|
@@ -490,8 +481,8 @@
|
|
|
490
481
|
}
|
|
491
482
|
],
|
|
492
483
|
"attributes": {
|
|
493
|
-
"long_name": "southern boundary
|
|
494
|
-
"units": "
|
|
484
|
+
"long_name": "southern boundary diatom silicate",
|
|
485
|
+
"units": "mmol/m^3",
|
|
495
486
|
"coordinates": "abs_time month",
|
|
496
487
|
"_FillValue": "AAAAAAAA+H8="
|
|
497
488
|
},
|
|
@@ -504,7 +495,7 @@
|
|
|
504
495
|
"node_type": "array",
|
|
505
496
|
"storage_transformers": []
|
|
506
497
|
},
|
|
507
|
-
"
|
|
498
|
+
"DIC_ALT_CO2_north": {
|
|
508
499
|
"shape": [
|
|
509
500
|
12,
|
|
510
501
|
3,
|
|
@@ -544,7 +535,7 @@
|
|
|
544
535
|
}
|
|
545
536
|
],
|
|
546
537
|
"attributes": {
|
|
547
|
-
"long_name": "
|
|
538
|
+
"long_name": "northern boundary dissolved inorganic carbon, alternative CO2",
|
|
548
539
|
"units": "mmol/m^3",
|
|
549
540
|
"coordinates": "abs_time month",
|
|
550
541
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -552,13 +543,13 @@
|
|
|
552
543
|
"dimension_names": [
|
|
553
544
|
"bry_time",
|
|
554
545
|
"s_rho",
|
|
555
|
-
"
|
|
546
|
+
"xi_rho"
|
|
556
547
|
],
|
|
557
548
|
"zarr_format": 3,
|
|
558
549
|
"node_type": "array",
|
|
559
550
|
"storage_transformers": []
|
|
560
551
|
},
|
|
561
|
-
"
|
|
552
|
+
"Lig_east": {
|
|
562
553
|
"shape": [
|
|
563
554
|
12,
|
|
564
555
|
3,
|
|
@@ -598,7 +589,7 @@
|
|
|
598
589
|
}
|
|
599
590
|
],
|
|
600
591
|
"attributes": {
|
|
601
|
-
"long_name": "
|
|
592
|
+
"long_name": "eastern boundary iron binding ligand",
|
|
602
593
|
"units": "mmol/m^3",
|
|
603
594
|
"coordinates": "abs_time month",
|
|
604
595
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -612,7 +603,7 @@
|
|
|
612
603
|
"node_type": "array",
|
|
613
604
|
"storage_transformers": []
|
|
614
605
|
},
|
|
615
|
-
"
|
|
606
|
+
"zooC_north": {
|
|
616
607
|
"shape": [
|
|
617
608
|
12,
|
|
618
609
|
3,
|
|
@@ -652,7 +643,7 @@
|
|
|
652
643
|
}
|
|
653
644
|
],
|
|
654
645
|
"attributes": {
|
|
655
|
-
"long_name": "
|
|
646
|
+
"long_name": "northern boundary zooplankton carbon",
|
|
656
647
|
"units": "mmol/m^3",
|
|
657
648
|
"coordinates": "abs_time month",
|
|
658
649
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -660,13 +651,13 @@
|
|
|
660
651
|
"dimension_names": [
|
|
661
652
|
"bry_time",
|
|
662
653
|
"s_rho",
|
|
663
|
-
"
|
|
654
|
+
"xi_rho"
|
|
664
655
|
],
|
|
665
656
|
"zarr_format": 3,
|
|
666
657
|
"node_type": "array",
|
|
667
658
|
"storage_transformers": []
|
|
668
659
|
},
|
|
669
|
-
"
|
|
660
|
+
"ALK_south": {
|
|
670
661
|
"shape": [
|
|
671
662
|
12,
|
|
672
663
|
3,
|
|
@@ -706,8 +697,8 @@
|
|
|
706
697
|
}
|
|
707
698
|
],
|
|
708
699
|
"attributes": {
|
|
709
|
-
"long_name": "southern boundary
|
|
710
|
-
"units": "
|
|
700
|
+
"long_name": "southern boundary alkalinity",
|
|
701
|
+
"units": "meq/m^3",
|
|
711
702
|
"coordinates": "abs_time month",
|
|
712
703
|
"_FillValue": "AAAAAAAA+H8="
|
|
713
704
|
},
|
|
@@ -720,7 +711,7 @@
|
|
|
720
711
|
"node_type": "array",
|
|
721
712
|
"storage_transformers": []
|
|
722
713
|
},
|
|
723
|
-
"
|
|
714
|
+
"diazP_south": {
|
|
724
715
|
"shape": [
|
|
725
716
|
12,
|
|
726
717
|
3,
|
|
@@ -760,7 +751,7 @@
|
|
|
760
751
|
}
|
|
761
752
|
],
|
|
762
753
|
"attributes": {
|
|
763
|
-
"long_name": "southern boundary diazotroph
|
|
754
|
+
"long_name": "southern boundary diazotroph phosphorus",
|
|
764
755
|
"units": "mmol/m^3",
|
|
765
756
|
"coordinates": "abs_time month",
|
|
766
757
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -774,7 +765,7 @@
|
|
|
774
765
|
"node_type": "array",
|
|
775
766
|
"storage_transformers": []
|
|
776
767
|
},
|
|
777
|
-
"
|
|
768
|
+
"SiO3_south": {
|
|
778
769
|
"shape": [
|
|
779
770
|
12,
|
|
780
771
|
3,
|
|
@@ -814,7 +805,7 @@
|
|
|
814
805
|
}
|
|
815
806
|
],
|
|
816
807
|
"attributes": {
|
|
817
|
-
"long_name": "
|
|
808
|
+
"long_name": "southern boundary dissolved inorganic silicate",
|
|
818
809
|
"units": "mmol/m^3",
|
|
819
810
|
"coordinates": "abs_time month",
|
|
820
811
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -822,13 +813,13 @@
|
|
|
822
813
|
"dimension_names": [
|
|
823
814
|
"bry_time",
|
|
824
815
|
"s_rho",
|
|
825
|
-
"
|
|
816
|
+
"xi_rho"
|
|
826
817
|
],
|
|
827
818
|
"zarr_format": 3,
|
|
828
819
|
"node_type": "array",
|
|
829
820
|
"storage_transformers": []
|
|
830
821
|
},
|
|
831
|
-
"
|
|
822
|
+
"diazChl_east": {
|
|
832
823
|
"shape": [
|
|
833
824
|
12,
|
|
834
825
|
3,
|
|
@@ -868,8 +859,8 @@
|
|
|
868
859
|
}
|
|
869
860
|
],
|
|
870
861
|
"attributes": {
|
|
871
|
-
"long_name": "eastern boundary
|
|
872
|
-
"units": "
|
|
862
|
+
"long_name": "eastern boundary diazotroph chloropyll",
|
|
863
|
+
"units": "mg/m^3",
|
|
873
864
|
"coordinates": "abs_time month",
|
|
874
865
|
"_FillValue": "AAAAAAAA+H8="
|
|
875
866
|
},
|
|
@@ -882,7 +873,7 @@
|
|
|
882
873
|
"node_type": "array",
|
|
883
874
|
"storage_transformers": []
|
|
884
875
|
},
|
|
885
|
-
"
|
|
876
|
+
"diazP_east": {
|
|
886
877
|
"shape": [
|
|
887
878
|
12,
|
|
888
879
|
3,
|
|
@@ -922,7 +913,7 @@
|
|
|
922
913
|
}
|
|
923
914
|
],
|
|
924
915
|
"attributes": {
|
|
925
|
-
"long_name": "eastern boundary
|
|
916
|
+
"long_name": "eastern boundary diazotroph phosphorus",
|
|
926
917
|
"units": "mmol/m^3",
|
|
927
918
|
"coordinates": "abs_time month",
|
|
928
919
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -936,7 +927,7 @@
|
|
|
936
927
|
"node_type": "array",
|
|
937
928
|
"storage_transformers": []
|
|
938
929
|
},
|
|
939
|
-
"
|
|
930
|
+
"DON_south": {
|
|
940
931
|
"shape": [
|
|
941
932
|
12,
|
|
942
933
|
3,
|
|
@@ -976,7 +967,7 @@
|
|
|
976
967
|
}
|
|
977
968
|
],
|
|
978
969
|
"attributes": {
|
|
979
|
-
"long_name": "southern boundary dissolved organic
|
|
970
|
+
"long_name": "southern boundary dissolved organic nitrogen",
|
|
980
971
|
"units": "mmol/m^3",
|
|
981
972
|
"coordinates": "abs_time month",
|
|
982
973
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -990,7 +981,7 @@
|
|
|
990
981
|
"node_type": "array",
|
|
991
982
|
"storage_transformers": []
|
|
992
983
|
},
|
|
993
|
-
"
|
|
984
|
+
"spFe_west": {
|
|
994
985
|
"shape": [
|
|
995
986
|
12,
|
|
996
987
|
3,
|
|
@@ -1030,7 +1021,7 @@
|
|
|
1030
1021
|
}
|
|
1031
1022
|
],
|
|
1032
1023
|
"attributes": {
|
|
1033
|
-
"long_name": "
|
|
1024
|
+
"long_name": "western boundary small phytoplankton iron",
|
|
1034
1025
|
"units": "mmol/m^3",
|
|
1035
1026
|
"coordinates": "abs_time month",
|
|
1036
1027
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1038,13 +1029,13 @@
|
|
|
1038
1029
|
"dimension_names": [
|
|
1039
1030
|
"bry_time",
|
|
1040
1031
|
"s_rho",
|
|
1041
|
-
"
|
|
1032
|
+
"eta_rho"
|
|
1042
1033
|
],
|
|
1043
1034
|
"zarr_format": 3,
|
|
1044
1035
|
"node_type": "array",
|
|
1045
1036
|
"storage_transformers": []
|
|
1046
1037
|
},
|
|
1047
|
-
"
|
|
1038
|
+
"spCaCO3_east": {
|
|
1048
1039
|
"shape": [
|
|
1049
1040
|
12,
|
|
1050
1041
|
3,
|
|
@@ -1084,7 +1075,7 @@
|
|
|
1084
1075
|
}
|
|
1085
1076
|
],
|
|
1086
1077
|
"attributes": {
|
|
1087
|
-
"long_name": "
|
|
1078
|
+
"long_name": "eastern boundary small phytoplankton CaCO3",
|
|
1088
1079
|
"units": "mmol/m^3",
|
|
1089
1080
|
"coordinates": "abs_time month",
|
|
1090
1081
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1098,7 +1089,7 @@
|
|
|
1098
1089
|
"node_type": "array",
|
|
1099
1090
|
"storage_transformers": []
|
|
1100
1091
|
},
|
|
1101
|
-
"
|
|
1092
|
+
"spFe_north": {
|
|
1102
1093
|
"shape": [
|
|
1103
1094
|
12,
|
|
1104
1095
|
3,
|
|
@@ -1138,7 +1129,7 @@
|
|
|
1138
1129
|
}
|
|
1139
1130
|
],
|
|
1140
1131
|
"attributes": {
|
|
1141
|
-
"long_name": "northern boundary
|
|
1132
|
+
"long_name": "northern boundary small phytoplankton iron",
|
|
1142
1133
|
"units": "mmol/m^3",
|
|
1143
1134
|
"coordinates": "abs_time month",
|
|
1144
1135
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1152,7 +1143,7 @@
|
|
|
1152
1143
|
"node_type": "array",
|
|
1153
1144
|
"storage_transformers": []
|
|
1154
1145
|
},
|
|
1155
|
-
"
|
|
1146
|
+
"diatP_south": {
|
|
1156
1147
|
"shape": [
|
|
1157
1148
|
12,
|
|
1158
1149
|
3,
|
|
@@ -1192,7 +1183,7 @@
|
|
|
1192
1183
|
}
|
|
1193
1184
|
],
|
|
1194
1185
|
"attributes": {
|
|
1195
|
-
"long_name": "southern boundary
|
|
1186
|
+
"long_name": "southern boundary diatom phosphorus",
|
|
1196
1187
|
"units": "mmol/m^3",
|
|
1197
1188
|
"coordinates": "abs_time month",
|
|
1198
1189
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1206,7 +1197,7 @@
|
|
|
1206
1197
|
"node_type": "array",
|
|
1207
1198
|
"storage_transformers": []
|
|
1208
1199
|
},
|
|
1209
|
-
"
|
|
1200
|
+
"spC_south": {
|
|
1210
1201
|
"shape": [
|
|
1211
1202
|
12,
|
|
1212
1203
|
3,
|
|
@@ -1246,7 +1237,7 @@
|
|
|
1246
1237
|
}
|
|
1247
1238
|
],
|
|
1248
1239
|
"attributes": {
|
|
1249
|
-
"long_name": "
|
|
1240
|
+
"long_name": "southern boundary small phytoplankton carbon",
|
|
1250
1241
|
"units": "mmol/m^3",
|
|
1251
1242
|
"coordinates": "abs_time month",
|
|
1252
1243
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1260,20 +1251,16 @@
|
|
|
1260
1251
|
"node_type": "array",
|
|
1261
1252
|
"storage_transformers": []
|
|
1262
1253
|
},
|
|
1263
|
-
"
|
|
1254
|
+
"abs_time": {
|
|
1264
1255
|
"shape": [
|
|
1265
|
-
12
|
|
1266
|
-
3,
|
|
1267
|
-
4
|
|
1256
|
+
12
|
|
1268
1257
|
],
|
|
1269
|
-
"data_type": "
|
|
1258
|
+
"data_type": "int64",
|
|
1270
1259
|
"chunk_grid": {
|
|
1271
1260
|
"name": "regular",
|
|
1272
1261
|
"configuration": {
|
|
1273
1262
|
"chunk_shape": [
|
|
1274
|
-
12
|
|
1275
|
-
3,
|
|
1276
|
-
4
|
|
1263
|
+
12
|
|
1277
1264
|
]
|
|
1278
1265
|
}
|
|
1279
1266
|
},
|
|
@@ -1283,7 +1270,7 @@
|
|
|
1283
1270
|
"separator": "/"
|
|
1284
1271
|
}
|
|
1285
1272
|
},
|
|
1286
|
-
"fill_value": 0
|
|
1273
|
+
"fill_value": 0,
|
|
1287
1274
|
"codecs": [
|
|
1288
1275
|
{
|
|
1289
1276
|
"name": "bytes",
|
|
@@ -1300,21 +1287,18 @@
|
|
|
1300
1287
|
}
|
|
1301
1288
|
],
|
|
1302
1289
|
"attributes": {
|
|
1303
|
-
"long_name": "
|
|
1304
|
-
"units": "
|
|
1305
|
-
"
|
|
1306
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1290
|
+
"long_name": "absolute time",
|
|
1291
|
+
"units": "hours since 2000-01-16 12:00:00",
|
|
1292
|
+
"calendar": "proleptic_gregorian"
|
|
1307
1293
|
},
|
|
1308
1294
|
"dimension_names": [
|
|
1309
|
-
"bry_time"
|
|
1310
|
-
"s_rho",
|
|
1311
|
-
"xi_rho"
|
|
1295
|
+
"bry_time"
|
|
1312
1296
|
],
|
|
1313
1297
|
"zarr_format": 3,
|
|
1314
1298
|
"node_type": "array",
|
|
1315
1299
|
"storage_transformers": []
|
|
1316
1300
|
},
|
|
1317
|
-
"
|
|
1301
|
+
"diazC_west": {
|
|
1318
1302
|
"shape": [
|
|
1319
1303
|
12,
|
|
1320
1304
|
3,
|
|
@@ -1354,21 +1338,21 @@
|
|
|
1354
1338
|
}
|
|
1355
1339
|
],
|
|
1356
1340
|
"attributes": {
|
|
1357
|
-
"long_name": "
|
|
1358
|
-
"units": "
|
|
1341
|
+
"long_name": "western boundary diazotroph carbon",
|
|
1342
|
+
"units": "mmol/m^3",
|
|
1359
1343
|
"coordinates": "abs_time month",
|
|
1360
1344
|
"_FillValue": "AAAAAAAA+H8="
|
|
1361
1345
|
},
|
|
1362
1346
|
"dimension_names": [
|
|
1363
1347
|
"bry_time",
|
|
1364
1348
|
"s_rho",
|
|
1365
|
-
"
|
|
1349
|
+
"eta_rho"
|
|
1366
1350
|
],
|
|
1367
1351
|
"zarr_format": 3,
|
|
1368
1352
|
"node_type": "array",
|
|
1369
1353
|
"storage_transformers": []
|
|
1370
1354
|
},
|
|
1371
|
-
"
|
|
1355
|
+
"DOCr_west": {
|
|
1372
1356
|
"shape": [
|
|
1373
1357
|
12,
|
|
1374
1358
|
3,
|
|
@@ -1408,7 +1392,7 @@
|
|
|
1408
1392
|
}
|
|
1409
1393
|
],
|
|
1410
1394
|
"attributes": {
|
|
1411
|
-
"long_name": "western boundary
|
|
1395
|
+
"long_name": "western boundary refractory dissolved organic carbon",
|
|
1412
1396
|
"units": "mmol/m^3",
|
|
1413
1397
|
"coordinates": "abs_time month",
|
|
1414
1398
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1422,7 +1406,7 @@
|
|
|
1422
1406
|
"node_type": "array",
|
|
1423
1407
|
"storage_transformers": []
|
|
1424
1408
|
},
|
|
1425
|
-
"
|
|
1409
|
+
"DOPr_north": {
|
|
1426
1410
|
"shape": [
|
|
1427
1411
|
12,
|
|
1428
1412
|
3,
|
|
@@ -1462,7 +1446,7 @@
|
|
|
1462
1446
|
}
|
|
1463
1447
|
],
|
|
1464
1448
|
"attributes": {
|
|
1465
|
-
"long_name": "
|
|
1449
|
+
"long_name": "northern boundary refractory dissolved organic phosphorus",
|
|
1466
1450
|
"units": "mmol/m^3",
|
|
1467
1451
|
"coordinates": "abs_time month",
|
|
1468
1452
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1476,7 +1460,7 @@
|
|
|
1476
1460
|
"node_type": "array",
|
|
1477
1461
|
"storage_transformers": []
|
|
1478
1462
|
},
|
|
1479
|
-
"
|
|
1463
|
+
"Fe_east": {
|
|
1480
1464
|
"shape": [
|
|
1481
1465
|
12,
|
|
1482
1466
|
3,
|
|
@@ -1516,8 +1500,8 @@
|
|
|
1516
1500
|
}
|
|
1517
1501
|
],
|
|
1518
1502
|
"attributes": {
|
|
1519
|
-
"long_name": "
|
|
1520
|
-
"units": "
|
|
1503
|
+
"long_name": "eastern boundary dissolved inorganic iron",
|
|
1504
|
+
"units": "mmol/m^3",
|
|
1521
1505
|
"coordinates": "abs_time month",
|
|
1522
1506
|
"_FillValue": "AAAAAAAA+H8="
|
|
1523
1507
|
},
|
|
@@ -1530,7 +1514,7 @@
|
|
|
1530
1514
|
"node_type": "array",
|
|
1531
1515
|
"storage_transformers": []
|
|
1532
1516
|
},
|
|
1533
|
-
"
|
|
1517
|
+
"ALK_ALT_CO2_north": {
|
|
1534
1518
|
"shape": [
|
|
1535
1519
|
12,
|
|
1536
1520
|
3,
|
|
@@ -1570,8 +1554,8 @@
|
|
|
1570
1554
|
}
|
|
1571
1555
|
],
|
|
1572
1556
|
"attributes": {
|
|
1573
|
-
"long_name": "northern boundary
|
|
1574
|
-
"units": "
|
|
1557
|
+
"long_name": "northern boundary alkalinity, alternative CO2",
|
|
1558
|
+
"units": "meq/m^3",
|
|
1575
1559
|
"coordinates": "abs_time month",
|
|
1576
1560
|
"_FillValue": "AAAAAAAA+H8="
|
|
1577
1561
|
},
|
|
@@ -1584,7 +1568,7 @@
|
|
|
1584
1568
|
"node_type": "array",
|
|
1585
1569
|
"storage_transformers": []
|
|
1586
1570
|
},
|
|
1587
|
-
"
|
|
1571
|
+
"spChl_west": {
|
|
1588
1572
|
"shape": [
|
|
1589
1573
|
12,
|
|
1590
1574
|
3,
|
|
@@ -1624,8 +1608,8 @@
|
|
|
1624
1608
|
}
|
|
1625
1609
|
],
|
|
1626
1610
|
"attributes": {
|
|
1627
|
-
"long_name": "western boundary
|
|
1628
|
-
"units": "
|
|
1611
|
+
"long_name": "western boundary small phytoplankton chlorophyll",
|
|
1612
|
+
"units": "mg/m^3",
|
|
1629
1613
|
"coordinates": "abs_time month",
|
|
1630
1614
|
"_FillValue": "AAAAAAAA+H8="
|
|
1631
1615
|
},
|
|
@@ -1638,7 +1622,7 @@
|
|
|
1638
1622
|
"node_type": "array",
|
|
1639
1623
|
"storage_transformers": []
|
|
1640
1624
|
},
|
|
1641
|
-
"
|
|
1625
|
+
"Fe_south": {
|
|
1642
1626
|
"shape": [
|
|
1643
1627
|
12,
|
|
1644
1628
|
3,
|
|
@@ -1678,21 +1662,21 @@
|
|
|
1678
1662
|
}
|
|
1679
1663
|
],
|
|
1680
1664
|
"attributes": {
|
|
1681
|
-
"long_name": "
|
|
1682
|
-
"units": "
|
|
1665
|
+
"long_name": "southern boundary dissolved inorganic iron",
|
|
1666
|
+
"units": "mmol/m^3",
|
|
1683
1667
|
"coordinates": "abs_time month",
|
|
1684
1668
|
"_FillValue": "AAAAAAAA+H8="
|
|
1685
1669
|
},
|
|
1686
1670
|
"dimension_names": [
|
|
1687
1671
|
"bry_time",
|
|
1688
1672
|
"s_rho",
|
|
1689
|
-
"
|
|
1673
|
+
"xi_rho"
|
|
1690
1674
|
],
|
|
1691
1675
|
"zarr_format": 3,
|
|
1692
1676
|
"node_type": "array",
|
|
1693
1677
|
"storage_transformers": []
|
|
1694
1678
|
},
|
|
1695
|
-
"
|
|
1679
|
+
"Lig_west": {
|
|
1696
1680
|
"shape": [
|
|
1697
1681
|
12,
|
|
1698
1682
|
3,
|
|
@@ -1732,21 +1716,21 @@
|
|
|
1732
1716
|
}
|
|
1733
1717
|
],
|
|
1734
1718
|
"attributes": {
|
|
1735
|
-
"long_name": "
|
|
1736
|
-
"units": "
|
|
1719
|
+
"long_name": "western boundary iron binding ligand",
|
|
1720
|
+
"units": "mmol/m^3",
|
|
1737
1721
|
"coordinates": "abs_time month",
|
|
1738
1722
|
"_FillValue": "AAAAAAAA+H8="
|
|
1739
1723
|
},
|
|
1740
1724
|
"dimension_names": [
|
|
1741
1725
|
"bry_time",
|
|
1742
1726
|
"s_rho",
|
|
1743
|
-
"
|
|
1727
|
+
"eta_rho"
|
|
1744
1728
|
],
|
|
1745
1729
|
"zarr_format": 3,
|
|
1746
1730
|
"node_type": "array",
|
|
1747
1731
|
"storage_transformers": []
|
|
1748
1732
|
},
|
|
1749
|
-
"
|
|
1733
|
+
"diazP_west": {
|
|
1750
1734
|
"shape": [
|
|
1751
1735
|
12,
|
|
1752
1736
|
3,
|
|
@@ -1786,8 +1770,8 @@
|
|
|
1786
1770
|
}
|
|
1787
1771
|
],
|
|
1788
1772
|
"attributes": {
|
|
1789
|
-
"long_name": "
|
|
1790
|
-
"units": "
|
|
1773
|
+
"long_name": "western boundary diazotroph phosphorus",
|
|
1774
|
+
"units": "mmol/m^3",
|
|
1791
1775
|
"coordinates": "abs_time month",
|
|
1792
1776
|
"_FillValue": "AAAAAAAA+H8="
|
|
1793
1777
|
},
|
|
@@ -1800,7 +1784,7 @@
|
|
|
1800
1784
|
"node_type": "array",
|
|
1801
1785
|
"storage_transformers": []
|
|
1802
1786
|
},
|
|
1803
|
-
"
|
|
1787
|
+
"zooC_west": {
|
|
1804
1788
|
"shape": [
|
|
1805
1789
|
12,
|
|
1806
1790
|
3,
|
|
@@ -1840,7 +1824,7 @@
|
|
|
1840
1824
|
}
|
|
1841
1825
|
],
|
|
1842
1826
|
"attributes": {
|
|
1843
|
-
"long_name": "
|
|
1827
|
+
"long_name": "western boundary zooplankton carbon",
|
|
1844
1828
|
"units": "mmol/m^3",
|
|
1845
1829
|
"coordinates": "abs_time month",
|
|
1846
1830
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1848,13 +1832,13 @@
|
|
|
1848
1832
|
"dimension_names": [
|
|
1849
1833
|
"bry_time",
|
|
1850
1834
|
"s_rho",
|
|
1851
|
-
"
|
|
1835
|
+
"eta_rho"
|
|
1852
1836
|
],
|
|
1853
1837
|
"zarr_format": 3,
|
|
1854
1838
|
"node_type": "array",
|
|
1855
1839
|
"storage_transformers": []
|
|
1856
1840
|
},
|
|
1857
|
-
"
|
|
1841
|
+
"spCaCO3_north": {
|
|
1858
1842
|
"shape": [
|
|
1859
1843
|
12,
|
|
1860
1844
|
3,
|
|
@@ -1894,7 +1878,7 @@
|
|
|
1894
1878
|
}
|
|
1895
1879
|
],
|
|
1896
1880
|
"attributes": {
|
|
1897
|
-
"long_name": "
|
|
1881
|
+
"long_name": "northern boundary small phytoplankton CaCO3",
|
|
1898
1882
|
"units": "mmol/m^3",
|
|
1899
1883
|
"coordinates": "abs_time month",
|
|
1900
1884
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1902,13 +1886,13 @@
|
|
|
1902
1886
|
"dimension_names": [
|
|
1903
1887
|
"bry_time",
|
|
1904
1888
|
"s_rho",
|
|
1905
|
-
"
|
|
1889
|
+
"xi_rho"
|
|
1906
1890
|
],
|
|
1907
1891
|
"zarr_format": 3,
|
|
1908
1892
|
"node_type": "array",
|
|
1909
1893
|
"storage_transformers": []
|
|
1910
1894
|
},
|
|
1911
|
-
"
|
|
1895
|
+
"Lig_north": {
|
|
1912
1896
|
"shape": [
|
|
1913
1897
|
12,
|
|
1914
1898
|
3,
|
|
@@ -1948,7 +1932,7 @@
|
|
|
1948
1932
|
}
|
|
1949
1933
|
],
|
|
1950
1934
|
"attributes": {
|
|
1951
|
-
"long_name": "northern boundary
|
|
1935
|
+
"long_name": "northern boundary iron binding ligand",
|
|
1952
1936
|
"units": "mmol/m^3",
|
|
1953
1937
|
"coordinates": "abs_time month",
|
|
1954
1938
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1962,7 +1946,7 @@
|
|
|
1962
1946
|
"node_type": "array",
|
|
1963
1947
|
"storage_transformers": []
|
|
1964
1948
|
},
|
|
1965
|
-
"
|
|
1949
|
+
"diatSi_east": {
|
|
1966
1950
|
"shape": [
|
|
1967
1951
|
12,
|
|
1968
1952
|
3,
|
|
@@ -2002,7 +1986,7 @@
|
|
|
2002
1986
|
}
|
|
2003
1987
|
],
|
|
2004
1988
|
"attributes": {
|
|
2005
|
-
"long_name": "
|
|
1989
|
+
"long_name": "eastern boundary diatom silicate",
|
|
2006
1990
|
"units": "mmol/m^3",
|
|
2007
1991
|
"coordinates": "abs_time month",
|
|
2008
1992
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2010,13 +1994,13 @@
|
|
|
2010
1994
|
"dimension_names": [
|
|
2011
1995
|
"bry_time",
|
|
2012
1996
|
"s_rho",
|
|
2013
|
-
"
|
|
1997
|
+
"eta_rho"
|
|
2014
1998
|
],
|
|
2015
1999
|
"zarr_format": 3,
|
|
2016
2000
|
"node_type": "array",
|
|
2017
2001
|
"storage_transformers": []
|
|
2018
2002
|
},
|
|
2019
|
-
"
|
|
2003
|
+
"DOP_south": {
|
|
2020
2004
|
"shape": [
|
|
2021
2005
|
12,
|
|
2022
2006
|
3,
|
|
@@ -2056,7 +2040,7 @@
|
|
|
2056
2040
|
}
|
|
2057
2041
|
],
|
|
2058
2042
|
"attributes": {
|
|
2059
|
-
"long_name": "
|
|
2043
|
+
"long_name": "southern boundary dissolved organic phosphorus",
|
|
2060
2044
|
"units": "mmol/m^3",
|
|
2061
2045
|
"coordinates": "abs_time month",
|
|
2062
2046
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2070,7 +2054,7 @@
|
|
|
2070
2054
|
"node_type": "array",
|
|
2071
2055
|
"storage_transformers": []
|
|
2072
2056
|
},
|
|
2073
|
-
"
|
|
2057
|
+
"diazChl_north": {
|
|
2074
2058
|
"shape": [
|
|
2075
2059
|
12,
|
|
2076
2060
|
3,
|
|
@@ -2110,21 +2094,21 @@
|
|
|
2110
2094
|
}
|
|
2111
2095
|
],
|
|
2112
2096
|
"attributes": {
|
|
2113
|
-
"long_name": "
|
|
2114
|
-
"units": "
|
|
2097
|
+
"long_name": "northern boundary diazotroph chloropyll",
|
|
2098
|
+
"units": "mg/m^3",
|
|
2115
2099
|
"coordinates": "abs_time month",
|
|
2116
2100
|
"_FillValue": "AAAAAAAA+H8="
|
|
2117
2101
|
},
|
|
2118
2102
|
"dimension_names": [
|
|
2119
2103
|
"bry_time",
|
|
2120
2104
|
"s_rho",
|
|
2121
|
-
"
|
|
2105
|
+
"xi_rho"
|
|
2122
2106
|
],
|
|
2123
2107
|
"zarr_format": 3,
|
|
2124
2108
|
"node_type": "array",
|
|
2125
2109
|
"storage_transformers": []
|
|
2126
2110
|
},
|
|
2127
|
-
"
|
|
2111
|
+
"NH4_north": {
|
|
2128
2112
|
"shape": [
|
|
2129
2113
|
12,
|
|
2130
2114
|
3,
|
|
@@ -2164,7 +2148,7 @@
|
|
|
2164
2148
|
}
|
|
2165
2149
|
],
|
|
2166
2150
|
"attributes": {
|
|
2167
|
-
"long_name": "northern boundary
|
|
2151
|
+
"long_name": "northern boundary dissolved ammonia",
|
|
2168
2152
|
"units": "mmol/m^3",
|
|
2169
2153
|
"coordinates": "abs_time month",
|
|
2170
2154
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2178,7 +2162,7 @@
|
|
|
2178
2162
|
"node_type": "array",
|
|
2179
2163
|
"storage_transformers": []
|
|
2180
2164
|
},
|
|
2181
|
-
"
|
|
2165
|
+
"diazC_east": {
|
|
2182
2166
|
"shape": [
|
|
2183
2167
|
12,
|
|
2184
2168
|
3,
|
|
@@ -2218,7 +2202,7 @@
|
|
|
2218
2202
|
}
|
|
2219
2203
|
],
|
|
2220
2204
|
"attributes": {
|
|
2221
|
-
"long_name": "
|
|
2205
|
+
"long_name": "eastern boundary diazotroph carbon",
|
|
2222
2206
|
"units": "mmol/m^3",
|
|
2223
2207
|
"coordinates": "abs_time month",
|
|
2224
2208
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2226,13 +2210,13 @@
|
|
|
2226
2210
|
"dimension_names": [
|
|
2227
2211
|
"bry_time",
|
|
2228
2212
|
"s_rho",
|
|
2229
|
-
"
|
|
2213
|
+
"eta_rho"
|
|
2230
2214
|
],
|
|
2231
2215
|
"zarr_format": 3,
|
|
2232
2216
|
"node_type": "array",
|
|
2233
2217
|
"storage_transformers": []
|
|
2234
2218
|
},
|
|
2235
|
-
"
|
|
2219
|
+
"spP_west": {
|
|
2236
2220
|
"shape": [
|
|
2237
2221
|
12,
|
|
2238
2222
|
3,
|
|
@@ -2272,7 +2256,7 @@
|
|
|
2272
2256
|
}
|
|
2273
2257
|
],
|
|
2274
2258
|
"attributes": {
|
|
2275
|
-
"long_name": "
|
|
2259
|
+
"long_name": "western boundary small phytoplankton phosphorous",
|
|
2276
2260
|
"units": "mmol/m^3",
|
|
2277
2261
|
"coordinates": "abs_time month",
|
|
2278
2262
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2280,26 +2264,22 @@
|
|
|
2280
2264
|
"dimension_names": [
|
|
2281
2265
|
"bry_time",
|
|
2282
2266
|
"s_rho",
|
|
2283
|
-
"
|
|
2267
|
+
"eta_rho"
|
|
2284
2268
|
],
|
|
2285
2269
|
"zarr_format": 3,
|
|
2286
2270
|
"node_type": "array",
|
|
2287
2271
|
"storage_transformers": []
|
|
2288
2272
|
},
|
|
2289
|
-
"
|
|
2273
|
+
"bry_time": {
|
|
2290
2274
|
"shape": [
|
|
2291
|
-
12
|
|
2292
|
-
3,
|
|
2293
|
-
4
|
|
2275
|
+
12
|
|
2294
2276
|
],
|
|
2295
|
-
"data_type": "
|
|
2277
|
+
"data_type": "float64",
|
|
2296
2278
|
"chunk_grid": {
|
|
2297
2279
|
"name": "regular",
|
|
2298
2280
|
"configuration": {
|
|
2299
2281
|
"chunk_shape": [
|
|
2300
|
-
12
|
|
2301
|
-
3,
|
|
2302
|
-
4
|
|
2282
|
+
12
|
|
2303
2283
|
]
|
|
2304
2284
|
}
|
|
2305
2285
|
},
|
|
@@ -2326,21 +2306,19 @@
|
|
|
2326
2306
|
}
|
|
2327
2307
|
],
|
|
2328
2308
|
"attributes": {
|
|
2329
|
-
"
|
|
2330
|
-
"
|
|
2331
|
-
"
|
|
2309
|
+
"cycle_length": 365.25,
|
|
2310
|
+
"long_name": "relative time: days since 2000-01-01 00:00:00",
|
|
2311
|
+
"units": "days",
|
|
2332
2312
|
"_FillValue": "AAAAAAAA+H8="
|
|
2333
2313
|
},
|
|
2334
2314
|
"dimension_names": [
|
|
2335
|
-
"bry_time"
|
|
2336
|
-
"s_rho",
|
|
2337
|
-
"xi_rho"
|
|
2315
|
+
"bry_time"
|
|
2338
2316
|
],
|
|
2339
2317
|
"zarr_format": 3,
|
|
2340
2318
|
"node_type": "array",
|
|
2341
2319
|
"storage_transformers": []
|
|
2342
2320
|
},
|
|
2343
|
-
"
|
|
2321
|
+
"DIC_north": {
|
|
2344
2322
|
"shape": [
|
|
2345
2323
|
12,
|
|
2346
2324
|
3,
|
|
@@ -2380,7 +2358,7 @@
|
|
|
2380
2358
|
}
|
|
2381
2359
|
],
|
|
2382
2360
|
"attributes": {
|
|
2383
|
-
"long_name": "
|
|
2361
|
+
"long_name": "northern boundary dissolved inorganic carbon",
|
|
2384
2362
|
"units": "mmol/m^3",
|
|
2385
2363
|
"coordinates": "abs_time month",
|
|
2386
2364
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2394,7 +2372,7 @@
|
|
|
2394
2372
|
"node_type": "array",
|
|
2395
2373
|
"storage_transformers": []
|
|
2396
2374
|
},
|
|
2397
|
-
"
|
|
2375
|
+
"diazC_north": {
|
|
2398
2376
|
"shape": [
|
|
2399
2377
|
12,
|
|
2400
2378
|
3,
|
|
@@ -2434,7 +2412,7 @@
|
|
|
2434
2412
|
}
|
|
2435
2413
|
],
|
|
2436
2414
|
"attributes": {
|
|
2437
|
-
"long_name": "
|
|
2415
|
+
"long_name": "northern boundary diazotroph carbon",
|
|
2438
2416
|
"units": "mmol/m^3",
|
|
2439
2417
|
"coordinates": "abs_time month",
|
|
2440
2418
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2442,13 +2420,13 @@
|
|
|
2442
2420
|
"dimension_names": [
|
|
2443
2421
|
"bry_time",
|
|
2444
2422
|
"s_rho",
|
|
2445
|
-
"
|
|
2423
|
+
"xi_rho"
|
|
2446
2424
|
],
|
|
2447
2425
|
"zarr_format": 3,
|
|
2448
2426
|
"node_type": "array",
|
|
2449
2427
|
"storage_transformers": []
|
|
2450
2428
|
},
|
|
2451
|
-
"
|
|
2429
|
+
"SiO3_east": {
|
|
2452
2430
|
"shape": [
|
|
2453
2431
|
12,
|
|
2454
2432
|
3,
|
|
@@ -2488,7 +2466,7 @@
|
|
|
2488
2466
|
}
|
|
2489
2467
|
],
|
|
2490
2468
|
"attributes": {
|
|
2491
|
-
"long_name": "
|
|
2469
|
+
"long_name": "eastern boundary dissolved inorganic silicate",
|
|
2492
2470
|
"units": "mmol/m^3",
|
|
2493
2471
|
"coordinates": "abs_time month",
|
|
2494
2472
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2496,13 +2474,13 @@
|
|
|
2496
2474
|
"dimension_names": [
|
|
2497
2475
|
"bry_time",
|
|
2498
2476
|
"s_rho",
|
|
2499
|
-
"
|
|
2477
|
+
"eta_rho"
|
|
2500
2478
|
],
|
|
2501
2479
|
"zarr_format": 3,
|
|
2502
2480
|
"node_type": "array",
|
|
2503
2481
|
"storage_transformers": []
|
|
2504
2482
|
},
|
|
2505
|
-
"
|
|
2483
|
+
"spP_north": {
|
|
2506
2484
|
"shape": [
|
|
2507
2485
|
12,
|
|
2508
2486
|
3,
|
|
@@ -2542,7 +2520,7 @@
|
|
|
2542
2520
|
}
|
|
2543
2521
|
],
|
|
2544
2522
|
"attributes": {
|
|
2545
|
-
"long_name": "
|
|
2523
|
+
"long_name": "northern boundary small phytoplankton phosphorous",
|
|
2546
2524
|
"units": "mmol/m^3",
|
|
2547
2525
|
"coordinates": "abs_time month",
|
|
2548
2526
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2556,7 +2534,7 @@
|
|
|
2556
2534
|
"node_type": "array",
|
|
2557
2535
|
"storage_transformers": []
|
|
2558
2536
|
},
|
|
2559
|
-
"
|
|
2537
|
+
"diatC_north": {
|
|
2560
2538
|
"shape": [
|
|
2561
2539
|
12,
|
|
2562
2540
|
3,
|
|
@@ -2596,7 +2574,7 @@
|
|
|
2596
2574
|
}
|
|
2597
2575
|
],
|
|
2598
2576
|
"attributes": {
|
|
2599
|
-
"long_name": "
|
|
2577
|
+
"long_name": "northern boundary diatom carbon",
|
|
2600
2578
|
"units": "mmol/m^3",
|
|
2601
2579
|
"coordinates": "abs_time month",
|
|
2602
2580
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2604,13 +2582,13 @@
|
|
|
2604
2582
|
"dimension_names": [
|
|
2605
2583
|
"bry_time",
|
|
2606
2584
|
"s_rho",
|
|
2607
|
-
"
|
|
2585
|
+
"xi_rho"
|
|
2608
2586
|
],
|
|
2609
2587
|
"zarr_format": 3,
|
|
2610
2588
|
"node_type": "array",
|
|
2611
2589
|
"storage_transformers": []
|
|
2612
2590
|
},
|
|
2613
|
-
"
|
|
2591
|
+
"DONr_north": {
|
|
2614
2592
|
"shape": [
|
|
2615
2593
|
12,
|
|
2616
2594
|
3,
|
|
@@ -2650,7 +2628,7 @@
|
|
|
2650
2628
|
}
|
|
2651
2629
|
],
|
|
2652
2630
|
"attributes": {
|
|
2653
|
-
"long_name": "
|
|
2631
|
+
"long_name": "northern boundary refractory dissolved organic nitrogen",
|
|
2654
2632
|
"units": "mmol/m^3",
|
|
2655
2633
|
"coordinates": "abs_time month",
|
|
2656
2634
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2658,13 +2636,13 @@
|
|
|
2658
2636
|
"dimension_names": [
|
|
2659
2637
|
"bry_time",
|
|
2660
2638
|
"s_rho",
|
|
2661
|
-
"
|
|
2639
|
+
"xi_rho"
|
|
2662
2640
|
],
|
|
2663
2641
|
"zarr_format": 3,
|
|
2664
2642
|
"node_type": "array",
|
|
2665
2643
|
"storage_transformers": []
|
|
2666
2644
|
},
|
|
2667
|
-
"
|
|
2645
|
+
"spC_east": {
|
|
2668
2646
|
"shape": [
|
|
2669
2647
|
12,
|
|
2670
2648
|
3,
|
|
@@ -2704,7 +2682,7 @@
|
|
|
2704
2682
|
}
|
|
2705
2683
|
],
|
|
2706
2684
|
"attributes": {
|
|
2707
|
-
"long_name": "eastern boundary
|
|
2685
|
+
"long_name": "eastern boundary small phytoplankton carbon",
|
|
2708
2686
|
"units": "mmol/m^3",
|
|
2709
2687
|
"coordinates": "abs_time month",
|
|
2710
2688
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2718,7 +2696,7 @@
|
|
|
2718
2696
|
"node_type": "array",
|
|
2719
2697
|
"storage_transformers": []
|
|
2720
2698
|
},
|
|
2721
|
-
"
|
|
2699
|
+
"zooC_east": {
|
|
2722
2700
|
"shape": [
|
|
2723
2701
|
12,
|
|
2724
2702
|
3,
|
|
@@ -2758,7 +2736,7 @@
|
|
|
2758
2736
|
}
|
|
2759
2737
|
],
|
|
2760
2738
|
"attributes": {
|
|
2761
|
-
"long_name": "eastern boundary
|
|
2739
|
+
"long_name": "eastern boundary zooplankton carbon",
|
|
2762
2740
|
"units": "mmol/m^3",
|
|
2763
2741
|
"coordinates": "abs_time month",
|
|
2764
2742
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2772,7 +2750,7 @@
|
|
|
2772
2750
|
"node_type": "array",
|
|
2773
2751
|
"storage_transformers": []
|
|
2774
2752
|
},
|
|
2775
|
-
"
|
|
2753
|
+
"spCaCO3_west": {
|
|
2776
2754
|
"shape": [
|
|
2777
2755
|
12,
|
|
2778
2756
|
3,
|
|
@@ -2812,7 +2790,7 @@
|
|
|
2812
2790
|
}
|
|
2813
2791
|
],
|
|
2814
2792
|
"attributes": {
|
|
2815
|
-
"long_name": "
|
|
2793
|
+
"long_name": "western boundary small phytoplankton CaCO3",
|
|
2816
2794
|
"units": "mmol/m^3",
|
|
2817
2795
|
"coordinates": "abs_time month",
|
|
2818
2796
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2820,13 +2798,13 @@
|
|
|
2820
2798
|
"dimension_names": [
|
|
2821
2799
|
"bry_time",
|
|
2822
2800
|
"s_rho",
|
|
2823
|
-
"
|
|
2801
|
+
"eta_rho"
|
|
2824
2802
|
],
|
|
2825
2803
|
"zarr_format": 3,
|
|
2826
2804
|
"node_type": "array",
|
|
2827
2805
|
"storage_transformers": []
|
|
2828
2806
|
},
|
|
2829
|
-
"
|
|
2807
|
+
"O2_south": {
|
|
2830
2808
|
"shape": [
|
|
2831
2809
|
12,
|
|
2832
2810
|
3,
|
|
@@ -2866,7 +2844,7 @@
|
|
|
2866
2844
|
}
|
|
2867
2845
|
],
|
|
2868
2846
|
"attributes": {
|
|
2869
|
-
"long_name": "
|
|
2847
|
+
"long_name": "southern boundary dissolved oxygen",
|
|
2870
2848
|
"units": "mmol/m^3",
|
|
2871
2849
|
"coordinates": "abs_time month",
|
|
2872
2850
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2874,13 +2852,13 @@
|
|
|
2874
2852
|
"dimension_names": [
|
|
2875
2853
|
"bry_time",
|
|
2876
2854
|
"s_rho",
|
|
2877
|
-
"
|
|
2855
|
+
"xi_rho"
|
|
2878
2856
|
],
|
|
2879
2857
|
"zarr_format": 3,
|
|
2880
2858
|
"node_type": "array",
|
|
2881
2859
|
"storage_transformers": []
|
|
2882
2860
|
},
|
|
2883
|
-
"
|
|
2861
|
+
"DOCr_east": {
|
|
2884
2862
|
"shape": [
|
|
2885
2863
|
12,
|
|
2886
2864
|
3,
|
|
@@ -2920,7 +2898,7 @@
|
|
|
2920
2898
|
}
|
|
2921
2899
|
],
|
|
2922
2900
|
"attributes": {
|
|
2923
|
-
"long_name": "
|
|
2901
|
+
"long_name": "eastern boundary refractory dissolved organic carbon",
|
|
2924
2902
|
"units": "mmol/m^3",
|
|
2925
2903
|
"coordinates": "abs_time month",
|
|
2926
2904
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2934,7 +2912,7 @@
|
|
|
2934
2912
|
"node_type": "array",
|
|
2935
2913
|
"storage_transformers": []
|
|
2936
2914
|
},
|
|
2937
|
-
"
|
|
2915
|
+
"Fe_west": {
|
|
2938
2916
|
"shape": [
|
|
2939
2917
|
12,
|
|
2940
2918
|
3,
|
|
@@ -2974,7 +2952,7 @@
|
|
|
2974
2952
|
}
|
|
2975
2953
|
],
|
|
2976
2954
|
"attributes": {
|
|
2977
|
-
"long_name": "
|
|
2955
|
+
"long_name": "western boundary dissolved inorganic iron",
|
|
2978
2956
|
"units": "mmol/m^3",
|
|
2979
2957
|
"coordinates": "abs_time month",
|
|
2980
2958
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2982,13 +2960,13 @@
|
|
|
2982
2960
|
"dimension_names": [
|
|
2983
2961
|
"bry_time",
|
|
2984
2962
|
"s_rho",
|
|
2985
|
-
"
|
|
2963
|
+
"eta_rho"
|
|
2986
2964
|
],
|
|
2987
2965
|
"zarr_format": 3,
|
|
2988
2966
|
"node_type": "array",
|
|
2989
2967
|
"storage_transformers": []
|
|
2990
2968
|
},
|
|
2991
|
-
"
|
|
2969
|
+
"spFe_east": {
|
|
2992
2970
|
"shape": [
|
|
2993
2971
|
12,
|
|
2994
2972
|
3,
|
|
@@ -3028,7 +3006,7 @@
|
|
|
3028
3006
|
}
|
|
3029
3007
|
],
|
|
3030
3008
|
"attributes": {
|
|
3031
|
-
"long_name": "
|
|
3009
|
+
"long_name": "eastern boundary small phytoplankton iron",
|
|
3032
3010
|
"units": "mmol/m^3",
|
|
3033
3011
|
"coordinates": "abs_time month",
|
|
3034
3012
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3042,7 +3020,7 @@
|
|
|
3042
3020
|
"node_type": "array",
|
|
3043
3021
|
"storage_transformers": []
|
|
3044
3022
|
},
|
|
3045
|
-
"
|
|
3023
|
+
"diazFe_north": {
|
|
3046
3024
|
"shape": [
|
|
3047
3025
|
12,
|
|
3048
3026
|
3,
|
|
@@ -3082,8 +3060,8 @@
|
|
|
3082
3060
|
}
|
|
3083
3061
|
],
|
|
3084
3062
|
"attributes": {
|
|
3085
|
-
"long_name": "northern boundary
|
|
3086
|
-
"units": "
|
|
3063
|
+
"long_name": "northern boundary diazotroph iron",
|
|
3064
|
+
"units": "mmol/m^3",
|
|
3087
3065
|
"coordinates": "abs_time month",
|
|
3088
3066
|
"_FillValue": "AAAAAAAA+H8="
|
|
3089
3067
|
},
|
|
@@ -3096,7 +3074,7 @@
|
|
|
3096
3074
|
"node_type": "array",
|
|
3097
3075
|
"storage_transformers": []
|
|
3098
3076
|
},
|
|
3099
|
-
"
|
|
3077
|
+
"NO3_south": {
|
|
3100
3078
|
"shape": [
|
|
3101
3079
|
12,
|
|
3102
3080
|
3,
|
|
@@ -3136,7 +3114,7 @@
|
|
|
3136
3114
|
}
|
|
3137
3115
|
],
|
|
3138
3116
|
"attributes": {
|
|
3139
|
-
"long_name": "
|
|
3117
|
+
"long_name": "southern boundary dissolved inorganic nitrate",
|
|
3140
3118
|
"units": "mmol/m^3",
|
|
3141
3119
|
"coordinates": "abs_time month",
|
|
3142
3120
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3144,13 +3122,13 @@
|
|
|
3144
3122
|
"dimension_names": [
|
|
3145
3123
|
"bry_time",
|
|
3146
3124
|
"s_rho",
|
|
3147
|
-
"
|
|
3125
|
+
"xi_rho"
|
|
3148
3126
|
],
|
|
3149
3127
|
"zarr_format": 3,
|
|
3150
3128
|
"node_type": "array",
|
|
3151
3129
|
"storage_transformers": []
|
|
3152
3130
|
},
|
|
3153
|
-
"
|
|
3131
|
+
"DIC_ALT_CO2_south": {
|
|
3154
3132
|
"shape": [
|
|
3155
3133
|
12,
|
|
3156
3134
|
3,
|
|
@@ -3190,7 +3168,7 @@
|
|
|
3190
3168
|
}
|
|
3191
3169
|
],
|
|
3192
3170
|
"attributes": {
|
|
3193
|
-
"long_name": "
|
|
3171
|
+
"long_name": "southern boundary dissolved inorganic carbon, alternative CO2",
|
|
3194
3172
|
"units": "mmol/m^3",
|
|
3195
3173
|
"coordinates": "abs_time month",
|
|
3196
3174
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3204,7 +3182,7 @@
|
|
|
3204
3182
|
"node_type": "array",
|
|
3205
3183
|
"storage_transformers": []
|
|
3206
3184
|
},
|
|
3207
|
-
"
|
|
3185
|
+
"PO4_south": {
|
|
3208
3186
|
"shape": [
|
|
3209
3187
|
12,
|
|
3210
3188
|
3,
|
|
@@ -3244,7 +3222,7 @@
|
|
|
3244
3222
|
}
|
|
3245
3223
|
],
|
|
3246
3224
|
"attributes": {
|
|
3247
|
-
"long_name": "
|
|
3225
|
+
"long_name": "southern boundary dissolved inorganic phosphate",
|
|
3248
3226
|
"units": "mmol/m^3",
|
|
3249
3227
|
"coordinates": "abs_time month",
|
|
3250
3228
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3252,13 +3230,13 @@
|
|
|
3252
3230
|
"dimension_names": [
|
|
3253
3231
|
"bry_time",
|
|
3254
3232
|
"s_rho",
|
|
3255
|
-
"
|
|
3233
|
+
"xi_rho"
|
|
3256
3234
|
],
|
|
3257
3235
|
"zarr_format": 3,
|
|
3258
3236
|
"node_type": "array",
|
|
3259
3237
|
"storage_transformers": []
|
|
3260
3238
|
},
|
|
3261
|
-
"
|
|
3239
|
+
"diatChl_north": {
|
|
3262
3240
|
"shape": [
|
|
3263
3241
|
12,
|
|
3264
3242
|
3,
|
|
@@ -3298,7 +3276,7 @@
|
|
|
3298
3276
|
}
|
|
3299
3277
|
],
|
|
3300
3278
|
"attributes": {
|
|
3301
|
-
"long_name": "
|
|
3279
|
+
"long_name": "northern boundary diatom chloropyll",
|
|
3302
3280
|
"units": "mg/m^3",
|
|
3303
3281
|
"coordinates": "abs_time month",
|
|
3304
3282
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3312,7 +3290,7 @@
|
|
|
3312
3290
|
"node_type": "array",
|
|
3313
3291
|
"storage_transformers": []
|
|
3314
3292
|
},
|
|
3315
|
-
"
|
|
3293
|
+
"DIC_ALT_CO2_east": {
|
|
3316
3294
|
"shape": [
|
|
3317
3295
|
12,
|
|
3318
3296
|
3,
|
|
@@ -3352,21 +3330,21 @@
|
|
|
3352
3330
|
}
|
|
3353
3331
|
],
|
|
3354
3332
|
"attributes": {
|
|
3355
|
-
"long_name": "
|
|
3356
|
-
"units": "
|
|
3333
|
+
"long_name": "eastern boundary dissolved inorganic carbon, alternative CO2",
|
|
3334
|
+
"units": "mmol/m^3",
|
|
3357
3335
|
"coordinates": "abs_time month",
|
|
3358
3336
|
"_FillValue": "AAAAAAAA+H8="
|
|
3359
3337
|
},
|
|
3360
3338
|
"dimension_names": [
|
|
3361
3339
|
"bry_time",
|
|
3362
3340
|
"s_rho",
|
|
3363
|
-
"
|
|
3341
|
+
"eta_rho"
|
|
3364
3342
|
],
|
|
3365
3343
|
"zarr_format": 3,
|
|
3366
3344
|
"node_type": "array",
|
|
3367
3345
|
"storage_transformers": []
|
|
3368
3346
|
},
|
|
3369
|
-
"
|
|
3347
|
+
"DOCr_south": {
|
|
3370
3348
|
"shape": [
|
|
3371
3349
|
12,
|
|
3372
3350
|
3,
|
|
@@ -3406,7 +3384,7 @@
|
|
|
3406
3384
|
}
|
|
3407
3385
|
],
|
|
3408
3386
|
"attributes": {
|
|
3409
|
-
"long_name": "
|
|
3387
|
+
"long_name": "southern boundary refractory dissolved organic carbon",
|
|
3410
3388
|
"units": "mmol/m^3",
|
|
3411
3389
|
"coordinates": "abs_time month",
|
|
3412
3390
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3414,13 +3392,13 @@
|
|
|
3414
3392
|
"dimension_names": [
|
|
3415
3393
|
"bry_time",
|
|
3416
3394
|
"s_rho",
|
|
3417
|
-
"
|
|
3395
|
+
"xi_rho"
|
|
3418
3396
|
],
|
|
3419
3397
|
"zarr_format": 3,
|
|
3420
3398
|
"node_type": "array",
|
|
3421
3399
|
"storage_transformers": []
|
|
3422
3400
|
},
|
|
3423
|
-
"
|
|
3401
|
+
"diazChl_west": {
|
|
3424
3402
|
"shape": [
|
|
3425
3403
|
12,
|
|
3426
3404
|
3,
|
|
@@ -3460,21 +3438,21 @@
|
|
|
3460
3438
|
}
|
|
3461
3439
|
],
|
|
3462
3440
|
"attributes": {
|
|
3463
|
-
"long_name": "
|
|
3464
|
-
"units": "
|
|
3441
|
+
"long_name": "western boundary diazotroph chloropyll",
|
|
3442
|
+
"units": "mg/m^3",
|
|
3465
3443
|
"coordinates": "abs_time month",
|
|
3466
3444
|
"_FillValue": "AAAAAAAA+H8="
|
|
3467
3445
|
},
|
|
3468
3446
|
"dimension_names": [
|
|
3469
3447
|
"bry_time",
|
|
3470
3448
|
"s_rho",
|
|
3471
|
-
"
|
|
3449
|
+
"eta_rho"
|
|
3472
3450
|
],
|
|
3473
3451
|
"zarr_format": 3,
|
|
3474
3452
|
"node_type": "array",
|
|
3475
3453
|
"storage_transformers": []
|
|
3476
3454
|
},
|
|
3477
|
-
"
|
|
3455
|
+
"diatFe_south": {
|
|
3478
3456
|
"shape": [
|
|
3479
3457
|
12,
|
|
3480
3458
|
3,
|
|
@@ -3514,7 +3492,7 @@
|
|
|
3514
3492
|
}
|
|
3515
3493
|
],
|
|
3516
3494
|
"attributes": {
|
|
3517
|
-
"long_name": "
|
|
3495
|
+
"long_name": "southern boundary diatom iron",
|
|
3518
3496
|
"units": "mmol/m^3",
|
|
3519
3497
|
"coordinates": "abs_time month",
|
|
3520
3498
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3528,7 +3506,7 @@
|
|
|
3528
3506
|
"node_type": "array",
|
|
3529
3507
|
"storage_transformers": []
|
|
3530
3508
|
},
|
|
3531
|
-
"
|
|
3509
|
+
"spChl_east": {
|
|
3532
3510
|
"shape": [
|
|
3533
3511
|
12,
|
|
3534
3512
|
3,
|
|
@@ -3568,8 +3546,8 @@
|
|
|
3568
3546
|
}
|
|
3569
3547
|
],
|
|
3570
3548
|
"attributes": {
|
|
3571
|
-
"long_name": "eastern boundary
|
|
3572
|
-
"units": "
|
|
3549
|
+
"long_name": "eastern boundary small phytoplankton chlorophyll",
|
|
3550
|
+
"units": "mg/m^3",
|
|
3573
3551
|
"coordinates": "abs_time month",
|
|
3574
3552
|
"_FillValue": "AAAAAAAA+H8="
|
|
3575
3553
|
},
|
|
@@ -3582,7 +3560,7 @@
|
|
|
3582
3560
|
"node_type": "array",
|
|
3583
3561
|
"storage_transformers": []
|
|
3584
3562
|
},
|
|
3585
|
-
"
|
|
3563
|
+
"spChl_south": {
|
|
3586
3564
|
"shape": [
|
|
3587
3565
|
12,
|
|
3588
3566
|
3,
|
|
@@ -3622,21 +3600,21 @@
|
|
|
3622
3600
|
}
|
|
3623
3601
|
],
|
|
3624
3602
|
"attributes": {
|
|
3625
|
-
"long_name": "
|
|
3626
|
-
"units": "
|
|
3603
|
+
"long_name": "southern boundary small phytoplankton chlorophyll",
|
|
3604
|
+
"units": "mg/m^3",
|
|
3627
3605
|
"coordinates": "abs_time month",
|
|
3628
3606
|
"_FillValue": "AAAAAAAA+H8="
|
|
3629
3607
|
},
|
|
3630
3608
|
"dimension_names": [
|
|
3631
3609
|
"bry_time",
|
|
3632
3610
|
"s_rho",
|
|
3633
|
-
"
|
|
3611
|
+
"xi_rho"
|
|
3634
3612
|
],
|
|
3635
3613
|
"zarr_format": 3,
|
|
3636
3614
|
"node_type": "array",
|
|
3637
3615
|
"storage_transformers": []
|
|
3638
3616
|
},
|
|
3639
|
-
"
|
|
3617
|
+
"diazFe_east": {
|
|
3640
3618
|
"shape": [
|
|
3641
3619
|
12,
|
|
3642
3620
|
3,
|
|
@@ -3676,7 +3654,7 @@
|
|
|
3676
3654
|
}
|
|
3677
3655
|
],
|
|
3678
3656
|
"attributes": {
|
|
3679
|
-
"long_name": "
|
|
3657
|
+
"long_name": "eastern boundary diazotroph iron",
|
|
3680
3658
|
"units": "mmol/m^3",
|
|
3681
3659
|
"coordinates": "abs_time month",
|
|
3682
3660
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3690,7 +3668,7 @@
|
|
|
3690
3668
|
"node_type": "array",
|
|
3691
3669
|
"storage_transformers": []
|
|
3692
3670
|
},
|
|
3693
|
-
"
|
|
3671
|
+
"DONr_west": {
|
|
3694
3672
|
"shape": [
|
|
3695
3673
|
12,
|
|
3696
3674
|
3,
|
|
@@ -3730,7 +3708,7 @@
|
|
|
3730
3708
|
}
|
|
3731
3709
|
],
|
|
3732
3710
|
"attributes": {
|
|
3733
|
-
"long_name": "
|
|
3711
|
+
"long_name": "western boundary refractory dissolved organic nitrogen",
|
|
3734
3712
|
"units": "mmol/m^3",
|
|
3735
3713
|
"coordinates": "abs_time month",
|
|
3736
3714
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3744,7 +3722,7 @@
|
|
|
3744
3722
|
"node_type": "array",
|
|
3745
3723
|
"storage_transformers": []
|
|
3746
3724
|
},
|
|
3747
|
-
"
|
|
3725
|
+
"DOC_west": {
|
|
3748
3726
|
"shape": [
|
|
3749
3727
|
12,
|
|
3750
3728
|
3,
|
|
@@ -3784,7 +3762,7 @@
|
|
|
3784
3762
|
}
|
|
3785
3763
|
],
|
|
3786
3764
|
"attributes": {
|
|
3787
|
-
"long_name": "western boundary
|
|
3765
|
+
"long_name": "western boundary dissolved organic carbon",
|
|
3788
3766
|
"units": "mmol/m^3",
|
|
3789
3767
|
"coordinates": "abs_time month",
|
|
3790
3768
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3798,7 +3776,7 @@
|
|
|
3798
3776
|
"node_type": "array",
|
|
3799
3777
|
"storage_transformers": []
|
|
3800
3778
|
},
|
|
3801
|
-
"
|
|
3779
|
+
"PO4_west": {
|
|
3802
3780
|
"shape": [
|
|
3803
3781
|
12,
|
|
3804
3782
|
3,
|
|
@@ -3838,7 +3816,7 @@
|
|
|
3838
3816
|
}
|
|
3839
3817
|
],
|
|
3840
3818
|
"attributes": {
|
|
3841
|
-
"long_name": "
|
|
3819
|
+
"long_name": "western boundary dissolved inorganic phosphate",
|
|
3842
3820
|
"units": "mmol/m^3",
|
|
3843
3821
|
"coordinates": "abs_time month",
|
|
3844
3822
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3846,13 +3824,13 @@
|
|
|
3846
3824
|
"dimension_names": [
|
|
3847
3825
|
"bry_time",
|
|
3848
3826
|
"s_rho",
|
|
3849
|
-
"
|
|
3827
|
+
"eta_rho"
|
|
3850
3828
|
],
|
|
3851
3829
|
"zarr_format": 3,
|
|
3852
3830
|
"node_type": "array",
|
|
3853
3831
|
"storage_transformers": []
|
|
3854
3832
|
},
|
|
3855
|
-
"
|
|
3833
|
+
"diatSi_north": {
|
|
3856
3834
|
"shape": [
|
|
3857
3835
|
12,
|
|
3858
3836
|
3,
|
|
@@ -3892,7 +3870,7 @@
|
|
|
3892
3870
|
}
|
|
3893
3871
|
],
|
|
3894
3872
|
"attributes": {
|
|
3895
|
-
"long_name": "
|
|
3873
|
+
"long_name": "northern boundary diatom silicate",
|
|
3896
3874
|
"units": "mmol/m^3",
|
|
3897
3875
|
"coordinates": "abs_time month",
|
|
3898
3876
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3906,7 +3884,7 @@
|
|
|
3906
3884
|
"node_type": "array",
|
|
3907
3885
|
"storage_transformers": []
|
|
3908
3886
|
},
|
|
3909
|
-
"
|
|
3887
|
+
"diazP_north": {
|
|
3910
3888
|
"shape": [
|
|
3911
3889
|
12,
|
|
3912
3890
|
3,
|
|
@@ -3946,7 +3924,7 @@
|
|
|
3946
3924
|
}
|
|
3947
3925
|
],
|
|
3948
3926
|
"attributes": {
|
|
3949
|
-
"long_name": "northern boundary
|
|
3927
|
+
"long_name": "northern boundary diazotroph phosphorus",
|
|
3950
3928
|
"units": "mmol/m^3",
|
|
3951
3929
|
"coordinates": "abs_time month",
|
|
3952
3930
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3960,16 +3938,20 @@
|
|
|
3960
3938
|
"node_type": "array",
|
|
3961
3939
|
"storage_transformers": []
|
|
3962
3940
|
},
|
|
3963
|
-
"
|
|
3941
|
+
"DOC_south": {
|
|
3964
3942
|
"shape": [
|
|
3965
|
-
12
|
|
3943
|
+
12,
|
|
3944
|
+
3,
|
|
3945
|
+
4
|
|
3966
3946
|
],
|
|
3967
|
-
"data_type": "
|
|
3947
|
+
"data_type": "float32",
|
|
3968
3948
|
"chunk_grid": {
|
|
3969
3949
|
"name": "regular",
|
|
3970
3950
|
"configuration": {
|
|
3971
3951
|
"chunk_shape": [
|
|
3972
|
-
12
|
|
3952
|
+
12,
|
|
3953
|
+
3,
|
|
3954
|
+
4
|
|
3973
3955
|
]
|
|
3974
3956
|
}
|
|
3975
3957
|
},
|
|
@@ -3979,7 +3961,7 @@
|
|
|
3979
3961
|
"separator": "/"
|
|
3980
3962
|
}
|
|
3981
3963
|
},
|
|
3982
|
-
"fill_value": 0,
|
|
3964
|
+
"fill_value": 0.0,
|
|
3983
3965
|
"codecs": [
|
|
3984
3966
|
{
|
|
3985
3967
|
"name": "bytes",
|
|
@@ -3996,18 +3978,21 @@
|
|
|
3996
3978
|
}
|
|
3997
3979
|
],
|
|
3998
3980
|
"attributes": {
|
|
3999
|
-
"long_name": "
|
|
4000
|
-
"units": "
|
|
4001
|
-
"
|
|
3981
|
+
"long_name": "southern boundary dissolved organic carbon",
|
|
3982
|
+
"units": "mmol/m^3",
|
|
3983
|
+
"coordinates": "abs_time month",
|
|
3984
|
+
"_FillValue": "AAAAAAAA+H8="
|
|
4002
3985
|
},
|
|
4003
3986
|
"dimension_names": [
|
|
4004
|
-
"bry_time"
|
|
3987
|
+
"bry_time",
|
|
3988
|
+
"s_rho",
|
|
3989
|
+
"xi_rho"
|
|
4005
3990
|
],
|
|
4006
3991
|
"zarr_format": 3,
|
|
4007
3992
|
"node_type": "array",
|
|
4008
3993
|
"storage_transformers": []
|
|
4009
3994
|
},
|
|
4010
|
-
"
|
|
3995
|
+
"ALK_ALT_CO2_east": {
|
|
4011
3996
|
"shape": [
|
|
4012
3997
|
12,
|
|
4013
3998
|
3,
|
|
@@ -4047,21 +4032,21 @@
|
|
|
4047
4032
|
}
|
|
4048
4033
|
],
|
|
4049
4034
|
"attributes": {
|
|
4050
|
-
"long_name": "
|
|
4051
|
-
"units": "
|
|
4035
|
+
"long_name": "eastern boundary alkalinity, alternative CO2",
|
|
4036
|
+
"units": "meq/m^3",
|
|
4052
4037
|
"coordinates": "abs_time month",
|
|
4053
4038
|
"_FillValue": "AAAAAAAA+H8="
|
|
4054
4039
|
},
|
|
4055
4040
|
"dimension_names": [
|
|
4056
4041
|
"bry_time",
|
|
4057
4042
|
"s_rho",
|
|
4058
|
-
"
|
|
4043
|
+
"eta_rho"
|
|
4059
4044
|
],
|
|
4060
4045
|
"zarr_format": 3,
|
|
4061
4046
|
"node_type": "array",
|
|
4062
4047
|
"storage_transformers": []
|
|
4063
4048
|
},
|
|
4064
|
-
"
|
|
4049
|
+
"ALK_north": {
|
|
4065
4050
|
"shape": [
|
|
4066
4051
|
12,
|
|
4067
4052
|
3,
|
|
@@ -4101,21 +4086,21 @@
|
|
|
4101
4086
|
}
|
|
4102
4087
|
],
|
|
4103
4088
|
"attributes": {
|
|
4104
|
-
"long_name": "
|
|
4105
|
-
"units": "
|
|
4089
|
+
"long_name": "northern boundary alkalinity",
|
|
4090
|
+
"units": "meq/m^3",
|
|
4106
4091
|
"coordinates": "abs_time month",
|
|
4107
4092
|
"_FillValue": "AAAAAAAA+H8="
|
|
4108
4093
|
},
|
|
4109
4094
|
"dimension_names": [
|
|
4110
4095
|
"bry_time",
|
|
4111
4096
|
"s_rho",
|
|
4112
|
-
"
|
|
4097
|
+
"xi_rho"
|
|
4113
4098
|
],
|
|
4114
4099
|
"zarr_format": 3,
|
|
4115
4100
|
"node_type": "array",
|
|
4116
4101
|
"storage_transformers": []
|
|
4117
4102
|
},
|
|
4118
|
-
"
|
|
4103
|
+
"diatP_west": {
|
|
4119
4104
|
"shape": [
|
|
4120
4105
|
12,
|
|
4121
4106
|
3,
|
|
@@ -4155,7 +4140,7 @@
|
|
|
4155
4140
|
}
|
|
4156
4141
|
],
|
|
4157
4142
|
"attributes": {
|
|
4158
|
-
"long_name": "
|
|
4143
|
+
"long_name": "western boundary diatom phosphorus",
|
|
4159
4144
|
"units": "mmol/m^3",
|
|
4160
4145
|
"coordinates": "abs_time month",
|
|
4161
4146
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4169,7 +4154,7 @@
|
|
|
4169
4154
|
"node_type": "array",
|
|
4170
4155
|
"storage_transformers": []
|
|
4171
4156
|
},
|
|
4172
|
-
"
|
|
4157
|
+
"DOP_east": {
|
|
4173
4158
|
"shape": [
|
|
4174
4159
|
12,
|
|
4175
4160
|
3,
|
|
@@ -4209,30 +4194,34 @@
|
|
|
4209
4194
|
}
|
|
4210
4195
|
],
|
|
4211
4196
|
"attributes": {
|
|
4212
|
-
"long_name": "
|
|
4213
|
-
"units": "
|
|
4197
|
+
"long_name": "eastern boundary dissolved organic phosphorus",
|
|
4198
|
+
"units": "mmol/m^3",
|
|
4214
4199
|
"coordinates": "abs_time month",
|
|
4215
4200
|
"_FillValue": "AAAAAAAA+H8="
|
|
4216
4201
|
},
|
|
4217
4202
|
"dimension_names": [
|
|
4218
4203
|
"bry_time",
|
|
4219
4204
|
"s_rho",
|
|
4220
|
-
"
|
|
4205
|
+
"eta_rho"
|
|
4221
4206
|
],
|
|
4222
4207
|
"zarr_format": 3,
|
|
4223
4208
|
"node_type": "array",
|
|
4224
4209
|
"storage_transformers": []
|
|
4225
4210
|
},
|
|
4226
|
-
"
|
|
4211
|
+
"zooC_south": {
|
|
4227
4212
|
"shape": [
|
|
4228
|
-
12
|
|
4213
|
+
12,
|
|
4214
|
+
3,
|
|
4215
|
+
4
|
|
4229
4216
|
],
|
|
4230
|
-
"data_type": "
|
|
4217
|
+
"data_type": "float32",
|
|
4231
4218
|
"chunk_grid": {
|
|
4232
4219
|
"name": "regular",
|
|
4233
4220
|
"configuration": {
|
|
4234
4221
|
"chunk_shape": [
|
|
4235
|
-
12
|
|
4222
|
+
12,
|
|
4223
|
+
3,
|
|
4224
|
+
4
|
|
4236
4225
|
]
|
|
4237
4226
|
}
|
|
4238
4227
|
},
|
|
@@ -4242,7 +4231,7 @@
|
|
|
4242
4231
|
"separator": "/"
|
|
4243
4232
|
}
|
|
4244
4233
|
},
|
|
4245
|
-
"fill_value": 0,
|
|
4234
|
+
"fill_value": 0.0,
|
|
4246
4235
|
"codecs": [
|
|
4247
4236
|
{
|
|
4248
4237
|
"name": "bytes",
|
|
@@ -4259,16 +4248,21 @@
|
|
|
4259
4248
|
}
|
|
4260
4249
|
],
|
|
4261
4250
|
"attributes": {
|
|
4262
|
-
"long_name": "
|
|
4251
|
+
"long_name": "southern boundary zooplankton carbon",
|
|
4252
|
+
"units": "mmol/m^3",
|
|
4253
|
+
"coordinates": "abs_time month",
|
|
4254
|
+
"_FillValue": "AAAAAAAA+H8="
|
|
4263
4255
|
},
|
|
4264
4256
|
"dimension_names": [
|
|
4265
|
-
"bry_time"
|
|
4257
|
+
"bry_time",
|
|
4258
|
+
"s_rho",
|
|
4259
|
+
"xi_rho"
|
|
4266
4260
|
],
|
|
4267
4261
|
"zarr_format": 3,
|
|
4268
4262
|
"node_type": "array",
|
|
4269
4263
|
"storage_transformers": []
|
|
4270
4264
|
},
|
|
4271
|
-
"
|
|
4265
|
+
"spC_north": {
|
|
4272
4266
|
"shape": [
|
|
4273
4267
|
12,
|
|
4274
4268
|
3,
|
|
@@ -4308,7 +4302,7 @@
|
|
|
4308
4302
|
}
|
|
4309
4303
|
],
|
|
4310
4304
|
"attributes": {
|
|
4311
|
-
"long_name": "northern boundary
|
|
4305
|
+
"long_name": "northern boundary small phytoplankton carbon",
|
|
4312
4306
|
"units": "mmol/m^3",
|
|
4313
4307
|
"coordinates": "abs_time month",
|
|
4314
4308
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4322,7 +4316,7 @@
|
|
|
4322
4316
|
"node_type": "array",
|
|
4323
4317
|
"storage_transformers": []
|
|
4324
4318
|
},
|
|
4325
|
-
"
|
|
4319
|
+
"diatP_north": {
|
|
4326
4320
|
"shape": [
|
|
4327
4321
|
12,
|
|
4328
4322
|
3,
|
|
@@ -4362,7 +4356,7 @@
|
|
|
4362
4356
|
}
|
|
4363
4357
|
],
|
|
4364
4358
|
"attributes": {
|
|
4365
|
-
"long_name": "northern boundary
|
|
4359
|
+
"long_name": "northern boundary diatom phosphorus",
|
|
4366
4360
|
"units": "mmol/m^3",
|
|
4367
4361
|
"coordinates": "abs_time month",
|
|
4368
4362
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4376,7 +4370,7 @@
|
|
|
4376
4370
|
"node_type": "array",
|
|
4377
4371
|
"storage_transformers": []
|
|
4378
4372
|
},
|
|
4379
|
-
"
|
|
4373
|
+
"SiO3_north": {
|
|
4380
4374
|
"shape": [
|
|
4381
4375
|
12,
|
|
4382
4376
|
3,
|
|
@@ -4416,21 +4410,21 @@
|
|
|
4416
4410
|
}
|
|
4417
4411
|
],
|
|
4418
4412
|
"attributes": {
|
|
4419
|
-
"long_name": "
|
|
4420
|
-
"units": "
|
|
4413
|
+
"long_name": "northern boundary dissolved inorganic silicate",
|
|
4414
|
+
"units": "mmol/m^3",
|
|
4421
4415
|
"coordinates": "abs_time month",
|
|
4422
4416
|
"_FillValue": "AAAAAAAA+H8="
|
|
4423
4417
|
},
|
|
4424
4418
|
"dimension_names": [
|
|
4425
4419
|
"bry_time",
|
|
4426
4420
|
"s_rho",
|
|
4427
|
-
"
|
|
4421
|
+
"xi_rho"
|
|
4428
4422
|
],
|
|
4429
4423
|
"zarr_format": 3,
|
|
4430
4424
|
"node_type": "array",
|
|
4431
4425
|
"storage_transformers": []
|
|
4432
4426
|
},
|
|
4433
|
-
"
|
|
4427
|
+
"ALK_west": {
|
|
4434
4428
|
"shape": [
|
|
4435
4429
|
12,
|
|
4436
4430
|
3,
|
|
@@ -4470,7 +4464,7 @@
|
|
|
4470
4464
|
}
|
|
4471
4465
|
],
|
|
4472
4466
|
"attributes": {
|
|
4473
|
-
"long_name": "
|
|
4467
|
+
"long_name": "western boundary alkalinity",
|
|
4474
4468
|
"units": "meq/m^3",
|
|
4475
4469
|
"coordinates": "abs_time month",
|
|
4476
4470
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4484,7 +4478,7 @@
|
|
|
4484
4478
|
"node_type": "array",
|
|
4485
4479
|
"storage_transformers": []
|
|
4486
4480
|
},
|
|
4487
|
-
"
|
|
4481
|
+
"diatC_east": {
|
|
4488
4482
|
"shape": [
|
|
4489
4483
|
12,
|
|
4490
4484
|
3,
|
|
@@ -4524,7 +4518,7 @@
|
|
|
4524
4518
|
}
|
|
4525
4519
|
],
|
|
4526
4520
|
"attributes": {
|
|
4527
|
-
"long_name": "
|
|
4521
|
+
"long_name": "eastern boundary diatom carbon",
|
|
4528
4522
|
"units": "mmol/m^3",
|
|
4529
4523
|
"coordinates": "abs_time month",
|
|
4530
4524
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4532,13 +4526,13 @@
|
|
|
4532
4526
|
"dimension_names": [
|
|
4533
4527
|
"bry_time",
|
|
4534
4528
|
"s_rho",
|
|
4535
|
-
"
|
|
4529
|
+
"eta_rho"
|
|
4536
4530
|
],
|
|
4537
4531
|
"zarr_format": 3,
|
|
4538
4532
|
"node_type": "array",
|
|
4539
4533
|
"storage_transformers": []
|
|
4540
4534
|
},
|
|
4541
|
-
"
|
|
4535
|
+
"DON_north": {
|
|
4542
4536
|
"shape": [
|
|
4543
4537
|
12,
|
|
4544
4538
|
3,
|
|
@@ -4578,7 +4572,7 @@
|
|
|
4578
4572
|
}
|
|
4579
4573
|
],
|
|
4580
4574
|
"attributes": {
|
|
4581
|
-
"long_name": "
|
|
4575
|
+
"long_name": "northern boundary dissolved organic nitrogen",
|
|
4582
4576
|
"units": "mmol/m^3",
|
|
4583
4577
|
"coordinates": "abs_time month",
|
|
4584
4578
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4592,7 +4586,7 @@
|
|
|
4592
4586
|
"node_type": "array",
|
|
4593
4587
|
"storage_transformers": []
|
|
4594
4588
|
},
|
|
4595
|
-
"
|
|
4589
|
+
"diatChl_east": {
|
|
4596
4590
|
"shape": [
|
|
4597
4591
|
12,
|
|
4598
4592
|
3,
|
|
@@ -4632,21 +4626,21 @@
|
|
|
4632
4626
|
}
|
|
4633
4627
|
],
|
|
4634
4628
|
"attributes": {
|
|
4635
|
-
"long_name": "
|
|
4636
|
-
"units": "
|
|
4629
|
+
"long_name": "eastern boundary diatom chloropyll",
|
|
4630
|
+
"units": "mg/m^3",
|
|
4637
4631
|
"coordinates": "abs_time month",
|
|
4638
4632
|
"_FillValue": "AAAAAAAA+H8="
|
|
4639
4633
|
},
|
|
4640
4634
|
"dimension_names": [
|
|
4641
4635
|
"bry_time",
|
|
4642
4636
|
"s_rho",
|
|
4643
|
-
"
|
|
4637
|
+
"eta_rho"
|
|
4644
4638
|
],
|
|
4645
4639
|
"zarr_format": 3,
|
|
4646
4640
|
"node_type": "array",
|
|
4647
4641
|
"storage_transformers": []
|
|
4648
4642
|
},
|
|
4649
|
-
"
|
|
4643
|
+
"NO3_west": {
|
|
4650
4644
|
"shape": [
|
|
4651
4645
|
12,
|
|
4652
4646
|
3,
|
|
@@ -4686,7 +4680,7 @@
|
|
|
4686
4680
|
}
|
|
4687
4681
|
],
|
|
4688
4682
|
"attributes": {
|
|
4689
|
-
"long_name": "
|
|
4683
|
+
"long_name": "western boundary dissolved inorganic nitrate",
|
|
4690
4684
|
"units": "mmol/m^3",
|
|
4691
4685
|
"coordinates": "abs_time month",
|
|
4692
4686
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4694,13 +4688,13 @@
|
|
|
4694
4688
|
"dimension_names": [
|
|
4695
4689
|
"bry_time",
|
|
4696
4690
|
"s_rho",
|
|
4697
|
-
"
|
|
4691
|
+
"eta_rho"
|
|
4698
4692
|
],
|
|
4699
4693
|
"zarr_format": 3,
|
|
4700
4694
|
"node_type": "array",
|
|
4701
4695
|
"storage_transformers": []
|
|
4702
4696
|
},
|
|
4703
|
-
"
|
|
4697
|
+
"spFe_south": {
|
|
4704
4698
|
"shape": [
|
|
4705
4699
|
12,
|
|
4706
4700
|
3,
|
|
@@ -4740,7 +4734,7 @@
|
|
|
4740
4734
|
}
|
|
4741
4735
|
],
|
|
4742
4736
|
"attributes": {
|
|
4743
|
-
"long_name": "southern boundary
|
|
4737
|
+
"long_name": "southern boundary small phytoplankton iron",
|
|
4744
4738
|
"units": "mmol/m^3",
|
|
4745
4739
|
"coordinates": "abs_time month",
|
|
4746
4740
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4754,7 +4748,7 @@
|
|
|
4754
4748
|
"node_type": "array",
|
|
4755
4749
|
"storage_transformers": []
|
|
4756
4750
|
},
|
|
4757
|
-
"
|
|
4751
|
+
"DIC_west": {
|
|
4758
4752
|
"shape": [
|
|
4759
4753
|
12,
|
|
4760
4754
|
3,
|
|
@@ -4794,7 +4788,7 @@
|
|
|
4794
4788
|
}
|
|
4795
4789
|
],
|
|
4796
4790
|
"attributes": {
|
|
4797
|
-
"long_name": "
|
|
4791
|
+
"long_name": "western boundary dissolved inorganic carbon",
|
|
4798
4792
|
"units": "mmol/m^3",
|
|
4799
4793
|
"coordinates": "abs_time month",
|
|
4800
4794
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4808,7 +4802,7 @@
|
|
|
4808
4802
|
"node_type": "array",
|
|
4809
4803
|
"storage_transformers": []
|
|
4810
4804
|
},
|
|
4811
|
-
"
|
|
4805
|
+
"diatFe_east": {
|
|
4812
4806
|
"shape": [
|
|
4813
4807
|
12,
|
|
4814
4808
|
3,
|
|
@@ -4848,7 +4842,7 @@
|
|
|
4848
4842
|
}
|
|
4849
4843
|
],
|
|
4850
4844
|
"attributes": {
|
|
4851
|
-
"long_name": "eastern boundary
|
|
4845
|
+
"long_name": "eastern boundary diatom iron",
|
|
4852
4846
|
"units": "mmol/m^3",
|
|
4853
4847
|
"coordinates": "abs_time month",
|
|
4854
4848
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4862,7 +4856,7 @@
|
|
|
4862
4856
|
"node_type": "array",
|
|
4863
4857
|
"storage_transformers": []
|
|
4864
4858
|
},
|
|
4865
|
-
"
|
|
4859
|
+
"NH4_west": {
|
|
4866
4860
|
"shape": [
|
|
4867
4861
|
12,
|
|
4868
4862
|
3,
|
|
@@ -4902,7 +4896,7 @@
|
|
|
4902
4896
|
}
|
|
4903
4897
|
],
|
|
4904
4898
|
"attributes": {
|
|
4905
|
-
"long_name": "western boundary
|
|
4899
|
+
"long_name": "western boundary dissolved ammonia",
|
|
4906
4900
|
"units": "mmol/m^3",
|
|
4907
4901
|
"coordinates": "abs_time month",
|
|
4908
4902
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4916,7 +4910,7 @@
|
|
|
4916
4910
|
"node_type": "array",
|
|
4917
4911
|
"storage_transformers": []
|
|
4918
4912
|
},
|
|
4919
|
-
"
|
|
4913
|
+
"DOPr_east": {
|
|
4920
4914
|
"shape": [
|
|
4921
4915
|
12,
|
|
4922
4916
|
3,
|
|
@@ -4956,7 +4950,7 @@
|
|
|
4956
4950
|
}
|
|
4957
4951
|
],
|
|
4958
4952
|
"attributes": {
|
|
4959
|
-
"long_name": "
|
|
4953
|
+
"long_name": "eastern boundary refractory dissolved organic phosphorus",
|
|
4960
4954
|
"units": "mmol/m^3",
|
|
4961
4955
|
"coordinates": "abs_time month",
|
|
4962
4956
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4964,13 +4958,13 @@
|
|
|
4964
4958
|
"dimension_names": [
|
|
4965
4959
|
"bry_time",
|
|
4966
4960
|
"s_rho",
|
|
4967
|
-
"
|
|
4961
|
+
"eta_rho"
|
|
4968
4962
|
],
|
|
4969
4963
|
"zarr_format": 3,
|
|
4970
4964
|
"node_type": "array",
|
|
4971
4965
|
"storage_transformers": []
|
|
4972
4966
|
},
|
|
4973
|
-
"
|
|
4967
|
+
"ALK_ALT_CO2_south": {
|
|
4974
4968
|
"shape": [
|
|
4975
4969
|
12,
|
|
4976
4970
|
3,
|
|
@@ -5010,21 +5004,21 @@
|
|
|
5010
5004
|
}
|
|
5011
5005
|
],
|
|
5012
5006
|
"attributes": {
|
|
5013
|
-
"long_name": "
|
|
5014
|
-
"units": "
|
|
5007
|
+
"long_name": "southern boundary alkalinity, alternative CO2",
|
|
5008
|
+
"units": "meq/m^3",
|
|
5015
5009
|
"coordinates": "abs_time month",
|
|
5016
5010
|
"_FillValue": "AAAAAAAA+H8="
|
|
5017
5011
|
},
|
|
5018
5012
|
"dimension_names": [
|
|
5019
5013
|
"bry_time",
|
|
5020
5014
|
"s_rho",
|
|
5021
|
-
"
|
|
5015
|
+
"xi_rho"
|
|
5022
5016
|
],
|
|
5023
5017
|
"zarr_format": 3,
|
|
5024
5018
|
"node_type": "array",
|
|
5025
5019
|
"storage_transformers": []
|
|
5026
5020
|
},
|
|
5027
|
-
"
|
|
5021
|
+
"DON_west": {
|
|
5028
5022
|
"shape": [
|
|
5029
5023
|
12,
|
|
5030
5024
|
3,
|
|
@@ -5064,7 +5058,7 @@
|
|
|
5064
5058
|
}
|
|
5065
5059
|
],
|
|
5066
5060
|
"attributes": {
|
|
5067
|
-
"long_name": "
|
|
5061
|
+
"long_name": "western boundary dissolved organic nitrogen",
|
|
5068
5062
|
"units": "mmol/m^3",
|
|
5069
5063
|
"coordinates": "abs_time month",
|
|
5070
5064
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5072,13 +5066,13 @@
|
|
|
5072
5066
|
"dimension_names": [
|
|
5073
5067
|
"bry_time",
|
|
5074
5068
|
"s_rho",
|
|
5075
|
-
"
|
|
5069
|
+
"eta_rho"
|
|
5076
5070
|
],
|
|
5077
5071
|
"zarr_format": 3,
|
|
5078
5072
|
"node_type": "array",
|
|
5079
5073
|
"storage_transformers": []
|
|
5080
5074
|
},
|
|
5081
|
-
"
|
|
5075
|
+
"spCaCO3_south": {
|
|
5082
5076
|
"shape": [
|
|
5083
5077
|
12,
|
|
5084
5078
|
3,
|
|
@@ -5118,7 +5112,7 @@
|
|
|
5118
5112
|
}
|
|
5119
5113
|
],
|
|
5120
5114
|
"attributes": {
|
|
5121
|
-
"long_name": "
|
|
5115
|
+
"long_name": "southern boundary small phytoplankton CaCO3",
|
|
5122
5116
|
"units": "mmol/m^3",
|
|
5123
5117
|
"coordinates": "abs_time month",
|
|
5124
5118
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5132,7 +5126,7 @@
|
|
|
5132
5126
|
"node_type": "array",
|
|
5133
5127
|
"storage_transformers": []
|
|
5134
5128
|
},
|
|
5135
|
-
"
|
|
5129
|
+
"DOPr_south": {
|
|
5136
5130
|
"shape": [
|
|
5137
5131
|
12,
|
|
5138
5132
|
3,
|
|
@@ -5172,21 +5166,21 @@
|
|
|
5172
5166
|
}
|
|
5173
5167
|
],
|
|
5174
5168
|
"attributes": {
|
|
5175
|
-
"long_name": "
|
|
5176
|
-
"units": "
|
|
5169
|
+
"long_name": "southern boundary refractory dissolved organic phosphorus",
|
|
5170
|
+
"units": "mmol/m^3",
|
|
5177
5171
|
"coordinates": "abs_time month",
|
|
5178
5172
|
"_FillValue": "AAAAAAAA+H8="
|
|
5179
5173
|
},
|
|
5180
5174
|
"dimension_names": [
|
|
5181
5175
|
"bry_time",
|
|
5182
5176
|
"s_rho",
|
|
5183
|
-
"
|
|
5177
|
+
"xi_rho"
|
|
5184
5178
|
],
|
|
5185
5179
|
"zarr_format": 3,
|
|
5186
5180
|
"node_type": "array",
|
|
5187
5181
|
"storage_transformers": []
|
|
5188
5182
|
},
|
|
5189
|
-
"
|
|
5183
|
+
"DOC_east": {
|
|
5190
5184
|
"shape": [
|
|
5191
5185
|
12,
|
|
5192
5186
|
3,
|
|
@@ -5226,7 +5220,7 @@
|
|
|
5226
5220
|
}
|
|
5227
5221
|
],
|
|
5228
5222
|
"attributes": {
|
|
5229
|
-
"long_name": "
|
|
5223
|
+
"long_name": "eastern boundary dissolved organic carbon",
|
|
5230
5224
|
"units": "mmol/m^3",
|
|
5231
5225
|
"coordinates": "abs_time month",
|
|
5232
5226
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5240,7 +5234,7 @@
|
|
|
5240
5234
|
"node_type": "array",
|
|
5241
5235
|
"storage_transformers": []
|
|
5242
5236
|
},
|
|
5243
|
-
"
|
|
5237
|
+
"O2_east": {
|
|
5244
5238
|
"shape": [
|
|
5245
5239
|
12,
|
|
5246
5240
|
3,
|
|
@@ -5280,7 +5274,7 @@
|
|
|
5280
5274
|
}
|
|
5281
5275
|
],
|
|
5282
5276
|
"attributes": {
|
|
5283
|
-
"long_name": "
|
|
5277
|
+
"long_name": "eastern boundary dissolved oxygen",
|
|
5284
5278
|
"units": "mmol/m^3",
|
|
5285
5279
|
"coordinates": "abs_time month",
|
|
5286
5280
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5288,13 +5282,13 @@
|
|
|
5288
5282
|
"dimension_names": [
|
|
5289
5283
|
"bry_time",
|
|
5290
5284
|
"s_rho",
|
|
5291
|
-
"
|
|
5285
|
+
"eta_rho"
|
|
5292
5286
|
],
|
|
5293
5287
|
"zarr_format": 3,
|
|
5294
5288
|
"node_type": "array",
|
|
5295
5289
|
"storage_transformers": []
|
|
5296
5290
|
},
|
|
5297
|
-
"
|
|
5291
|
+
"Fe_north": {
|
|
5298
5292
|
"shape": [
|
|
5299
5293
|
12,
|
|
5300
5294
|
3,
|
|
@@ -5334,7 +5328,7 @@
|
|
|
5334
5328
|
}
|
|
5335
5329
|
],
|
|
5336
5330
|
"attributes": {
|
|
5337
|
-
"long_name": "
|
|
5331
|
+
"long_name": "northern boundary dissolved inorganic iron",
|
|
5338
5332
|
"units": "mmol/m^3",
|
|
5339
5333
|
"coordinates": "abs_time month",
|
|
5340
5334
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5348,7 +5342,7 @@
|
|
|
5348
5342
|
"node_type": "array",
|
|
5349
5343
|
"storage_transformers": []
|
|
5350
5344
|
},
|
|
5351
|
-
"
|
|
5345
|
+
"diazChl_south": {
|
|
5352
5346
|
"shape": [
|
|
5353
5347
|
12,
|
|
5354
5348
|
3,
|
|
@@ -5388,8 +5382,8 @@
|
|
|
5388
5382
|
}
|
|
5389
5383
|
],
|
|
5390
5384
|
"attributes": {
|
|
5391
|
-
"long_name": "
|
|
5392
|
-
"units": "
|
|
5385
|
+
"long_name": "southern boundary diazotroph chloropyll",
|
|
5386
|
+
"units": "mg/m^3",
|
|
5393
5387
|
"coordinates": "abs_time month",
|
|
5394
5388
|
"_FillValue": "AAAAAAAA+H8="
|
|
5395
5389
|
},
|
|
@@ -5402,7 +5396,7 @@
|
|
|
5402
5396
|
"node_type": "array",
|
|
5403
5397
|
"storage_transformers": []
|
|
5404
5398
|
},
|
|
5405
|
-
"
|
|
5399
|
+
"NH4_south": {
|
|
5406
5400
|
"shape": [
|
|
5407
5401
|
12,
|
|
5408
5402
|
3,
|
|
@@ -5442,8 +5436,8 @@
|
|
|
5442
5436
|
}
|
|
5443
5437
|
],
|
|
5444
5438
|
"attributes": {
|
|
5445
|
-
"long_name": "southern boundary
|
|
5446
|
-
"units": "
|
|
5439
|
+
"long_name": "southern boundary dissolved ammonia",
|
|
5440
|
+
"units": "mmol/m^3",
|
|
5447
5441
|
"coordinates": "abs_time month",
|
|
5448
5442
|
"_FillValue": "AAAAAAAA+H8="
|
|
5449
5443
|
},
|
|
@@ -5456,7 +5450,7 @@
|
|
|
5456
5450
|
"node_type": "array",
|
|
5457
5451
|
"storage_transformers": []
|
|
5458
5452
|
},
|
|
5459
|
-
"
|
|
5453
|
+
"ALK_ALT_CO2_west": {
|
|
5460
5454
|
"shape": [
|
|
5461
5455
|
12,
|
|
5462
5456
|
3,
|
|
@@ -5496,8 +5490,8 @@
|
|
|
5496
5490
|
}
|
|
5497
5491
|
],
|
|
5498
5492
|
"attributes": {
|
|
5499
|
-
"long_name": "western boundary
|
|
5500
|
-
"units": "
|
|
5493
|
+
"long_name": "western boundary alkalinity, alternative CO2",
|
|
5494
|
+
"units": "meq/m^3",
|
|
5501
5495
|
"coordinates": "abs_time month",
|
|
5502
5496
|
"_FillValue": "AAAAAAAA+H8="
|
|
5503
5497
|
},
|
|
@@ -5510,7 +5504,7 @@
|
|
|
5510
5504
|
"node_type": "array",
|
|
5511
5505
|
"storage_transformers": []
|
|
5512
5506
|
},
|
|
5513
|
-
"
|
|
5507
|
+
"DOP_north": {
|
|
5514
5508
|
"shape": [
|
|
5515
5509
|
12,
|
|
5516
5510
|
3,
|
|
@@ -5550,7 +5544,7 @@
|
|
|
5550
5544
|
}
|
|
5551
5545
|
],
|
|
5552
5546
|
"attributes": {
|
|
5553
|
-
"long_name": "northern boundary
|
|
5547
|
+
"long_name": "northern boundary dissolved organic phosphorus",
|
|
5554
5548
|
"units": "mmol/m^3",
|
|
5555
5549
|
"coordinates": "abs_time month",
|
|
5556
5550
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5564,7 +5558,7 @@
|
|
|
5564
5558
|
"node_type": "array",
|
|
5565
5559
|
"storage_transformers": []
|
|
5566
5560
|
},
|
|
5567
|
-
"
|
|
5561
|
+
"DOP_west": {
|
|
5568
5562
|
"shape": [
|
|
5569
5563
|
12,
|
|
5570
5564
|
3,
|
|
@@ -5604,7 +5598,7 @@
|
|
|
5604
5598
|
}
|
|
5605
5599
|
],
|
|
5606
5600
|
"attributes": {
|
|
5607
|
-
"long_name": "
|
|
5601
|
+
"long_name": "western boundary dissolved organic phosphorus",
|
|
5608
5602
|
"units": "mmol/m^3",
|
|
5609
5603
|
"coordinates": "abs_time month",
|
|
5610
5604
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5612,13 +5606,13 @@
|
|
|
5612
5606
|
"dimension_names": [
|
|
5613
5607
|
"bry_time",
|
|
5614
5608
|
"s_rho",
|
|
5615
|
-
"
|
|
5609
|
+
"eta_rho"
|
|
5616
5610
|
],
|
|
5617
5611
|
"zarr_format": 3,
|
|
5618
5612
|
"node_type": "array",
|
|
5619
5613
|
"storage_transformers": []
|
|
5620
5614
|
},
|
|
5621
|
-
"
|
|
5615
|
+
"Lig_south": {
|
|
5622
5616
|
"shape": [
|
|
5623
5617
|
12,
|
|
5624
5618
|
3,
|
|
@@ -5658,7 +5652,7 @@
|
|
|
5658
5652
|
}
|
|
5659
5653
|
],
|
|
5660
5654
|
"attributes": {
|
|
5661
|
-
"long_name": "
|
|
5655
|
+
"long_name": "southern boundary iron binding ligand",
|
|
5662
5656
|
"units": "mmol/m^3",
|
|
5663
5657
|
"coordinates": "abs_time month",
|
|
5664
5658
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5666,22 +5660,26 @@
|
|
|
5666
5660
|
"dimension_names": [
|
|
5667
5661
|
"bry_time",
|
|
5668
5662
|
"s_rho",
|
|
5669
|
-
"
|
|
5663
|
+
"xi_rho"
|
|
5670
5664
|
],
|
|
5671
5665
|
"zarr_format": 3,
|
|
5672
5666
|
"node_type": "array",
|
|
5673
5667
|
"storage_transformers": []
|
|
5674
5668
|
},
|
|
5675
|
-
"
|
|
5669
|
+
"diazFe_west": {
|
|
5676
5670
|
"shape": [
|
|
5677
|
-
12
|
|
5671
|
+
12,
|
|
5672
|
+
3,
|
|
5673
|
+
4
|
|
5678
5674
|
],
|
|
5679
|
-
"data_type": "
|
|
5675
|
+
"data_type": "float32",
|
|
5680
5676
|
"chunk_grid": {
|
|
5681
5677
|
"name": "regular",
|
|
5682
5678
|
"configuration": {
|
|
5683
5679
|
"chunk_shape": [
|
|
5684
|
-
12
|
|
5680
|
+
12,
|
|
5681
|
+
3,
|
|
5682
|
+
4
|
|
5685
5683
|
]
|
|
5686
5684
|
}
|
|
5687
5685
|
},
|
|
@@ -5708,19 +5706,21 @@
|
|
|
5708
5706
|
}
|
|
5709
5707
|
],
|
|
5710
5708
|
"attributes": {
|
|
5711
|
-
"
|
|
5712
|
-
"
|
|
5713
|
-
"
|
|
5709
|
+
"long_name": "western boundary diazotroph iron",
|
|
5710
|
+
"units": "mmol/m^3",
|
|
5711
|
+
"coordinates": "abs_time month",
|
|
5714
5712
|
"_FillValue": "AAAAAAAA+H8="
|
|
5715
5713
|
},
|
|
5716
5714
|
"dimension_names": [
|
|
5717
|
-
"bry_time"
|
|
5715
|
+
"bry_time",
|
|
5716
|
+
"s_rho",
|
|
5717
|
+
"eta_rho"
|
|
5718
5718
|
],
|
|
5719
5719
|
"zarr_format": 3,
|
|
5720
5720
|
"node_type": "array",
|
|
5721
5721
|
"storage_transformers": []
|
|
5722
5722
|
},
|
|
5723
|
-
"
|
|
5723
|
+
"DIC_south": {
|
|
5724
5724
|
"shape": [
|
|
5725
5725
|
12,
|
|
5726
5726
|
3,
|
|
@@ -5760,7 +5760,7 @@
|
|
|
5760
5760
|
}
|
|
5761
5761
|
],
|
|
5762
5762
|
"attributes": {
|
|
5763
|
-
"long_name": "
|
|
5763
|
+
"long_name": "southern boundary dissolved inorganic carbon",
|
|
5764
5764
|
"units": "mmol/m^3",
|
|
5765
5765
|
"coordinates": "abs_time month",
|
|
5766
5766
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5768,13 +5768,13 @@
|
|
|
5768
5768
|
"dimension_names": [
|
|
5769
5769
|
"bry_time",
|
|
5770
5770
|
"s_rho",
|
|
5771
|
-
"
|
|
5771
|
+
"xi_rho"
|
|
5772
5772
|
],
|
|
5773
5773
|
"zarr_format": 3,
|
|
5774
5774
|
"node_type": "array",
|
|
5775
5775
|
"storage_transformers": []
|
|
5776
5776
|
},
|
|
5777
|
-
"
|
|
5777
|
+
"PO4_east": {
|
|
5778
5778
|
"shape": [
|
|
5779
5779
|
12,
|
|
5780
5780
|
3,
|
|
@@ -5814,7 +5814,7 @@
|
|
|
5814
5814
|
}
|
|
5815
5815
|
],
|
|
5816
5816
|
"attributes": {
|
|
5817
|
-
"long_name": "eastern boundary
|
|
5817
|
+
"long_name": "eastern boundary dissolved inorganic phosphate",
|
|
5818
5818
|
"units": "mmol/m^3",
|
|
5819
5819
|
"coordinates": "abs_time month",
|
|
5820
5820
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5828,7 +5828,7 @@
|
|
|
5828
5828
|
"node_type": "array",
|
|
5829
5829
|
"storage_transformers": []
|
|
5830
5830
|
},
|
|
5831
|
-
"
|
|
5831
|
+
"DONr_east": {
|
|
5832
5832
|
"shape": [
|
|
5833
5833
|
12,
|
|
5834
5834
|
3,
|
|
@@ -5868,7 +5868,7 @@
|
|
|
5868
5868
|
}
|
|
5869
5869
|
],
|
|
5870
5870
|
"attributes": {
|
|
5871
|
-
"long_name": "eastern boundary
|
|
5871
|
+
"long_name": "eastern boundary refractory dissolved organic nitrogen",
|
|
5872
5872
|
"units": "mmol/m^3",
|
|
5873
5873
|
"coordinates": "abs_time month",
|
|
5874
5874
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5882,7 +5882,7 @@
|
|
|
5882
5882
|
"node_type": "array",
|
|
5883
5883
|
"storage_transformers": []
|
|
5884
5884
|
},
|
|
5885
|
-
"
|
|
5885
|
+
"DONr_south": {
|
|
5886
5886
|
"shape": [
|
|
5887
5887
|
12,
|
|
5888
5888
|
3,
|
|
@@ -5922,7 +5922,7 @@
|
|
|
5922
5922
|
}
|
|
5923
5923
|
],
|
|
5924
5924
|
"attributes": {
|
|
5925
|
-
"long_name": "
|
|
5925
|
+
"long_name": "southern boundary refractory dissolved organic nitrogen",
|
|
5926
5926
|
"units": "mmol/m^3",
|
|
5927
5927
|
"coordinates": "abs_time month",
|
|
5928
5928
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5930,13 +5930,13 @@
|
|
|
5930
5930
|
"dimension_names": [
|
|
5931
5931
|
"bry_time",
|
|
5932
5932
|
"s_rho",
|
|
5933
|
-
"
|
|
5933
|
+
"xi_rho"
|
|
5934
5934
|
],
|
|
5935
5935
|
"zarr_format": 3,
|
|
5936
5936
|
"node_type": "array",
|
|
5937
5937
|
"storage_transformers": []
|
|
5938
5938
|
},
|
|
5939
|
-
"
|
|
5939
|
+
"diatC_south": {
|
|
5940
5940
|
"shape": [
|
|
5941
5941
|
12,
|
|
5942
5942
|
3,
|
|
@@ -5976,21 +5976,21 @@
|
|
|
5976
5976
|
}
|
|
5977
5977
|
],
|
|
5978
5978
|
"attributes": {
|
|
5979
|
-
"long_name": "
|
|
5980
|
-
"units": "
|
|
5979
|
+
"long_name": "southern boundary diatom carbon",
|
|
5980
|
+
"units": "mmol/m^3",
|
|
5981
5981
|
"coordinates": "abs_time month",
|
|
5982
5982
|
"_FillValue": "AAAAAAAA+H8="
|
|
5983
5983
|
},
|
|
5984
5984
|
"dimension_names": [
|
|
5985
5985
|
"bry_time",
|
|
5986
5986
|
"s_rho",
|
|
5987
|
-
"
|
|
5987
|
+
"xi_rho"
|
|
5988
5988
|
],
|
|
5989
5989
|
"zarr_format": 3,
|
|
5990
5990
|
"node_type": "array",
|
|
5991
5991
|
"storage_transformers": []
|
|
5992
5992
|
},
|
|
5993
|
-
"
|
|
5993
|
+
"diatFe_west": {
|
|
5994
5994
|
"shape": [
|
|
5995
5995
|
12,
|
|
5996
5996
|
3,
|
|
@@ -6030,21 +6030,21 @@
|
|
|
6030
6030
|
}
|
|
6031
6031
|
],
|
|
6032
6032
|
"attributes": {
|
|
6033
|
-
"long_name": "
|
|
6034
|
-
"units": "
|
|
6033
|
+
"long_name": "western boundary diatom iron",
|
|
6034
|
+
"units": "mmol/m^3",
|
|
6035
6035
|
"coordinates": "abs_time month",
|
|
6036
6036
|
"_FillValue": "AAAAAAAA+H8="
|
|
6037
6037
|
},
|
|
6038
6038
|
"dimension_names": [
|
|
6039
6039
|
"bry_time",
|
|
6040
6040
|
"s_rho",
|
|
6041
|
-
"
|
|
6041
|
+
"eta_rho"
|
|
6042
6042
|
],
|
|
6043
6043
|
"zarr_format": 3,
|
|
6044
6044
|
"node_type": "array",
|
|
6045
6045
|
"storage_transformers": []
|
|
6046
6046
|
},
|
|
6047
|
-
"
|
|
6047
|
+
"diazC_south": {
|
|
6048
6048
|
"shape": [
|
|
6049
6049
|
12,
|
|
6050
6050
|
3,
|
|
@@ -6084,7 +6084,7 @@
|
|
|
6084
6084
|
}
|
|
6085
6085
|
],
|
|
6086
6086
|
"attributes": {
|
|
6087
|
-
"long_name": "southern boundary
|
|
6087
|
+
"long_name": "southern boundary diazotroph carbon",
|
|
6088
6088
|
"units": "mmol/m^3",
|
|
6089
6089
|
"coordinates": "abs_time month",
|
|
6090
6090
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6098,7 +6098,7 @@
|
|
|
6098
6098
|
"node_type": "array",
|
|
6099
6099
|
"storage_transformers": []
|
|
6100
6100
|
},
|
|
6101
|
-
"
|
|
6101
|
+
"DIC_ALT_CO2_west": {
|
|
6102
6102
|
"shape": [
|
|
6103
6103
|
12,
|
|
6104
6104
|
3,
|
|
@@ -6138,7 +6138,7 @@
|
|
|
6138
6138
|
}
|
|
6139
6139
|
],
|
|
6140
6140
|
"attributes": {
|
|
6141
|
-
"long_name": "
|
|
6141
|
+
"long_name": "western boundary dissolved inorganic carbon, alternative CO2",
|
|
6142
6142
|
"units": "mmol/m^3",
|
|
6143
6143
|
"coordinates": "abs_time month",
|
|
6144
6144
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6146,13 +6146,13 @@
|
|
|
6146
6146
|
"dimension_names": [
|
|
6147
6147
|
"bry_time",
|
|
6148
6148
|
"s_rho",
|
|
6149
|
-
"
|
|
6149
|
+
"eta_rho"
|
|
6150
6150
|
],
|
|
6151
6151
|
"zarr_format": 3,
|
|
6152
6152
|
"node_type": "array",
|
|
6153
6153
|
"storage_transformers": []
|
|
6154
6154
|
},
|
|
6155
|
-
"
|
|
6155
|
+
"DIC_east": {
|
|
6156
6156
|
"shape": [
|
|
6157
6157
|
12,
|
|
6158
6158
|
3,
|
|
@@ -6192,7 +6192,7 @@
|
|
|
6192
6192
|
}
|
|
6193
6193
|
],
|
|
6194
6194
|
"attributes": {
|
|
6195
|
-
"long_name": "
|
|
6195
|
+
"long_name": "eastern boundary dissolved inorganic carbon",
|
|
6196
6196
|
"units": "mmol/m^3",
|
|
6197
6197
|
"coordinates": "abs_time month",
|
|
6198
6198
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6200,13 +6200,13 @@
|
|
|
6200
6200
|
"dimension_names": [
|
|
6201
6201
|
"bry_time",
|
|
6202
6202
|
"s_rho",
|
|
6203
|
-
"
|
|
6203
|
+
"eta_rho"
|
|
6204
6204
|
],
|
|
6205
6205
|
"zarr_format": 3,
|
|
6206
6206
|
"node_type": "array",
|
|
6207
6207
|
"storage_transformers": []
|
|
6208
6208
|
},
|
|
6209
|
-
"
|
|
6209
|
+
"DOPr_west": {
|
|
6210
6210
|
"shape": [
|
|
6211
6211
|
12,
|
|
6212
6212
|
3,
|
|
@@ -6246,7 +6246,7 @@
|
|
|
6246
6246
|
}
|
|
6247
6247
|
],
|
|
6248
6248
|
"attributes": {
|
|
6249
|
-
"long_name": "
|
|
6249
|
+
"long_name": "western boundary refractory dissolved organic phosphorus",
|
|
6250
6250
|
"units": "mmol/m^3",
|
|
6251
6251
|
"coordinates": "abs_time month",
|
|
6252
6252
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6260,7 +6260,7 @@
|
|
|
6260
6260
|
"node_type": "array",
|
|
6261
6261
|
"storage_transformers": []
|
|
6262
6262
|
},
|
|
6263
|
-
"
|
|
6263
|
+
"spP_south": {
|
|
6264
6264
|
"shape": [
|
|
6265
6265
|
12,
|
|
6266
6266
|
3,
|
|
@@ -6300,7 +6300,7 @@
|
|
|
6300
6300
|
}
|
|
6301
6301
|
],
|
|
6302
6302
|
"attributes": {
|
|
6303
|
-
"long_name": "
|
|
6303
|
+
"long_name": "southern boundary small phytoplankton phosphorous",
|
|
6304
6304
|
"units": "mmol/m^3",
|
|
6305
6305
|
"coordinates": "abs_time month",
|
|
6306
6306
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6314,7 +6314,7 @@
|
|
|
6314
6314
|
"node_type": "array",
|
|
6315
6315
|
"storage_transformers": []
|
|
6316
6316
|
},
|
|
6317
|
-
"
|
|
6317
|
+
"NO3_east": {
|
|
6318
6318
|
"shape": [
|
|
6319
6319
|
12,
|
|
6320
6320
|
3,
|
|
@@ -6354,7 +6354,7 @@
|
|
|
6354
6354
|
}
|
|
6355
6355
|
],
|
|
6356
6356
|
"attributes": {
|
|
6357
|
-
"long_name": "
|
|
6357
|
+
"long_name": "eastern boundary dissolved inorganic nitrate",
|
|
6358
6358
|
"units": "mmol/m^3",
|
|
6359
6359
|
"coordinates": "abs_time month",
|
|
6360
6360
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6368,7 +6368,7 @@
|
|
|
6368
6368
|
"node_type": "array",
|
|
6369
6369
|
"storage_transformers": []
|
|
6370
6370
|
},
|
|
6371
|
-
"
|
|
6371
|
+
"ALK_east": {
|
|
6372
6372
|
"shape": [
|
|
6373
6373
|
12,
|
|
6374
6374
|
3,
|
|
@@ -6408,21 +6408,21 @@
|
|
|
6408
6408
|
}
|
|
6409
6409
|
],
|
|
6410
6410
|
"attributes": {
|
|
6411
|
-
"long_name": "
|
|
6412
|
-
"units": "
|
|
6411
|
+
"long_name": "eastern boundary alkalinity",
|
|
6412
|
+
"units": "meq/m^3",
|
|
6413
6413
|
"coordinates": "abs_time month",
|
|
6414
6414
|
"_FillValue": "AAAAAAAA+H8="
|
|
6415
6415
|
},
|
|
6416
6416
|
"dimension_names": [
|
|
6417
6417
|
"bry_time",
|
|
6418
6418
|
"s_rho",
|
|
6419
|
-
"
|
|
6419
|
+
"eta_rho"
|
|
6420
6420
|
],
|
|
6421
6421
|
"zarr_format": 3,
|
|
6422
6422
|
"node_type": "array",
|
|
6423
6423
|
"storage_transformers": []
|
|
6424
6424
|
},
|
|
6425
|
-
"
|
|
6425
|
+
"O2_north": {
|
|
6426
6426
|
"shape": [
|
|
6427
6427
|
12,
|
|
6428
6428
|
3,
|
|
@@ -6462,7 +6462,7 @@
|
|
|
6462
6462
|
}
|
|
6463
6463
|
],
|
|
6464
6464
|
"attributes": {
|
|
6465
|
-
"long_name": "
|
|
6465
|
+
"long_name": "northern boundary dissolved oxygen",
|
|
6466
6466
|
"units": "mmol/m^3",
|
|
6467
6467
|
"coordinates": "abs_time month",
|
|
6468
6468
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6470,13 +6470,13 @@
|
|
|
6470
6470
|
"dimension_names": [
|
|
6471
6471
|
"bry_time",
|
|
6472
6472
|
"s_rho",
|
|
6473
|
-
"
|
|
6473
|
+
"xi_rho"
|
|
6474
6474
|
],
|
|
6475
6475
|
"zarr_format": 3,
|
|
6476
6476
|
"node_type": "array",
|
|
6477
6477
|
"storage_transformers": []
|
|
6478
6478
|
},
|
|
6479
|
-
"
|
|
6479
|
+
"diazFe_south": {
|
|
6480
6480
|
"shape": [
|
|
6481
6481
|
12,
|
|
6482
6482
|
3,
|
|
@@ -6516,7 +6516,7 @@
|
|
|
6516
6516
|
}
|
|
6517
6517
|
],
|
|
6518
6518
|
"attributes": {
|
|
6519
|
-
"long_name": "
|
|
6519
|
+
"long_name": "southern boundary diazotroph iron",
|
|
6520
6520
|
"units": "mmol/m^3",
|
|
6521
6521
|
"coordinates": "abs_time month",
|
|
6522
6522
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6524,13 +6524,13 @@
|
|
|
6524
6524
|
"dimension_names": [
|
|
6525
6525
|
"bry_time",
|
|
6526
6526
|
"s_rho",
|
|
6527
|
-
"
|
|
6527
|
+
"xi_rho"
|
|
6528
6528
|
],
|
|
6529
6529
|
"zarr_format": 3,
|
|
6530
6530
|
"node_type": "array",
|
|
6531
6531
|
"storage_transformers": []
|
|
6532
6532
|
},
|
|
6533
|
-
"
|
|
6533
|
+
"DON_east": {
|
|
6534
6534
|
"shape": [
|
|
6535
6535
|
12,
|
|
6536
6536
|
3,
|
|
@@ -6570,8 +6570,8 @@
|
|
|
6570
6570
|
}
|
|
6571
6571
|
],
|
|
6572
6572
|
"attributes": {
|
|
6573
|
-
"long_name": "
|
|
6574
|
-
"units": "
|
|
6573
|
+
"long_name": "eastern boundary dissolved organic nitrogen",
|
|
6574
|
+
"units": "mmol/m^3",
|
|
6575
6575
|
"coordinates": "abs_time month",
|
|
6576
6576
|
"_FillValue": "AAAAAAAA+H8="
|
|
6577
6577
|
},
|
|
@@ -6584,7 +6584,7 @@
|
|
|
6584
6584
|
"node_type": "array",
|
|
6585
6585
|
"storage_transformers": []
|
|
6586
6586
|
},
|
|
6587
|
-
"
|
|
6587
|
+
"DOCr_north": {
|
|
6588
6588
|
"shape": [
|
|
6589
6589
|
12,
|
|
6590
6590
|
3,
|
|
@@ -6624,7 +6624,7 @@
|
|
|
6624
6624
|
}
|
|
6625
6625
|
],
|
|
6626
6626
|
"attributes": {
|
|
6627
|
-
"long_name": "
|
|
6627
|
+
"long_name": "northern boundary refractory dissolved organic carbon",
|
|
6628
6628
|
"units": "mmol/m^3",
|
|
6629
6629
|
"coordinates": "abs_time month",
|
|
6630
6630
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6632,13 +6632,13 @@
|
|
|
6632
6632
|
"dimension_names": [
|
|
6633
6633
|
"bry_time",
|
|
6634
6634
|
"s_rho",
|
|
6635
|
-
"
|
|
6635
|
+
"xi_rho"
|
|
6636
6636
|
],
|
|
6637
6637
|
"zarr_format": 3,
|
|
6638
6638
|
"node_type": "array",
|
|
6639
6639
|
"storage_transformers": []
|
|
6640
6640
|
},
|
|
6641
|
-
"
|
|
6641
|
+
"O2_west": {
|
|
6642
6642
|
"shape": [
|
|
6643
6643
|
12,
|
|
6644
6644
|
3,
|
|
@@ -6678,7 +6678,7 @@
|
|
|
6678
6678
|
}
|
|
6679
6679
|
],
|
|
6680
6680
|
"attributes": {
|
|
6681
|
-
"long_name": "western boundary
|
|
6681
|
+
"long_name": "western boundary dissolved oxygen",
|
|
6682
6682
|
"units": "mmol/m^3",
|
|
6683
6683
|
"coordinates": "abs_time month",
|
|
6684
6684
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6692,7 +6692,7 @@
|
|
|
6692
6692
|
"node_type": "array",
|
|
6693
6693
|
"storage_transformers": []
|
|
6694
6694
|
},
|
|
6695
|
-
"
|
|
6695
|
+
"diatC_west": {
|
|
6696
6696
|
"shape": [
|
|
6697
6697
|
12,
|
|
6698
6698
|
3,
|
|
@@ -6732,7 +6732,7 @@
|
|
|
6732
6732
|
}
|
|
6733
6733
|
],
|
|
6734
6734
|
"attributes": {
|
|
6735
|
-
"long_name": "
|
|
6735
|
+
"long_name": "western boundary diatom carbon",
|
|
6736
6736
|
"units": "mmol/m^3",
|
|
6737
6737
|
"coordinates": "abs_time month",
|
|
6738
6738
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6740,13 +6740,13 @@
|
|
|
6740
6740
|
"dimension_names": [
|
|
6741
6741
|
"bry_time",
|
|
6742
6742
|
"s_rho",
|
|
6743
|
-
"
|
|
6743
|
+
"eta_rho"
|
|
6744
6744
|
],
|
|
6745
6745
|
"zarr_format": 3,
|
|
6746
6746
|
"node_type": "array",
|
|
6747
6747
|
"storage_transformers": []
|
|
6748
6748
|
},
|
|
6749
|
-
"
|
|
6749
|
+
"diatChl_west": {
|
|
6750
6750
|
"shape": [
|
|
6751
6751
|
12,
|
|
6752
6752
|
3,
|
|
@@ -6786,8 +6786,8 @@
|
|
|
6786
6786
|
}
|
|
6787
6787
|
],
|
|
6788
6788
|
"attributes": {
|
|
6789
|
-
"long_name": "
|
|
6790
|
-
"units": "
|
|
6789
|
+
"long_name": "western boundary diatom chloropyll",
|
|
6790
|
+
"units": "mg/m^3",
|
|
6791
6791
|
"coordinates": "abs_time month",
|
|
6792
6792
|
"_FillValue": "AAAAAAAA+H8="
|
|
6793
6793
|
},
|
|
@@ -6800,7 +6800,7 @@
|
|
|
6800
6800
|
"node_type": "array",
|
|
6801
6801
|
"storage_transformers": []
|
|
6802
6802
|
},
|
|
6803
|
-
"
|
|
6803
|
+
"NO3_north": {
|
|
6804
6804
|
"shape": [
|
|
6805
6805
|
12,
|
|
6806
6806
|
3,
|
|
@@ -6840,7 +6840,7 @@
|
|
|
6840
6840
|
}
|
|
6841
6841
|
],
|
|
6842
6842
|
"attributes": {
|
|
6843
|
-
"long_name": "northern boundary
|
|
6843
|
+
"long_name": "northern boundary dissolved inorganic nitrate",
|
|
6844
6844
|
"units": "mmol/m^3",
|
|
6845
6845
|
"coordinates": "abs_time month",
|
|
6846
6846
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6854,7 +6854,7 @@
|
|
|
6854
6854
|
"node_type": "array",
|
|
6855
6855
|
"storage_transformers": []
|
|
6856
6856
|
},
|
|
6857
|
-
"
|
|
6857
|
+
"NH4_east": {
|
|
6858
6858
|
"shape": [
|
|
6859
6859
|
12,
|
|
6860
6860
|
3,
|
|
@@ -6894,7 +6894,7 @@
|
|
|
6894
6894
|
}
|
|
6895
6895
|
],
|
|
6896
6896
|
"attributes": {
|
|
6897
|
-
"long_name": "
|
|
6897
|
+
"long_name": "eastern boundary dissolved ammonia",
|
|
6898
6898
|
"units": "mmol/m^3",
|
|
6899
6899
|
"coordinates": "abs_time month",
|
|
6900
6900
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6908,7 +6908,7 @@
|
|
|
6908
6908
|
"node_type": "array",
|
|
6909
6909
|
"storage_transformers": []
|
|
6910
6910
|
},
|
|
6911
|
-
"
|
|
6911
|
+
"diatFe_north": {
|
|
6912
6912
|
"shape": [
|
|
6913
6913
|
12,
|
|
6914
6914
|
3,
|
|
@@ -6948,21 +6948,21 @@
|
|
|
6948
6948
|
}
|
|
6949
6949
|
],
|
|
6950
6950
|
"attributes": {
|
|
6951
|
-
"long_name": "
|
|
6952
|
-
"units": "
|
|
6951
|
+
"long_name": "northern boundary diatom iron",
|
|
6952
|
+
"units": "mmol/m^3",
|
|
6953
6953
|
"coordinates": "abs_time month",
|
|
6954
6954
|
"_FillValue": "AAAAAAAA+H8="
|
|
6955
6955
|
},
|
|
6956
6956
|
"dimension_names": [
|
|
6957
6957
|
"bry_time",
|
|
6958
6958
|
"s_rho",
|
|
6959
|
-
"
|
|
6959
|
+
"xi_rho"
|
|
6960
6960
|
],
|
|
6961
6961
|
"zarr_format": 3,
|
|
6962
6962
|
"node_type": "array",
|
|
6963
6963
|
"storage_transformers": []
|
|
6964
6964
|
},
|
|
6965
|
-
"
|
|
6965
|
+
"PO4_north": {
|
|
6966
6966
|
"shape": [
|
|
6967
6967
|
12,
|
|
6968
6968
|
3,
|
|
@@ -7002,7 +7002,7 @@
|
|
|
7002
7002
|
}
|
|
7003
7003
|
],
|
|
7004
7004
|
"attributes": {
|
|
7005
|
-
"long_name": "
|
|
7005
|
+
"long_name": "northern boundary dissolved inorganic phosphate",
|
|
7006
7006
|
"units": "mmol/m^3",
|
|
7007
7007
|
"coordinates": "abs_time month",
|
|
7008
7008
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -7010,13 +7010,13 @@
|
|
|
7010
7010
|
"dimension_names": [
|
|
7011
7011
|
"bry_time",
|
|
7012
7012
|
"s_rho",
|
|
7013
|
-
"
|
|
7013
|
+
"xi_rho"
|
|
7014
7014
|
],
|
|
7015
7015
|
"zarr_format": 3,
|
|
7016
7016
|
"node_type": "array",
|
|
7017
7017
|
"storage_transformers": []
|
|
7018
7018
|
},
|
|
7019
|
-
"
|
|
7019
|
+
"diatP_east": {
|
|
7020
7020
|
"shape": [
|
|
7021
7021
|
12,
|
|
7022
7022
|
3,
|
|
@@ -7056,7 +7056,7 @@
|
|
|
7056
7056
|
}
|
|
7057
7057
|
],
|
|
7058
7058
|
"attributes": {
|
|
7059
|
-
"long_name": "
|
|
7059
|
+
"long_name": "eastern boundary diatom phosphorus",
|
|
7060
7060
|
"units": "mmol/m^3",
|
|
7061
7061
|
"coordinates": "abs_time month",
|
|
7062
7062
|
"_FillValue": "AAAAAAAA+H8="
|