roms-tools 3.3.0__py3-none-any.whl → 3.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- roms_tools/__init__.py +1 -1
- roms_tools/analysis/cdr_ensemble.py +10 -13
- roms_tools/analysis/roms_output.py +5 -304
- roms_tools/{download.py → datasets/download.py} +1 -0
- roms_tools/{setup → datasets}/lat_lon_datasets.py +88 -64
- roms_tools/{setup → datasets}/river_datasets.py +9 -4
- roms_tools/datasets/roms_dataset.py +854 -0
- roms_tools/datasets/utils.py +487 -0
- roms_tools/{setup/fill.py → fill.py} +110 -13
- roms_tools/plot.py +4 -4
- roms_tools/regrid.py +76 -0
- roms_tools/setup/boundary_forcing.py +53 -45
- roms_tools/setup/cdr_release.py +2 -4
- roms_tools/setup/grid.py +46 -15
- roms_tools/setup/initial_conditions.py +330 -71
- roms_tools/setup/mask.py +2 -5
- roms_tools/setup/nesting.py +13 -6
- roms_tools/setup/river_forcing.py +4 -4
- roms_tools/setup/surface_forcing.py +15 -11
- roms_tools/setup/tides.py +7 -6
- roms_tools/setup/topography.py +10 -2
- roms_tools/setup/utils.py +292 -666
- roms_tools/tests/test_analysis/test_cdr_ensemble.py +4 -6
- roms_tools/tests/test_analysis/test_roms_output.py +1 -220
- roms_tools/tests/{test_setup → test_datasets}/test_lat_lon_datasets.py +4 -4
- roms_tools/tests/{test_setup → test_datasets}/test_river_datasets.py +1 -1
- roms_tools/tests/test_datasets/test_roms_dataset.py +743 -0
- roms_tools/tests/test_datasets/test_utils.py +527 -0
- roms_tools/tests/{test_setup/test_fill.py → test_fill.py} +72 -9
- roms_tools/tests/test_regrid.py +120 -1
- roms_tools/tests/test_setup/test_boundary_forcing.py +57 -138
- roms_tools/tests/test_setup/test_cdr_release.py +4 -5
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json +293 -2021
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zarr.json +294 -2022
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/ALK_west → initial_conditions_from_roms.zarr/ALK}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west → initial_conditions_from_roms.zarr/ALK_ALT_CO2}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west → initial_conditions_from_roms.zarr/Cs_r}/zarr.json +5 -12
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/diatFe_west → initial_conditions_from_roms.zarr/Cs_w}/zarr.json +3 -10
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DOCr_west → initial_conditions_from_roms.zarr/DIC}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west → initial_conditions_from_roms.zarr/DOCr}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DOP_west → initial_conditions_from_roms.zarr/Lig}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DON_west → initial_conditions_from_roms.zarr/NH4}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/Lig_west → initial_conditions_from_roms.zarr/O2}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/abs_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/diatC_west → initial_conditions_from_roms.zarr/diatC}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/diatChl_west → initial_conditions_from_roms.zarr/diatChl}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/O2_west → initial_conditions_from_roms.zarr/diatFe}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DIC_west → initial_conditions_from_roms.zarr/diatP}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/DOC_west → initial_conditions_from_roms.zarr/diatSi}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/diazChl_west → initial_conditions_from_roms.zarr/diazChl}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/Fe_west → initial_conditions_from_roms.zarr/diazFe}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/c/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/zarr.json +47 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west → initial_conditions_from_roms.zarr/salt}/zarr.json +12 -9
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/spChl_west → initial_conditions_from_roms.zarr/spChl}/zarr.json +11 -8
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/{bgc_boundary_forcing_from_climatology.zarr/NH4_west → initial_conditions_from_roms.zarr/u}/zarr.json +12 -9
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/w/zarr.json +57 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zarr.json +2481 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/zarr.json +54 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/zarr.json +57 -0
- roms_tools/tests/test_setup/test_grid.py +66 -1
- roms_tools/tests/test_setup/test_initial_conditions.py +130 -104
- roms_tools/tests/test_setup/test_nesting.py +2 -1
- roms_tools/tests/test_setup/test_surface_forcing.py +1 -1
- roms_tools/tests/test_setup/test_tides.py +1 -1
- roms_tools/tests/test_setup/test_utils.py +100 -15
- roms_tools/tests/test_setup/test_validation.py +15 -0
- roms_tools/tests/test_tiling/test_partition.py +63 -15
- roms_tools/tests/test_utils.py +365 -0
- roms_tools/tiling/partition.py +81 -211
- roms_tools/utils.py +360 -62
- {roms_tools-3.3.0.dist-info → roms_tools-3.5.0.dist-info}/METADATA +2 -3
- {roms_tools-3.3.0.dist-info → roms_tools-3.5.0.dist-info}/RECORD +137 -174
- {roms_tools-3.3.0.dist-info → roms_tools-3.5.0.dist-info}/WHEEL +1 -1
- 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_west/c/0/0/0 +0 -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_west/c/0/0/0 +0 -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/DOCr_west/c/0/0/0 +0 -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/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 +0 -54
- 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/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 +0 -54
- 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/Lig_west/c/0/0/0 +0 -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/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 +0 -54
- 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/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 +0 -54
- 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 +0 -54
- 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/diatChl_west/c/0/0/0 +0 -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/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 +0 -54
- 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 +0 -54
- 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 +0 -54
- 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/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 +0 -54
- 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 +0 -54
- 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 +0 -54
- 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 +0 -54
- 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/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 +0 -54
- 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 +0 -54
- 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 +0 -54
- 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_ALT_CO2_west/zarr.json +0 -54
- 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_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/zarr.json +0 -54
- 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/DIC_west/zarr.json +0 -54
- 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/DOC_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/zarr.json +0 -54
- 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/Fe_west/zarr.json +0 -54
- 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/Lig_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/zarr.json +0 -54
- 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/NO3_west/zarr.json +0 -54
- 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/O2_west/zarr.json +0 -54
- 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/PO4_west/zarr.json +0 -54
- 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/SiO3_west/zarr.json +0 -54
- 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/diatC_west/zarr.json +0 -54
- 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/diatChl_west/zarr.json +0 -54
- 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_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/zarr.json +0 -54
- 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/diatSi_west/zarr.json +0 -54
- 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/diazC_west/zarr.json +0 -54
- 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/diazChl_west/zarr.json +0 -54
- 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/diazFe_west/zarr.json +0 -54
- 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/diazP_west/zarr.json +0 -54
- 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/spC_west/zarr.json +0 -54
- 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/spCaCO3_west/zarr.json +0 -54
- 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/spChl_west/zarr.json +0 -54
- 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/spFe_west/zarr.json +0 -54
- 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/spP_west/zarr.json +0 -54
- 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_boundary_forcing_from_unified_climatology.zarr/zooC_west/zarr.json +0 -54
- {roms_tools-3.3.0.dist-info → roms_tools-3.5.0.dist-info}/licenses/LICENSE +0 -0
- {roms_tools-3.3.0.dist-info → roms_tools-3.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"attributes": {
|
|
3
3
|
"title": "ROMS boundary forcing file created by ROMS-Tools",
|
|
4
|
-
"roms_tools_version": "3.1.
|
|
4
|
+
"roms_tools_version": "3.1.2.dev21+g719a5b8c0",
|
|
5
5
|
"start_time": "2021-06-29 00:00:00",
|
|
6
6
|
"end_time": "2021-06-30 00:00:00",
|
|
7
7
|
"source": "CESM_REGRIDDED",
|
|
@@ -18,1617 +18,6 @@
|
|
|
18
18
|
"kind": "inline",
|
|
19
19
|
"must_understand": false,
|
|
20
20
|
"metadata": {
|
|
21
|
-
"diatChl_south": {
|
|
22
|
-
"shape": [
|
|
23
|
-
12,
|
|
24
|
-
3,
|
|
25
|
-
4
|
|
26
|
-
],
|
|
27
|
-
"data_type": "float32",
|
|
28
|
-
"chunk_grid": {
|
|
29
|
-
"name": "regular",
|
|
30
|
-
"configuration": {
|
|
31
|
-
"chunk_shape": [
|
|
32
|
-
12,
|
|
33
|
-
3,
|
|
34
|
-
4
|
|
35
|
-
]
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"chunk_key_encoding": {
|
|
39
|
-
"name": "default",
|
|
40
|
-
"configuration": {
|
|
41
|
-
"separator": "/"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"fill_value": 0.0,
|
|
45
|
-
"codecs": [
|
|
46
|
-
{
|
|
47
|
-
"name": "bytes",
|
|
48
|
-
"configuration": {
|
|
49
|
-
"endian": "little"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "zstd",
|
|
54
|
-
"configuration": {
|
|
55
|
-
"level": 0,
|
|
56
|
-
"checksum": false
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"attributes": {
|
|
61
|
-
"long_name": "southern boundary diatom chloropyll",
|
|
62
|
-
"units": "mg/m^3",
|
|
63
|
-
"coordinates": "abs_time month",
|
|
64
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
65
|
-
},
|
|
66
|
-
"dimension_names": [
|
|
67
|
-
"bry_time",
|
|
68
|
-
"s_rho",
|
|
69
|
-
"xi_rho"
|
|
70
|
-
],
|
|
71
|
-
"zarr_format": 3,
|
|
72
|
-
"node_type": "array",
|
|
73
|
-
"storage_transformers": []
|
|
74
|
-
},
|
|
75
|
-
"DOC_north": {
|
|
76
|
-
"shape": [
|
|
77
|
-
12,
|
|
78
|
-
3,
|
|
79
|
-
4
|
|
80
|
-
],
|
|
81
|
-
"data_type": "float32",
|
|
82
|
-
"chunk_grid": {
|
|
83
|
-
"name": "regular",
|
|
84
|
-
"configuration": {
|
|
85
|
-
"chunk_shape": [
|
|
86
|
-
12,
|
|
87
|
-
3,
|
|
88
|
-
4
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"chunk_key_encoding": {
|
|
93
|
-
"name": "default",
|
|
94
|
-
"configuration": {
|
|
95
|
-
"separator": "/"
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
"fill_value": 0.0,
|
|
99
|
-
"codecs": [
|
|
100
|
-
{
|
|
101
|
-
"name": "bytes",
|
|
102
|
-
"configuration": {
|
|
103
|
-
"endian": "little"
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"name": "zstd",
|
|
108
|
-
"configuration": {
|
|
109
|
-
"level": 0,
|
|
110
|
-
"checksum": false
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
],
|
|
114
|
-
"attributes": {
|
|
115
|
-
"long_name": "northern boundary dissolved organic carbon",
|
|
116
|
-
"units": "mmol/m^3",
|
|
117
|
-
"coordinates": "abs_time month",
|
|
118
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
119
|
-
},
|
|
120
|
-
"dimension_names": [
|
|
121
|
-
"bry_time",
|
|
122
|
-
"s_rho",
|
|
123
|
-
"xi_rho"
|
|
124
|
-
],
|
|
125
|
-
"zarr_format": 3,
|
|
126
|
-
"node_type": "array",
|
|
127
|
-
"storage_transformers": []
|
|
128
|
-
},
|
|
129
|
-
"spP_east": {
|
|
130
|
-
"shape": [
|
|
131
|
-
12,
|
|
132
|
-
3,
|
|
133
|
-
4
|
|
134
|
-
],
|
|
135
|
-
"data_type": "float32",
|
|
136
|
-
"chunk_grid": {
|
|
137
|
-
"name": "regular",
|
|
138
|
-
"configuration": {
|
|
139
|
-
"chunk_shape": [
|
|
140
|
-
12,
|
|
141
|
-
3,
|
|
142
|
-
4
|
|
143
|
-
]
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"chunk_key_encoding": {
|
|
147
|
-
"name": "default",
|
|
148
|
-
"configuration": {
|
|
149
|
-
"separator": "/"
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
"fill_value": 0.0,
|
|
153
|
-
"codecs": [
|
|
154
|
-
{
|
|
155
|
-
"name": "bytes",
|
|
156
|
-
"configuration": {
|
|
157
|
-
"endian": "little"
|
|
158
|
-
}
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"name": "zstd",
|
|
162
|
-
"configuration": {
|
|
163
|
-
"level": 0,
|
|
164
|
-
"checksum": false
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
],
|
|
168
|
-
"attributes": {
|
|
169
|
-
"long_name": "eastern boundary small phytoplankton phosphorous",
|
|
170
|
-
"units": "mmol/m^3",
|
|
171
|
-
"coordinates": "abs_time month",
|
|
172
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
173
|
-
},
|
|
174
|
-
"dimension_names": [
|
|
175
|
-
"bry_time",
|
|
176
|
-
"s_rho",
|
|
177
|
-
"eta_rho"
|
|
178
|
-
],
|
|
179
|
-
"zarr_format": 3,
|
|
180
|
-
"node_type": "array",
|
|
181
|
-
"storage_transformers": []
|
|
182
|
-
},
|
|
183
|
-
"DIC_ALT_CO2_north": {
|
|
184
|
-
"shape": [
|
|
185
|
-
12,
|
|
186
|
-
3,
|
|
187
|
-
4
|
|
188
|
-
],
|
|
189
|
-
"data_type": "float32",
|
|
190
|
-
"chunk_grid": {
|
|
191
|
-
"name": "regular",
|
|
192
|
-
"configuration": {
|
|
193
|
-
"chunk_shape": [
|
|
194
|
-
12,
|
|
195
|
-
3,
|
|
196
|
-
4
|
|
197
|
-
]
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"chunk_key_encoding": {
|
|
201
|
-
"name": "default",
|
|
202
|
-
"configuration": {
|
|
203
|
-
"separator": "/"
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
"fill_value": 0.0,
|
|
207
|
-
"codecs": [
|
|
208
|
-
{
|
|
209
|
-
"name": "bytes",
|
|
210
|
-
"configuration": {
|
|
211
|
-
"endian": "little"
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"name": "zstd",
|
|
216
|
-
"configuration": {
|
|
217
|
-
"level": 0,
|
|
218
|
-
"checksum": false
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
|
-
"attributes": {
|
|
223
|
-
"long_name": "northern boundary dissolved inorganic carbon, alternative CO2",
|
|
224
|
-
"units": "mmol/m^3",
|
|
225
|
-
"coordinates": "abs_time month",
|
|
226
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
227
|
-
},
|
|
228
|
-
"dimension_names": [
|
|
229
|
-
"bry_time",
|
|
230
|
-
"s_rho",
|
|
231
|
-
"xi_rho"
|
|
232
|
-
],
|
|
233
|
-
"zarr_format": 3,
|
|
234
|
-
"node_type": "array",
|
|
235
|
-
"storage_transformers": []
|
|
236
|
-
},
|
|
237
|
-
"month": {
|
|
238
|
-
"shape": [
|
|
239
|
-
12
|
|
240
|
-
],
|
|
241
|
-
"data_type": "int64",
|
|
242
|
-
"chunk_grid": {
|
|
243
|
-
"name": "regular",
|
|
244
|
-
"configuration": {
|
|
245
|
-
"chunk_shape": [
|
|
246
|
-
12
|
|
247
|
-
]
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
"chunk_key_encoding": {
|
|
251
|
-
"name": "default",
|
|
252
|
-
"configuration": {
|
|
253
|
-
"separator": "/"
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
"fill_value": 0,
|
|
257
|
-
"codecs": [
|
|
258
|
-
{
|
|
259
|
-
"name": "bytes",
|
|
260
|
-
"configuration": {
|
|
261
|
-
"endian": "little"
|
|
262
|
-
}
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"name": "zstd",
|
|
266
|
-
"configuration": {
|
|
267
|
-
"level": 0,
|
|
268
|
-
"checksum": false
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
],
|
|
272
|
-
"attributes": {
|
|
273
|
-
"long_name": "Month index (1-12)"
|
|
274
|
-
},
|
|
275
|
-
"dimension_names": [
|
|
276
|
-
"bry_time"
|
|
277
|
-
],
|
|
278
|
-
"zarr_format": 3,
|
|
279
|
-
"node_type": "array",
|
|
280
|
-
"storage_transformers": []
|
|
281
|
-
},
|
|
282
|
-
"diatSi_west": {
|
|
283
|
-
"shape": [
|
|
284
|
-
12,
|
|
285
|
-
3,
|
|
286
|
-
4
|
|
287
|
-
],
|
|
288
|
-
"data_type": "float32",
|
|
289
|
-
"chunk_grid": {
|
|
290
|
-
"name": "regular",
|
|
291
|
-
"configuration": {
|
|
292
|
-
"chunk_shape": [
|
|
293
|
-
12,
|
|
294
|
-
3,
|
|
295
|
-
4
|
|
296
|
-
]
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
"chunk_key_encoding": {
|
|
300
|
-
"name": "default",
|
|
301
|
-
"configuration": {
|
|
302
|
-
"separator": "/"
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
|
-
"fill_value": 0.0,
|
|
306
|
-
"codecs": [
|
|
307
|
-
{
|
|
308
|
-
"name": "bytes",
|
|
309
|
-
"configuration": {
|
|
310
|
-
"endian": "little"
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"name": "zstd",
|
|
315
|
-
"configuration": {
|
|
316
|
-
"level": 0,
|
|
317
|
-
"checksum": false
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
],
|
|
321
|
-
"attributes": {
|
|
322
|
-
"long_name": "western boundary diatom silicate",
|
|
323
|
-
"units": "mmol/m^3",
|
|
324
|
-
"coordinates": "abs_time month",
|
|
325
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
326
|
-
},
|
|
327
|
-
"dimension_names": [
|
|
328
|
-
"bry_time",
|
|
329
|
-
"s_rho",
|
|
330
|
-
"eta_rho"
|
|
331
|
-
],
|
|
332
|
-
"zarr_format": 3,
|
|
333
|
-
"node_type": "array",
|
|
334
|
-
"storage_transformers": []
|
|
335
|
-
},
|
|
336
|
-
"spChl_north": {
|
|
337
|
-
"shape": [
|
|
338
|
-
12,
|
|
339
|
-
3,
|
|
340
|
-
4
|
|
341
|
-
],
|
|
342
|
-
"data_type": "float32",
|
|
343
|
-
"chunk_grid": {
|
|
344
|
-
"name": "regular",
|
|
345
|
-
"configuration": {
|
|
346
|
-
"chunk_shape": [
|
|
347
|
-
12,
|
|
348
|
-
3,
|
|
349
|
-
4
|
|
350
|
-
]
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
"chunk_key_encoding": {
|
|
354
|
-
"name": "default",
|
|
355
|
-
"configuration": {
|
|
356
|
-
"separator": "/"
|
|
357
|
-
}
|
|
358
|
-
},
|
|
359
|
-
"fill_value": 0.0,
|
|
360
|
-
"codecs": [
|
|
361
|
-
{
|
|
362
|
-
"name": "bytes",
|
|
363
|
-
"configuration": {
|
|
364
|
-
"endian": "little"
|
|
365
|
-
}
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"name": "zstd",
|
|
369
|
-
"configuration": {
|
|
370
|
-
"level": 0,
|
|
371
|
-
"checksum": false
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
],
|
|
375
|
-
"attributes": {
|
|
376
|
-
"long_name": "northern boundary small phytoplankton chlorophyll",
|
|
377
|
-
"units": "mg/m^3",
|
|
378
|
-
"coordinates": "abs_time month",
|
|
379
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
380
|
-
},
|
|
381
|
-
"dimension_names": [
|
|
382
|
-
"bry_time",
|
|
383
|
-
"s_rho",
|
|
384
|
-
"xi_rho"
|
|
385
|
-
],
|
|
386
|
-
"zarr_format": 3,
|
|
387
|
-
"node_type": "array",
|
|
388
|
-
"storage_transformers": []
|
|
389
|
-
},
|
|
390
|
-
"diatSi_south": {
|
|
391
|
-
"shape": [
|
|
392
|
-
12,
|
|
393
|
-
3,
|
|
394
|
-
4
|
|
395
|
-
],
|
|
396
|
-
"data_type": "float32",
|
|
397
|
-
"chunk_grid": {
|
|
398
|
-
"name": "regular",
|
|
399
|
-
"configuration": {
|
|
400
|
-
"chunk_shape": [
|
|
401
|
-
12,
|
|
402
|
-
3,
|
|
403
|
-
4
|
|
404
|
-
]
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
"chunk_key_encoding": {
|
|
408
|
-
"name": "default",
|
|
409
|
-
"configuration": {
|
|
410
|
-
"separator": "/"
|
|
411
|
-
}
|
|
412
|
-
},
|
|
413
|
-
"fill_value": 0.0,
|
|
414
|
-
"codecs": [
|
|
415
|
-
{
|
|
416
|
-
"name": "bytes",
|
|
417
|
-
"configuration": {
|
|
418
|
-
"endian": "little"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"name": "zstd",
|
|
423
|
-
"configuration": {
|
|
424
|
-
"level": 0,
|
|
425
|
-
"checksum": false
|
|
426
|
-
}
|
|
427
|
-
}
|
|
428
|
-
],
|
|
429
|
-
"attributes": {
|
|
430
|
-
"long_name": "southern boundary diatom silicate",
|
|
431
|
-
"units": "mmol/m^3",
|
|
432
|
-
"coordinates": "abs_time month",
|
|
433
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
434
|
-
},
|
|
435
|
-
"dimension_names": [
|
|
436
|
-
"bry_time",
|
|
437
|
-
"s_rho",
|
|
438
|
-
"xi_rho"
|
|
439
|
-
],
|
|
440
|
-
"zarr_format": 3,
|
|
441
|
-
"node_type": "array",
|
|
442
|
-
"storage_transformers": []
|
|
443
|
-
},
|
|
444
|
-
"SiO3_west": {
|
|
445
|
-
"shape": [
|
|
446
|
-
12,
|
|
447
|
-
3,
|
|
448
|
-
4
|
|
449
|
-
],
|
|
450
|
-
"data_type": "float32",
|
|
451
|
-
"chunk_grid": {
|
|
452
|
-
"name": "regular",
|
|
453
|
-
"configuration": {
|
|
454
|
-
"chunk_shape": [
|
|
455
|
-
12,
|
|
456
|
-
3,
|
|
457
|
-
4
|
|
458
|
-
]
|
|
459
|
-
}
|
|
460
|
-
},
|
|
461
|
-
"chunk_key_encoding": {
|
|
462
|
-
"name": "default",
|
|
463
|
-
"configuration": {
|
|
464
|
-
"separator": "/"
|
|
465
|
-
}
|
|
466
|
-
},
|
|
467
|
-
"fill_value": 0.0,
|
|
468
|
-
"codecs": [
|
|
469
|
-
{
|
|
470
|
-
"name": "bytes",
|
|
471
|
-
"configuration": {
|
|
472
|
-
"endian": "little"
|
|
473
|
-
}
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"name": "zstd",
|
|
477
|
-
"configuration": {
|
|
478
|
-
"level": 0,
|
|
479
|
-
"checksum": false
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
],
|
|
483
|
-
"attributes": {
|
|
484
|
-
"long_name": "western boundary dissolved inorganic silicate",
|
|
485
|
-
"units": "mmol/m^3",
|
|
486
|
-
"coordinates": "abs_time month",
|
|
487
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
488
|
-
},
|
|
489
|
-
"dimension_names": [
|
|
490
|
-
"bry_time",
|
|
491
|
-
"s_rho",
|
|
492
|
-
"eta_rho"
|
|
493
|
-
],
|
|
494
|
-
"zarr_format": 3,
|
|
495
|
-
"node_type": "array",
|
|
496
|
-
"storage_transformers": []
|
|
497
|
-
},
|
|
498
|
-
"spC_west": {
|
|
499
|
-
"shape": [
|
|
500
|
-
12,
|
|
501
|
-
3,
|
|
502
|
-
4
|
|
503
|
-
],
|
|
504
|
-
"data_type": "float32",
|
|
505
|
-
"chunk_grid": {
|
|
506
|
-
"name": "regular",
|
|
507
|
-
"configuration": {
|
|
508
|
-
"chunk_shape": [
|
|
509
|
-
12,
|
|
510
|
-
3,
|
|
511
|
-
4
|
|
512
|
-
]
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
"chunk_key_encoding": {
|
|
516
|
-
"name": "default",
|
|
517
|
-
"configuration": {
|
|
518
|
-
"separator": "/"
|
|
519
|
-
}
|
|
520
|
-
},
|
|
521
|
-
"fill_value": 0.0,
|
|
522
|
-
"codecs": [
|
|
523
|
-
{
|
|
524
|
-
"name": "bytes",
|
|
525
|
-
"configuration": {
|
|
526
|
-
"endian": "little"
|
|
527
|
-
}
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"name": "zstd",
|
|
531
|
-
"configuration": {
|
|
532
|
-
"level": 0,
|
|
533
|
-
"checksum": false
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
],
|
|
537
|
-
"attributes": {
|
|
538
|
-
"long_name": "western boundary small phytoplankton carbon",
|
|
539
|
-
"units": "mmol/m^3",
|
|
540
|
-
"coordinates": "abs_time month",
|
|
541
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
542
|
-
},
|
|
543
|
-
"dimension_names": [
|
|
544
|
-
"bry_time",
|
|
545
|
-
"s_rho",
|
|
546
|
-
"eta_rho"
|
|
547
|
-
],
|
|
548
|
-
"zarr_format": 3,
|
|
549
|
-
"node_type": "array",
|
|
550
|
-
"storage_transformers": []
|
|
551
|
-
},
|
|
552
|
-
"Lig_east": {
|
|
553
|
-
"shape": [
|
|
554
|
-
12,
|
|
555
|
-
3,
|
|
556
|
-
4
|
|
557
|
-
],
|
|
558
|
-
"data_type": "float32",
|
|
559
|
-
"chunk_grid": {
|
|
560
|
-
"name": "regular",
|
|
561
|
-
"configuration": {
|
|
562
|
-
"chunk_shape": [
|
|
563
|
-
12,
|
|
564
|
-
3,
|
|
565
|
-
4
|
|
566
|
-
]
|
|
567
|
-
}
|
|
568
|
-
},
|
|
569
|
-
"chunk_key_encoding": {
|
|
570
|
-
"name": "default",
|
|
571
|
-
"configuration": {
|
|
572
|
-
"separator": "/"
|
|
573
|
-
}
|
|
574
|
-
},
|
|
575
|
-
"fill_value": 0.0,
|
|
576
|
-
"codecs": [
|
|
577
|
-
{
|
|
578
|
-
"name": "bytes",
|
|
579
|
-
"configuration": {
|
|
580
|
-
"endian": "little"
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"name": "zstd",
|
|
585
|
-
"configuration": {
|
|
586
|
-
"level": 0,
|
|
587
|
-
"checksum": false
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
],
|
|
591
|
-
"attributes": {
|
|
592
|
-
"long_name": "eastern boundary iron binding ligand",
|
|
593
|
-
"units": "mmol/m^3",
|
|
594
|
-
"coordinates": "abs_time month",
|
|
595
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
596
|
-
},
|
|
597
|
-
"dimension_names": [
|
|
598
|
-
"bry_time",
|
|
599
|
-
"s_rho",
|
|
600
|
-
"eta_rho"
|
|
601
|
-
],
|
|
602
|
-
"zarr_format": 3,
|
|
603
|
-
"node_type": "array",
|
|
604
|
-
"storage_transformers": []
|
|
605
|
-
},
|
|
606
|
-
"zooC_north": {
|
|
607
|
-
"shape": [
|
|
608
|
-
12,
|
|
609
|
-
3,
|
|
610
|
-
4
|
|
611
|
-
],
|
|
612
|
-
"data_type": "float32",
|
|
613
|
-
"chunk_grid": {
|
|
614
|
-
"name": "regular",
|
|
615
|
-
"configuration": {
|
|
616
|
-
"chunk_shape": [
|
|
617
|
-
12,
|
|
618
|
-
3,
|
|
619
|
-
4
|
|
620
|
-
]
|
|
621
|
-
}
|
|
622
|
-
},
|
|
623
|
-
"chunk_key_encoding": {
|
|
624
|
-
"name": "default",
|
|
625
|
-
"configuration": {
|
|
626
|
-
"separator": "/"
|
|
627
|
-
}
|
|
628
|
-
},
|
|
629
|
-
"fill_value": 0.0,
|
|
630
|
-
"codecs": [
|
|
631
|
-
{
|
|
632
|
-
"name": "bytes",
|
|
633
|
-
"configuration": {
|
|
634
|
-
"endian": "little"
|
|
635
|
-
}
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"name": "zstd",
|
|
639
|
-
"configuration": {
|
|
640
|
-
"level": 0,
|
|
641
|
-
"checksum": false
|
|
642
|
-
}
|
|
643
|
-
}
|
|
644
|
-
],
|
|
645
|
-
"attributes": {
|
|
646
|
-
"long_name": "northern boundary zooplankton carbon",
|
|
647
|
-
"units": "mmol/m^3",
|
|
648
|
-
"coordinates": "abs_time month",
|
|
649
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
650
|
-
},
|
|
651
|
-
"dimension_names": [
|
|
652
|
-
"bry_time",
|
|
653
|
-
"s_rho",
|
|
654
|
-
"xi_rho"
|
|
655
|
-
],
|
|
656
|
-
"zarr_format": 3,
|
|
657
|
-
"node_type": "array",
|
|
658
|
-
"storage_transformers": []
|
|
659
|
-
},
|
|
660
|
-
"ALK_south": {
|
|
661
|
-
"shape": [
|
|
662
|
-
12,
|
|
663
|
-
3,
|
|
664
|
-
4
|
|
665
|
-
],
|
|
666
|
-
"data_type": "float32",
|
|
667
|
-
"chunk_grid": {
|
|
668
|
-
"name": "regular",
|
|
669
|
-
"configuration": {
|
|
670
|
-
"chunk_shape": [
|
|
671
|
-
12,
|
|
672
|
-
3,
|
|
673
|
-
4
|
|
674
|
-
]
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
"chunk_key_encoding": {
|
|
678
|
-
"name": "default",
|
|
679
|
-
"configuration": {
|
|
680
|
-
"separator": "/"
|
|
681
|
-
}
|
|
682
|
-
},
|
|
683
|
-
"fill_value": 0.0,
|
|
684
|
-
"codecs": [
|
|
685
|
-
{
|
|
686
|
-
"name": "bytes",
|
|
687
|
-
"configuration": {
|
|
688
|
-
"endian": "little"
|
|
689
|
-
}
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"name": "zstd",
|
|
693
|
-
"configuration": {
|
|
694
|
-
"level": 0,
|
|
695
|
-
"checksum": false
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"attributes": {
|
|
700
|
-
"long_name": "southern boundary alkalinity",
|
|
701
|
-
"units": "meq/m^3",
|
|
702
|
-
"coordinates": "abs_time month",
|
|
703
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
704
|
-
},
|
|
705
|
-
"dimension_names": [
|
|
706
|
-
"bry_time",
|
|
707
|
-
"s_rho",
|
|
708
|
-
"xi_rho"
|
|
709
|
-
],
|
|
710
|
-
"zarr_format": 3,
|
|
711
|
-
"node_type": "array",
|
|
712
|
-
"storage_transformers": []
|
|
713
|
-
},
|
|
714
|
-
"diazChl_east": {
|
|
715
|
-
"shape": [
|
|
716
|
-
12,
|
|
717
|
-
3,
|
|
718
|
-
4
|
|
719
|
-
],
|
|
720
|
-
"data_type": "float32",
|
|
721
|
-
"chunk_grid": {
|
|
722
|
-
"name": "regular",
|
|
723
|
-
"configuration": {
|
|
724
|
-
"chunk_shape": [
|
|
725
|
-
12,
|
|
726
|
-
3,
|
|
727
|
-
4
|
|
728
|
-
]
|
|
729
|
-
}
|
|
730
|
-
},
|
|
731
|
-
"chunk_key_encoding": {
|
|
732
|
-
"name": "default",
|
|
733
|
-
"configuration": {
|
|
734
|
-
"separator": "/"
|
|
735
|
-
}
|
|
736
|
-
},
|
|
737
|
-
"fill_value": 0.0,
|
|
738
|
-
"codecs": [
|
|
739
|
-
{
|
|
740
|
-
"name": "bytes",
|
|
741
|
-
"configuration": {
|
|
742
|
-
"endian": "little"
|
|
743
|
-
}
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
"name": "zstd",
|
|
747
|
-
"configuration": {
|
|
748
|
-
"level": 0,
|
|
749
|
-
"checksum": false
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
],
|
|
753
|
-
"attributes": {
|
|
754
|
-
"long_name": "eastern boundary diazotroph chloropyll",
|
|
755
|
-
"units": "mg/m^3",
|
|
756
|
-
"coordinates": "abs_time month",
|
|
757
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
758
|
-
},
|
|
759
|
-
"dimension_names": [
|
|
760
|
-
"bry_time",
|
|
761
|
-
"s_rho",
|
|
762
|
-
"eta_rho"
|
|
763
|
-
],
|
|
764
|
-
"zarr_format": 3,
|
|
765
|
-
"node_type": "array",
|
|
766
|
-
"storage_transformers": []
|
|
767
|
-
},
|
|
768
|
-
"diazP_south": {
|
|
769
|
-
"shape": [
|
|
770
|
-
12,
|
|
771
|
-
3,
|
|
772
|
-
4
|
|
773
|
-
],
|
|
774
|
-
"data_type": "float32",
|
|
775
|
-
"chunk_grid": {
|
|
776
|
-
"name": "regular",
|
|
777
|
-
"configuration": {
|
|
778
|
-
"chunk_shape": [
|
|
779
|
-
12,
|
|
780
|
-
3,
|
|
781
|
-
4
|
|
782
|
-
]
|
|
783
|
-
}
|
|
784
|
-
},
|
|
785
|
-
"chunk_key_encoding": {
|
|
786
|
-
"name": "default",
|
|
787
|
-
"configuration": {
|
|
788
|
-
"separator": "/"
|
|
789
|
-
}
|
|
790
|
-
},
|
|
791
|
-
"fill_value": 0.0,
|
|
792
|
-
"codecs": [
|
|
793
|
-
{
|
|
794
|
-
"name": "bytes",
|
|
795
|
-
"configuration": {
|
|
796
|
-
"endian": "little"
|
|
797
|
-
}
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"name": "zstd",
|
|
801
|
-
"configuration": {
|
|
802
|
-
"level": 0,
|
|
803
|
-
"checksum": false
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
],
|
|
807
|
-
"attributes": {
|
|
808
|
-
"long_name": "southern boundary diazotroph phosphorus",
|
|
809
|
-
"units": "mmol/m^3",
|
|
810
|
-
"coordinates": "abs_time month",
|
|
811
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
812
|
-
},
|
|
813
|
-
"dimension_names": [
|
|
814
|
-
"bry_time",
|
|
815
|
-
"s_rho",
|
|
816
|
-
"xi_rho"
|
|
817
|
-
],
|
|
818
|
-
"zarr_format": 3,
|
|
819
|
-
"node_type": "array",
|
|
820
|
-
"storage_transformers": []
|
|
821
|
-
},
|
|
822
|
-
"diazC_west": {
|
|
823
|
-
"shape": [
|
|
824
|
-
12,
|
|
825
|
-
3,
|
|
826
|
-
4
|
|
827
|
-
],
|
|
828
|
-
"data_type": "float32",
|
|
829
|
-
"chunk_grid": {
|
|
830
|
-
"name": "regular",
|
|
831
|
-
"configuration": {
|
|
832
|
-
"chunk_shape": [
|
|
833
|
-
12,
|
|
834
|
-
3,
|
|
835
|
-
4
|
|
836
|
-
]
|
|
837
|
-
}
|
|
838
|
-
},
|
|
839
|
-
"chunk_key_encoding": {
|
|
840
|
-
"name": "default",
|
|
841
|
-
"configuration": {
|
|
842
|
-
"separator": "/"
|
|
843
|
-
}
|
|
844
|
-
},
|
|
845
|
-
"fill_value": 0.0,
|
|
846
|
-
"codecs": [
|
|
847
|
-
{
|
|
848
|
-
"name": "bytes",
|
|
849
|
-
"configuration": {
|
|
850
|
-
"endian": "little"
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"name": "zstd",
|
|
855
|
-
"configuration": {
|
|
856
|
-
"level": 0,
|
|
857
|
-
"checksum": false
|
|
858
|
-
}
|
|
859
|
-
}
|
|
860
|
-
],
|
|
861
|
-
"attributes": {
|
|
862
|
-
"long_name": "western boundary diazotroph carbon",
|
|
863
|
-
"units": "mmol/m^3",
|
|
864
|
-
"coordinates": "abs_time month",
|
|
865
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
866
|
-
},
|
|
867
|
-
"dimension_names": [
|
|
868
|
-
"bry_time",
|
|
869
|
-
"s_rho",
|
|
870
|
-
"eta_rho"
|
|
871
|
-
],
|
|
872
|
-
"zarr_format": 3,
|
|
873
|
-
"node_type": "array",
|
|
874
|
-
"storage_transformers": []
|
|
875
|
-
},
|
|
876
|
-
"diazP_east": {
|
|
877
|
-
"shape": [
|
|
878
|
-
12,
|
|
879
|
-
3,
|
|
880
|
-
4
|
|
881
|
-
],
|
|
882
|
-
"data_type": "float32",
|
|
883
|
-
"chunk_grid": {
|
|
884
|
-
"name": "regular",
|
|
885
|
-
"configuration": {
|
|
886
|
-
"chunk_shape": [
|
|
887
|
-
12,
|
|
888
|
-
3,
|
|
889
|
-
4
|
|
890
|
-
]
|
|
891
|
-
}
|
|
892
|
-
},
|
|
893
|
-
"chunk_key_encoding": {
|
|
894
|
-
"name": "default",
|
|
895
|
-
"configuration": {
|
|
896
|
-
"separator": "/"
|
|
897
|
-
}
|
|
898
|
-
},
|
|
899
|
-
"fill_value": 0.0,
|
|
900
|
-
"codecs": [
|
|
901
|
-
{
|
|
902
|
-
"name": "bytes",
|
|
903
|
-
"configuration": {
|
|
904
|
-
"endian": "little"
|
|
905
|
-
}
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"name": "zstd",
|
|
909
|
-
"configuration": {
|
|
910
|
-
"level": 0,
|
|
911
|
-
"checksum": false
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
|
-
],
|
|
915
|
-
"attributes": {
|
|
916
|
-
"long_name": "eastern boundary diazotroph phosphorus",
|
|
917
|
-
"units": "mmol/m^3",
|
|
918
|
-
"coordinates": "abs_time month",
|
|
919
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
920
|
-
},
|
|
921
|
-
"dimension_names": [
|
|
922
|
-
"bry_time",
|
|
923
|
-
"s_rho",
|
|
924
|
-
"eta_rho"
|
|
925
|
-
],
|
|
926
|
-
"zarr_format": 3,
|
|
927
|
-
"node_type": "array",
|
|
928
|
-
"storage_transformers": []
|
|
929
|
-
},
|
|
930
|
-
"spC_south": {
|
|
931
|
-
"shape": [
|
|
932
|
-
12,
|
|
933
|
-
3,
|
|
934
|
-
4
|
|
935
|
-
],
|
|
936
|
-
"data_type": "float32",
|
|
937
|
-
"chunk_grid": {
|
|
938
|
-
"name": "regular",
|
|
939
|
-
"configuration": {
|
|
940
|
-
"chunk_shape": [
|
|
941
|
-
12,
|
|
942
|
-
3,
|
|
943
|
-
4
|
|
944
|
-
]
|
|
945
|
-
}
|
|
946
|
-
},
|
|
947
|
-
"chunk_key_encoding": {
|
|
948
|
-
"name": "default",
|
|
949
|
-
"configuration": {
|
|
950
|
-
"separator": "/"
|
|
951
|
-
}
|
|
952
|
-
},
|
|
953
|
-
"fill_value": 0.0,
|
|
954
|
-
"codecs": [
|
|
955
|
-
{
|
|
956
|
-
"name": "bytes",
|
|
957
|
-
"configuration": {
|
|
958
|
-
"endian": "little"
|
|
959
|
-
}
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"name": "zstd",
|
|
963
|
-
"configuration": {
|
|
964
|
-
"level": 0,
|
|
965
|
-
"checksum": false
|
|
966
|
-
}
|
|
967
|
-
}
|
|
968
|
-
],
|
|
969
|
-
"attributes": {
|
|
970
|
-
"long_name": "southern boundary small phytoplankton carbon",
|
|
971
|
-
"units": "mmol/m^3",
|
|
972
|
-
"coordinates": "abs_time month",
|
|
973
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
974
|
-
},
|
|
975
|
-
"dimension_names": [
|
|
976
|
-
"bry_time",
|
|
977
|
-
"s_rho",
|
|
978
|
-
"xi_rho"
|
|
979
|
-
],
|
|
980
|
-
"zarr_format": 3,
|
|
981
|
-
"node_type": "array",
|
|
982
|
-
"storage_transformers": []
|
|
983
|
-
},
|
|
984
|
-
"DON_south": {
|
|
985
|
-
"shape": [
|
|
986
|
-
12,
|
|
987
|
-
3,
|
|
988
|
-
4
|
|
989
|
-
],
|
|
990
|
-
"data_type": "float32",
|
|
991
|
-
"chunk_grid": {
|
|
992
|
-
"name": "regular",
|
|
993
|
-
"configuration": {
|
|
994
|
-
"chunk_shape": [
|
|
995
|
-
12,
|
|
996
|
-
3,
|
|
997
|
-
4
|
|
998
|
-
]
|
|
999
|
-
}
|
|
1000
|
-
},
|
|
1001
|
-
"chunk_key_encoding": {
|
|
1002
|
-
"name": "default",
|
|
1003
|
-
"configuration": {
|
|
1004
|
-
"separator": "/"
|
|
1005
|
-
}
|
|
1006
|
-
},
|
|
1007
|
-
"fill_value": 0.0,
|
|
1008
|
-
"codecs": [
|
|
1009
|
-
{
|
|
1010
|
-
"name": "bytes",
|
|
1011
|
-
"configuration": {
|
|
1012
|
-
"endian": "little"
|
|
1013
|
-
}
|
|
1014
|
-
},
|
|
1015
|
-
{
|
|
1016
|
-
"name": "zstd",
|
|
1017
|
-
"configuration": {
|
|
1018
|
-
"level": 0,
|
|
1019
|
-
"checksum": false
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
],
|
|
1023
|
-
"attributes": {
|
|
1024
|
-
"long_name": "southern boundary dissolved organic nitrogen",
|
|
1025
|
-
"units": "mmol/m^3",
|
|
1026
|
-
"coordinates": "abs_time month",
|
|
1027
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1028
|
-
},
|
|
1029
|
-
"dimension_names": [
|
|
1030
|
-
"bry_time",
|
|
1031
|
-
"s_rho",
|
|
1032
|
-
"xi_rho"
|
|
1033
|
-
],
|
|
1034
|
-
"zarr_format": 3,
|
|
1035
|
-
"node_type": "array",
|
|
1036
|
-
"storage_transformers": []
|
|
1037
|
-
},
|
|
1038
|
-
"SiO3_south": {
|
|
1039
|
-
"shape": [
|
|
1040
|
-
12,
|
|
1041
|
-
3,
|
|
1042
|
-
4
|
|
1043
|
-
],
|
|
1044
|
-
"data_type": "float32",
|
|
1045
|
-
"chunk_grid": {
|
|
1046
|
-
"name": "regular",
|
|
1047
|
-
"configuration": {
|
|
1048
|
-
"chunk_shape": [
|
|
1049
|
-
12,
|
|
1050
|
-
3,
|
|
1051
|
-
4
|
|
1052
|
-
]
|
|
1053
|
-
}
|
|
1054
|
-
},
|
|
1055
|
-
"chunk_key_encoding": {
|
|
1056
|
-
"name": "default",
|
|
1057
|
-
"configuration": {
|
|
1058
|
-
"separator": "/"
|
|
1059
|
-
}
|
|
1060
|
-
},
|
|
1061
|
-
"fill_value": 0.0,
|
|
1062
|
-
"codecs": [
|
|
1063
|
-
{
|
|
1064
|
-
"name": "bytes",
|
|
1065
|
-
"configuration": {
|
|
1066
|
-
"endian": "little"
|
|
1067
|
-
}
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
"name": "zstd",
|
|
1071
|
-
"configuration": {
|
|
1072
|
-
"level": 0,
|
|
1073
|
-
"checksum": false
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
],
|
|
1077
|
-
"attributes": {
|
|
1078
|
-
"long_name": "southern boundary dissolved inorganic silicate",
|
|
1079
|
-
"units": "mmol/m^3",
|
|
1080
|
-
"coordinates": "abs_time month",
|
|
1081
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1082
|
-
},
|
|
1083
|
-
"dimension_names": [
|
|
1084
|
-
"bry_time",
|
|
1085
|
-
"s_rho",
|
|
1086
|
-
"xi_rho"
|
|
1087
|
-
],
|
|
1088
|
-
"zarr_format": 3,
|
|
1089
|
-
"node_type": "array",
|
|
1090
|
-
"storage_transformers": []
|
|
1091
|
-
},
|
|
1092
|
-
"spFe_west": {
|
|
1093
|
-
"shape": [
|
|
1094
|
-
12,
|
|
1095
|
-
3,
|
|
1096
|
-
4
|
|
1097
|
-
],
|
|
1098
|
-
"data_type": "float32",
|
|
1099
|
-
"chunk_grid": {
|
|
1100
|
-
"name": "regular",
|
|
1101
|
-
"configuration": {
|
|
1102
|
-
"chunk_shape": [
|
|
1103
|
-
12,
|
|
1104
|
-
3,
|
|
1105
|
-
4
|
|
1106
|
-
]
|
|
1107
|
-
}
|
|
1108
|
-
},
|
|
1109
|
-
"chunk_key_encoding": {
|
|
1110
|
-
"name": "default",
|
|
1111
|
-
"configuration": {
|
|
1112
|
-
"separator": "/"
|
|
1113
|
-
}
|
|
1114
|
-
},
|
|
1115
|
-
"fill_value": 0.0,
|
|
1116
|
-
"codecs": [
|
|
1117
|
-
{
|
|
1118
|
-
"name": "bytes",
|
|
1119
|
-
"configuration": {
|
|
1120
|
-
"endian": "little"
|
|
1121
|
-
}
|
|
1122
|
-
},
|
|
1123
|
-
{
|
|
1124
|
-
"name": "zstd",
|
|
1125
|
-
"configuration": {
|
|
1126
|
-
"level": 0,
|
|
1127
|
-
"checksum": false
|
|
1128
|
-
}
|
|
1129
|
-
}
|
|
1130
|
-
],
|
|
1131
|
-
"attributes": {
|
|
1132
|
-
"long_name": "western boundary small phytoplankton iron",
|
|
1133
|
-
"units": "mmol/m^3",
|
|
1134
|
-
"coordinates": "abs_time month",
|
|
1135
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1136
|
-
},
|
|
1137
|
-
"dimension_names": [
|
|
1138
|
-
"bry_time",
|
|
1139
|
-
"s_rho",
|
|
1140
|
-
"eta_rho"
|
|
1141
|
-
],
|
|
1142
|
-
"zarr_format": 3,
|
|
1143
|
-
"node_type": "array",
|
|
1144
|
-
"storage_transformers": []
|
|
1145
|
-
},
|
|
1146
|
-
"diatP_south": {
|
|
1147
|
-
"shape": [
|
|
1148
|
-
12,
|
|
1149
|
-
3,
|
|
1150
|
-
4
|
|
1151
|
-
],
|
|
1152
|
-
"data_type": "float32",
|
|
1153
|
-
"chunk_grid": {
|
|
1154
|
-
"name": "regular",
|
|
1155
|
-
"configuration": {
|
|
1156
|
-
"chunk_shape": [
|
|
1157
|
-
12,
|
|
1158
|
-
3,
|
|
1159
|
-
4
|
|
1160
|
-
]
|
|
1161
|
-
}
|
|
1162
|
-
},
|
|
1163
|
-
"chunk_key_encoding": {
|
|
1164
|
-
"name": "default",
|
|
1165
|
-
"configuration": {
|
|
1166
|
-
"separator": "/"
|
|
1167
|
-
}
|
|
1168
|
-
},
|
|
1169
|
-
"fill_value": 0.0,
|
|
1170
|
-
"codecs": [
|
|
1171
|
-
{
|
|
1172
|
-
"name": "bytes",
|
|
1173
|
-
"configuration": {
|
|
1174
|
-
"endian": "little"
|
|
1175
|
-
}
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"name": "zstd",
|
|
1179
|
-
"configuration": {
|
|
1180
|
-
"level": 0,
|
|
1181
|
-
"checksum": false
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
],
|
|
1185
|
-
"attributes": {
|
|
1186
|
-
"long_name": "southern boundary diatom phosphorus",
|
|
1187
|
-
"units": "mmol/m^3",
|
|
1188
|
-
"coordinates": "abs_time month",
|
|
1189
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1190
|
-
},
|
|
1191
|
-
"dimension_names": [
|
|
1192
|
-
"bry_time",
|
|
1193
|
-
"s_rho",
|
|
1194
|
-
"xi_rho"
|
|
1195
|
-
],
|
|
1196
|
-
"zarr_format": 3,
|
|
1197
|
-
"node_type": "array",
|
|
1198
|
-
"storage_transformers": []
|
|
1199
|
-
},
|
|
1200
|
-
"spChl_west": {
|
|
1201
|
-
"shape": [
|
|
1202
|
-
12,
|
|
1203
|
-
3,
|
|
1204
|
-
4
|
|
1205
|
-
],
|
|
1206
|
-
"data_type": "float32",
|
|
1207
|
-
"chunk_grid": {
|
|
1208
|
-
"name": "regular",
|
|
1209
|
-
"configuration": {
|
|
1210
|
-
"chunk_shape": [
|
|
1211
|
-
12,
|
|
1212
|
-
3,
|
|
1213
|
-
4
|
|
1214
|
-
]
|
|
1215
|
-
}
|
|
1216
|
-
},
|
|
1217
|
-
"chunk_key_encoding": {
|
|
1218
|
-
"name": "default",
|
|
1219
|
-
"configuration": {
|
|
1220
|
-
"separator": "/"
|
|
1221
|
-
}
|
|
1222
|
-
},
|
|
1223
|
-
"fill_value": 0.0,
|
|
1224
|
-
"codecs": [
|
|
1225
|
-
{
|
|
1226
|
-
"name": "bytes",
|
|
1227
|
-
"configuration": {
|
|
1228
|
-
"endian": "little"
|
|
1229
|
-
}
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
"name": "zstd",
|
|
1233
|
-
"configuration": {
|
|
1234
|
-
"level": 0,
|
|
1235
|
-
"checksum": false
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
],
|
|
1239
|
-
"attributes": {
|
|
1240
|
-
"long_name": "western boundary small phytoplankton chlorophyll",
|
|
1241
|
-
"units": "mg/m^3",
|
|
1242
|
-
"coordinates": "abs_time month",
|
|
1243
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1244
|
-
},
|
|
1245
|
-
"dimension_names": [
|
|
1246
|
-
"bry_time",
|
|
1247
|
-
"s_rho",
|
|
1248
|
-
"eta_rho"
|
|
1249
|
-
],
|
|
1250
|
-
"zarr_format": 3,
|
|
1251
|
-
"node_type": "array",
|
|
1252
|
-
"storage_transformers": []
|
|
1253
|
-
},
|
|
1254
|
-
"spCaCO3_east": {
|
|
1255
|
-
"shape": [
|
|
1256
|
-
12,
|
|
1257
|
-
3,
|
|
1258
|
-
4
|
|
1259
|
-
],
|
|
1260
|
-
"data_type": "float32",
|
|
1261
|
-
"chunk_grid": {
|
|
1262
|
-
"name": "regular",
|
|
1263
|
-
"configuration": {
|
|
1264
|
-
"chunk_shape": [
|
|
1265
|
-
12,
|
|
1266
|
-
3,
|
|
1267
|
-
4
|
|
1268
|
-
]
|
|
1269
|
-
}
|
|
1270
|
-
},
|
|
1271
|
-
"chunk_key_encoding": {
|
|
1272
|
-
"name": "default",
|
|
1273
|
-
"configuration": {
|
|
1274
|
-
"separator": "/"
|
|
1275
|
-
}
|
|
1276
|
-
},
|
|
1277
|
-
"fill_value": 0.0,
|
|
1278
|
-
"codecs": [
|
|
1279
|
-
{
|
|
1280
|
-
"name": "bytes",
|
|
1281
|
-
"configuration": {
|
|
1282
|
-
"endian": "little"
|
|
1283
|
-
}
|
|
1284
|
-
},
|
|
1285
|
-
{
|
|
1286
|
-
"name": "zstd",
|
|
1287
|
-
"configuration": {
|
|
1288
|
-
"level": 0,
|
|
1289
|
-
"checksum": false
|
|
1290
|
-
}
|
|
1291
|
-
}
|
|
1292
|
-
],
|
|
1293
|
-
"attributes": {
|
|
1294
|
-
"long_name": "eastern boundary small phytoplankton CaCO3",
|
|
1295
|
-
"units": "mmol/m^3",
|
|
1296
|
-
"coordinates": "abs_time month",
|
|
1297
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1298
|
-
},
|
|
1299
|
-
"dimension_names": [
|
|
1300
|
-
"bry_time",
|
|
1301
|
-
"s_rho",
|
|
1302
|
-
"eta_rho"
|
|
1303
|
-
],
|
|
1304
|
-
"zarr_format": 3,
|
|
1305
|
-
"node_type": "array",
|
|
1306
|
-
"storage_transformers": []
|
|
1307
|
-
},
|
|
1308
|
-
"DOPr_north": {
|
|
1309
|
-
"shape": [
|
|
1310
|
-
12,
|
|
1311
|
-
3,
|
|
1312
|
-
4
|
|
1313
|
-
],
|
|
1314
|
-
"data_type": "float32",
|
|
1315
|
-
"chunk_grid": {
|
|
1316
|
-
"name": "regular",
|
|
1317
|
-
"configuration": {
|
|
1318
|
-
"chunk_shape": [
|
|
1319
|
-
12,
|
|
1320
|
-
3,
|
|
1321
|
-
4
|
|
1322
|
-
]
|
|
1323
|
-
}
|
|
1324
|
-
},
|
|
1325
|
-
"chunk_key_encoding": {
|
|
1326
|
-
"name": "default",
|
|
1327
|
-
"configuration": {
|
|
1328
|
-
"separator": "/"
|
|
1329
|
-
}
|
|
1330
|
-
},
|
|
1331
|
-
"fill_value": 0.0,
|
|
1332
|
-
"codecs": [
|
|
1333
|
-
{
|
|
1334
|
-
"name": "bytes",
|
|
1335
|
-
"configuration": {
|
|
1336
|
-
"endian": "little"
|
|
1337
|
-
}
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"name": "zstd",
|
|
1341
|
-
"configuration": {
|
|
1342
|
-
"level": 0,
|
|
1343
|
-
"checksum": false
|
|
1344
|
-
}
|
|
1345
|
-
}
|
|
1346
|
-
],
|
|
1347
|
-
"attributes": {
|
|
1348
|
-
"long_name": "northern boundary refractory dissolved organic phosphorus",
|
|
1349
|
-
"units": "mmol/m^3",
|
|
1350
|
-
"coordinates": "abs_time month",
|
|
1351
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1352
|
-
},
|
|
1353
|
-
"dimension_names": [
|
|
1354
|
-
"bry_time",
|
|
1355
|
-
"s_rho",
|
|
1356
|
-
"xi_rho"
|
|
1357
|
-
],
|
|
1358
|
-
"zarr_format": 3,
|
|
1359
|
-
"node_type": "array",
|
|
1360
|
-
"storage_transformers": []
|
|
1361
|
-
},
|
|
1362
|
-
"spCaCO3_north": {
|
|
1363
|
-
"shape": [
|
|
1364
|
-
12,
|
|
1365
|
-
3,
|
|
1366
|
-
4
|
|
1367
|
-
],
|
|
1368
|
-
"data_type": "float32",
|
|
1369
|
-
"chunk_grid": {
|
|
1370
|
-
"name": "regular",
|
|
1371
|
-
"configuration": {
|
|
1372
|
-
"chunk_shape": [
|
|
1373
|
-
12,
|
|
1374
|
-
3,
|
|
1375
|
-
4
|
|
1376
|
-
]
|
|
1377
|
-
}
|
|
1378
|
-
},
|
|
1379
|
-
"chunk_key_encoding": {
|
|
1380
|
-
"name": "default",
|
|
1381
|
-
"configuration": {
|
|
1382
|
-
"separator": "/"
|
|
1383
|
-
}
|
|
1384
|
-
},
|
|
1385
|
-
"fill_value": 0.0,
|
|
1386
|
-
"codecs": [
|
|
1387
|
-
{
|
|
1388
|
-
"name": "bytes",
|
|
1389
|
-
"configuration": {
|
|
1390
|
-
"endian": "little"
|
|
1391
|
-
}
|
|
1392
|
-
},
|
|
1393
|
-
{
|
|
1394
|
-
"name": "zstd",
|
|
1395
|
-
"configuration": {
|
|
1396
|
-
"level": 0,
|
|
1397
|
-
"checksum": false
|
|
1398
|
-
}
|
|
1399
|
-
}
|
|
1400
|
-
],
|
|
1401
|
-
"attributes": {
|
|
1402
|
-
"long_name": "northern boundary small phytoplankton CaCO3",
|
|
1403
|
-
"units": "mmol/m^3",
|
|
1404
|
-
"coordinates": "abs_time month",
|
|
1405
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1406
|
-
},
|
|
1407
|
-
"dimension_names": [
|
|
1408
|
-
"bry_time",
|
|
1409
|
-
"s_rho",
|
|
1410
|
-
"xi_rho"
|
|
1411
|
-
],
|
|
1412
|
-
"zarr_format": 3,
|
|
1413
|
-
"node_type": "array",
|
|
1414
|
-
"storage_transformers": []
|
|
1415
|
-
},
|
|
1416
|
-
"ALK_ALT_CO2_north": {
|
|
1417
|
-
"shape": [
|
|
1418
|
-
12,
|
|
1419
|
-
3,
|
|
1420
|
-
4
|
|
1421
|
-
],
|
|
1422
|
-
"data_type": "float32",
|
|
1423
|
-
"chunk_grid": {
|
|
1424
|
-
"name": "regular",
|
|
1425
|
-
"configuration": {
|
|
1426
|
-
"chunk_shape": [
|
|
1427
|
-
12,
|
|
1428
|
-
3,
|
|
1429
|
-
4
|
|
1430
|
-
]
|
|
1431
|
-
}
|
|
1432
|
-
},
|
|
1433
|
-
"chunk_key_encoding": {
|
|
1434
|
-
"name": "default",
|
|
1435
|
-
"configuration": {
|
|
1436
|
-
"separator": "/"
|
|
1437
|
-
}
|
|
1438
|
-
},
|
|
1439
|
-
"fill_value": 0.0,
|
|
1440
|
-
"codecs": [
|
|
1441
|
-
{
|
|
1442
|
-
"name": "bytes",
|
|
1443
|
-
"configuration": {
|
|
1444
|
-
"endian": "little"
|
|
1445
|
-
}
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
"name": "zstd",
|
|
1449
|
-
"configuration": {
|
|
1450
|
-
"level": 0,
|
|
1451
|
-
"checksum": false
|
|
1452
|
-
}
|
|
1453
|
-
}
|
|
1454
|
-
],
|
|
1455
|
-
"attributes": {
|
|
1456
|
-
"long_name": "northern boundary alkalinity, alternative CO2",
|
|
1457
|
-
"units": "meq/m^3",
|
|
1458
|
-
"coordinates": "abs_time month",
|
|
1459
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1460
|
-
},
|
|
1461
|
-
"dimension_names": [
|
|
1462
|
-
"bry_time",
|
|
1463
|
-
"s_rho",
|
|
1464
|
-
"xi_rho"
|
|
1465
|
-
],
|
|
1466
|
-
"zarr_format": 3,
|
|
1467
|
-
"node_type": "array",
|
|
1468
|
-
"storage_transformers": []
|
|
1469
|
-
},
|
|
1470
|
-
"spFe_north": {
|
|
1471
|
-
"shape": [
|
|
1472
|
-
12,
|
|
1473
|
-
3,
|
|
1474
|
-
4
|
|
1475
|
-
],
|
|
1476
|
-
"data_type": "float32",
|
|
1477
|
-
"chunk_grid": {
|
|
1478
|
-
"name": "regular",
|
|
1479
|
-
"configuration": {
|
|
1480
|
-
"chunk_shape": [
|
|
1481
|
-
12,
|
|
1482
|
-
3,
|
|
1483
|
-
4
|
|
1484
|
-
]
|
|
1485
|
-
}
|
|
1486
|
-
},
|
|
1487
|
-
"chunk_key_encoding": {
|
|
1488
|
-
"name": "default",
|
|
1489
|
-
"configuration": {
|
|
1490
|
-
"separator": "/"
|
|
1491
|
-
}
|
|
1492
|
-
},
|
|
1493
|
-
"fill_value": 0.0,
|
|
1494
|
-
"codecs": [
|
|
1495
|
-
{
|
|
1496
|
-
"name": "bytes",
|
|
1497
|
-
"configuration": {
|
|
1498
|
-
"endian": "little"
|
|
1499
|
-
}
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
"name": "zstd",
|
|
1503
|
-
"configuration": {
|
|
1504
|
-
"level": 0,
|
|
1505
|
-
"checksum": false
|
|
1506
|
-
}
|
|
1507
|
-
}
|
|
1508
|
-
],
|
|
1509
|
-
"attributes": {
|
|
1510
|
-
"long_name": "northern boundary small phytoplankton iron",
|
|
1511
|
-
"units": "mmol/m^3",
|
|
1512
|
-
"coordinates": "abs_time month",
|
|
1513
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1514
|
-
},
|
|
1515
|
-
"dimension_names": [
|
|
1516
|
-
"bry_time",
|
|
1517
|
-
"s_rho",
|
|
1518
|
-
"xi_rho"
|
|
1519
|
-
],
|
|
1520
|
-
"zarr_format": 3,
|
|
1521
|
-
"node_type": "array",
|
|
1522
|
-
"storage_transformers": []
|
|
1523
|
-
},
|
|
1524
|
-
"DOCr_west": {
|
|
1525
|
-
"shape": [
|
|
1526
|
-
12,
|
|
1527
|
-
3,
|
|
1528
|
-
4
|
|
1529
|
-
],
|
|
1530
|
-
"data_type": "float32",
|
|
1531
|
-
"chunk_grid": {
|
|
1532
|
-
"name": "regular",
|
|
1533
|
-
"configuration": {
|
|
1534
|
-
"chunk_shape": [
|
|
1535
|
-
12,
|
|
1536
|
-
3,
|
|
1537
|
-
4
|
|
1538
|
-
]
|
|
1539
|
-
}
|
|
1540
|
-
},
|
|
1541
|
-
"chunk_key_encoding": {
|
|
1542
|
-
"name": "default",
|
|
1543
|
-
"configuration": {
|
|
1544
|
-
"separator": "/"
|
|
1545
|
-
}
|
|
1546
|
-
},
|
|
1547
|
-
"fill_value": 0.0,
|
|
1548
|
-
"codecs": [
|
|
1549
|
-
{
|
|
1550
|
-
"name": "bytes",
|
|
1551
|
-
"configuration": {
|
|
1552
|
-
"endian": "little"
|
|
1553
|
-
}
|
|
1554
|
-
},
|
|
1555
|
-
{
|
|
1556
|
-
"name": "zstd",
|
|
1557
|
-
"configuration": {
|
|
1558
|
-
"level": 0,
|
|
1559
|
-
"checksum": false
|
|
1560
|
-
}
|
|
1561
|
-
}
|
|
1562
|
-
],
|
|
1563
|
-
"attributes": {
|
|
1564
|
-
"long_name": "western boundary refractory dissolved organic carbon",
|
|
1565
|
-
"units": "mmol/m^3",
|
|
1566
|
-
"coordinates": "abs_time month",
|
|
1567
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1568
|
-
},
|
|
1569
|
-
"dimension_names": [
|
|
1570
|
-
"bry_time",
|
|
1571
|
-
"s_rho",
|
|
1572
|
-
"eta_rho"
|
|
1573
|
-
],
|
|
1574
|
-
"zarr_format": 3,
|
|
1575
|
-
"node_type": "array",
|
|
1576
|
-
"storage_transformers": []
|
|
1577
|
-
},
|
|
1578
|
-
"Lig_north": {
|
|
1579
|
-
"shape": [
|
|
1580
|
-
12,
|
|
1581
|
-
3,
|
|
1582
|
-
4
|
|
1583
|
-
],
|
|
1584
|
-
"data_type": "float32",
|
|
1585
|
-
"chunk_grid": {
|
|
1586
|
-
"name": "regular",
|
|
1587
|
-
"configuration": {
|
|
1588
|
-
"chunk_shape": [
|
|
1589
|
-
12,
|
|
1590
|
-
3,
|
|
1591
|
-
4
|
|
1592
|
-
]
|
|
1593
|
-
}
|
|
1594
|
-
},
|
|
1595
|
-
"chunk_key_encoding": {
|
|
1596
|
-
"name": "default",
|
|
1597
|
-
"configuration": {
|
|
1598
|
-
"separator": "/"
|
|
1599
|
-
}
|
|
1600
|
-
},
|
|
1601
|
-
"fill_value": 0.0,
|
|
1602
|
-
"codecs": [
|
|
1603
|
-
{
|
|
1604
|
-
"name": "bytes",
|
|
1605
|
-
"configuration": {
|
|
1606
|
-
"endian": "little"
|
|
1607
|
-
}
|
|
1608
|
-
},
|
|
1609
|
-
{
|
|
1610
|
-
"name": "zstd",
|
|
1611
|
-
"configuration": {
|
|
1612
|
-
"level": 0,
|
|
1613
|
-
"checksum": false
|
|
1614
|
-
}
|
|
1615
|
-
}
|
|
1616
|
-
],
|
|
1617
|
-
"attributes": {
|
|
1618
|
-
"long_name": "northern boundary iron binding ligand",
|
|
1619
|
-
"units": "mmol/m^3",
|
|
1620
|
-
"coordinates": "abs_time month",
|
|
1621
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1622
|
-
},
|
|
1623
|
-
"dimension_names": [
|
|
1624
|
-
"bry_time",
|
|
1625
|
-
"s_rho",
|
|
1626
|
-
"xi_rho"
|
|
1627
|
-
],
|
|
1628
|
-
"zarr_format": 3,
|
|
1629
|
-
"node_type": "array",
|
|
1630
|
-
"storage_transformers": []
|
|
1631
|
-
},
|
|
1632
21
|
"abs_time": {
|
|
1633
22
|
"shape": [
|
|
1634
23
|
12
|
|
@@ -1676,115 +65,7 @@
|
|
|
1676
65
|
"node_type": "array",
|
|
1677
66
|
"storage_transformers": []
|
|
1678
67
|
},
|
|
1679
|
-
"
|
|
1680
|
-
"shape": [
|
|
1681
|
-
12,
|
|
1682
|
-
3,
|
|
1683
|
-
4
|
|
1684
|
-
],
|
|
1685
|
-
"data_type": "float32",
|
|
1686
|
-
"chunk_grid": {
|
|
1687
|
-
"name": "regular",
|
|
1688
|
-
"configuration": {
|
|
1689
|
-
"chunk_shape": [
|
|
1690
|
-
12,
|
|
1691
|
-
3,
|
|
1692
|
-
4
|
|
1693
|
-
]
|
|
1694
|
-
}
|
|
1695
|
-
},
|
|
1696
|
-
"chunk_key_encoding": {
|
|
1697
|
-
"name": "default",
|
|
1698
|
-
"configuration": {
|
|
1699
|
-
"separator": "/"
|
|
1700
|
-
}
|
|
1701
|
-
},
|
|
1702
|
-
"fill_value": 0.0,
|
|
1703
|
-
"codecs": [
|
|
1704
|
-
{
|
|
1705
|
-
"name": "bytes",
|
|
1706
|
-
"configuration": {
|
|
1707
|
-
"endian": "little"
|
|
1708
|
-
}
|
|
1709
|
-
},
|
|
1710
|
-
{
|
|
1711
|
-
"name": "zstd",
|
|
1712
|
-
"configuration": {
|
|
1713
|
-
"level": 0,
|
|
1714
|
-
"checksum": false
|
|
1715
|
-
}
|
|
1716
|
-
}
|
|
1717
|
-
],
|
|
1718
|
-
"attributes": {
|
|
1719
|
-
"long_name": "western boundary zooplankton carbon",
|
|
1720
|
-
"units": "mmol/m^3",
|
|
1721
|
-
"coordinates": "abs_time month",
|
|
1722
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1723
|
-
},
|
|
1724
|
-
"dimension_names": [
|
|
1725
|
-
"bry_time",
|
|
1726
|
-
"s_rho",
|
|
1727
|
-
"eta_rho"
|
|
1728
|
-
],
|
|
1729
|
-
"zarr_format": 3,
|
|
1730
|
-
"node_type": "array",
|
|
1731
|
-
"storage_transformers": []
|
|
1732
|
-
},
|
|
1733
|
-
"Lig_west": {
|
|
1734
|
-
"shape": [
|
|
1735
|
-
12,
|
|
1736
|
-
3,
|
|
1737
|
-
4
|
|
1738
|
-
],
|
|
1739
|
-
"data_type": "float32",
|
|
1740
|
-
"chunk_grid": {
|
|
1741
|
-
"name": "regular",
|
|
1742
|
-
"configuration": {
|
|
1743
|
-
"chunk_shape": [
|
|
1744
|
-
12,
|
|
1745
|
-
3,
|
|
1746
|
-
4
|
|
1747
|
-
]
|
|
1748
|
-
}
|
|
1749
|
-
},
|
|
1750
|
-
"chunk_key_encoding": {
|
|
1751
|
-
"name": "default",
|
|
1752
|
-
"configuration": {
|
|
1753
|
-
"separator": "/"
|
|
1754
|
-
}
|
|
1755
|
-
},
|
|
1756
|
-
"fill_value": 0.0,
|
|
1757
|
-
"codecs": [
|
|
1758
|
-
{
|
|
1759
|
-
"name": "bytes",
|
|
1760
|
-
"configuration": {
|
|
1761
|
-
"endian": "little"
|
|
1762
|
-
}
|
|
1763
|
-
},
|
|
1764
|
-
{
|
|
1765
|
-
"name": "zstd",
|
|
1766
|
-
"configuration": {
|
|
1767
|
-
"level": 0,
|
|
1768
|
-
"checksum": false
|
|
1769
|
-
}
|
|
1770
|
-
}
|
|
1771
|
-
],
|
|
1772
|
-
"attributes": {
|
|
1773
|
-
"long_name": "western boundary iron binding ligand",
|
|
1774
|
-
"units": "mmol/m^3",
|
|
1775
|
-
"coordinates": "abs_time month",
|
|
1776
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
1777
|
-
},
|
|
1778
|
-
"dimension_names": [
|
|
1779
|
-
"bry_time",
|
|
1780
|
-
"s_rho",
|
|
1781
|
-
"eta_rho"
|
|
1782
|
-
],
|
|
1783
|
-
"zarr_format": 3,
|
|
1784
|
-
"node_type": "array",
|
|
1785
|
-
"storage_transformers": []
|
|
1786
|
-
},
|
|
1787
|
-
"Fe_east": {
|
|
68
|
+
"ALK_ALT_CO2_east": {
|
|
1788
69
|
"shape": [
|
|
1789
70
|
12,
|
|
1790
71
|
3,
|
|
@@ -1824,8 +105,8 @@
|
|
|
1824
105
|
}
|
|
1825
106
|
],
|
|
1826
107
|
"attributes": {
|
|
1827
|
-
"long_name": "eastern boundary
|
|
1828
|
-
"units": "
|
|
108
|
+
"long_name": "eastern boundary alkalinity, alternative CO2",
|
|
109
|
+
"units": "meq/m^3",
|
|
1829
110
|
"coordinates": "abs_time month",
|
|
1830
111
|
"_FillValue": "AAAAAAAA+H8="
|
|
1831
112
|
},
|
|
@@ -1838,7 +119,7 @@
|
|
|
1838
119
|
"node_type": "array",
|
|
1839
120
|
"storage_transformers": []
|
|
1840
121
|
},
|
|
1841
|
-
"
|
|
122
|
+
"ALK_ALT_CO2_north": {
|
|
1842
123
|
"shape": [
|
|
1843
124
|
12,
|
|
1844
125
|
3,
|
|
@@ -1878,8 +159,8 @@
|
|
|
1878
159
|
}
|
|
1879
160
|
],
|
|
1880
161
|
"attributes": {
|
|
1881
|
-
"long_name": "northern boundary
|
|
1882
|
-
"units": "
|
|
162
|
+
"long_name": "northern boundary alkalinity, alternative CO2",
|
|
163
|
+
"units": "meq/m^3",
|
|
1883
164
|
"coordinates": "abs_time month",
|
|
1884
165
|
"_FillValue": "AAAAAAAA+H8="
|
|
1885
166
|
},
|
|
@@ -1892,7 +173,7 @@
|
|
|
1892
173
|
"node_type": "array",
|
|
1893
174
|
"storage_transformers": []
|
|
1894
175
|
},
|
|
1895
|
-
"
|
|
176
|
+
"ALK_ALT_CO2_south": {
|
|
1896
177
|
"shape": [
|
|
1897
178
|
12,
|
|
1898
179
|
3,
|
|
@@ -1932,8 +213,8 @@
|
|
|
1932
213
|
}
|
|
1933
214
|
],
|
|
1934
215
|
"attributes": {
|
|
1935
|
-
"long_name": "southern boundary
|
|
1936
|
-
"units": "
|
|
216
|
+
"long_name": "southern boundary alkalinity, alternative CO2",
|
|
217
|
+
"units": "meq/m^3",
|
|
1937
218
|
"coordinates": "abs_time month",
|
|
1938
219
|
"_FillValue": "AAAAAAAA+H8="
|
|
1939
220
|
},
|
|
@@ -1946,7 +227,7 @@
|
|
|
1946
227
|
"node_type": "array",
|
|
1947
228
|
"storage_transformers": []
|
|
1948
229
|
},
|
|
1949
|
-
"
|
|
230
|
+
"ALK_east": {
|
|
1950
231
|
"shape": [
|
|
1951
232
|
12,
|
|
1952
233
|
3,
|
|
@@ -1986,21 +267,21 @@
|
|
|
1986
267
|
}
|
|
1987
268
|
],
|
|
1988
269
|
"attributes": {
|
|
1989
|
-
"long_name": "
|
|
1990
|
-
"units": "
|
|
270
|
+
"long_name": "eastern boundary alkalinity",
|
|
271
|
+
"units": "meq/m^3",
|
|
1991
272
|
"coordinates": "abs_time month",
|
|
1992
273
|
"_FillValue": "AAAAAAAA+H8="
|
|
1993
274
|
},
|
|
1994
275
|
"dimension_names": [
|
|
1995
276
|
"bry_time",
|
|
1996
277
|
"s_rho",
|
|
1997
|
-
"
|
|
278
|
+
"eta_rho"
|
|
1998
279
|
],
|
|
1999
280
|
"zarr_format": 3,
|
|
2000
281
|
"node_type": "array",
|
|
2001
282
|
"storage_transformers": []
|
|
2002
283
|
},
|
|
2003
|
-
"
|
|
284
|
+
"ALK_north": {
|
|
2004
285
|
"shape": [
|
|
2005
286
|
12,
|
|
2006
287
|
3,
|
|
@@ -2040,21 +321,21 @@
|
|
|
2040
321
|
}
|
|
2041
322
|
],
|
|
2042
323
|
"attributes": {
|
|
2043
|
-
"long_name": "
|
|
2044
|
-
"units": "
|
|
324
|
+
"long_name": "northern boundary alkalinity",
|
|
325
|
+
"units": "meq/m^3",
|
|
2045
326
|
"coordinates": "abs_time month",
|
|
2046
327
|
"_FillValue": "AAAAAAAA+H8="
|
|
2047
328
|
},
|
|
2048
329
|
"dimension_names": [
|
|
2049
330
|
"bry_time",
|
|
2050
331
|
"s_rho",
|
|
2051
|
-
"
|
|
332
|
+
"xi_rho"
|
|
2052
333
|
],
|
|
2053
334
|
"zarr_format": 3,
|
|
2054
335
|
"node_type": "array",
|
|
2055
336
|
"storage_transformers": []
|
|
2056
337
|
},
|
|
2057
|
-
"
|
|
338
|
+
"ALK_south": {
|
|
2058
339
|
"shape": [
|
|
2059
340
|
12,
|
|
2060
341
|
3,
|
|
@@ -2094,34 +375,30 @@
|
|
|
2094
375
|
}
|
|
2095
376
|
],
|
|
2096
377
|
"attributes": {
|
|
2097
|
-
"long_name": "
|
|
2098
|
-
"units": "
|
|
378
|
+
"long_name": "southern boundary alkalinity",
|
|
379
|
+
"units": "meq/m^3",
|
|
2099
380
|
"coordinates": "abs_time month",
|
|
2100
381
|
"_FillValue": "AAAAAAAA+H8="
|
|
2101
382
|
},
|
|
2102
383
|
"dimension_names": [
|
|
2103
384
|
"bry_time",
|
|
2104
385
|
"s_rho",
|
|
2105
|
-
"
|
|
386
|
+
"xi_rho"
|
|
2106
387
|
],
|
|
2107
388
|
"zarr_format": 3,
|
|
2108
389
|
"node_type": "array",
|
|
2109
390
|
"storage_transformers": []
|
|
2110
391
|
},
|
|
2111
|
-
"
|
|
392
|
+
"bry_time": {
|
|
2112
393
|
"shape": [
|
|
2113
|
-
12
|
|
2114
|
-
3,
|
|
2115
|
-
4
|
|
394
|
+
12
|
|
2116
395
|
],
|
|
2117
|
-
"data_type": "
|
|
396
|
+
"data_type": "float64",
|
|
2118
397
|
"chunk_grid": {
|
|
2119
398
|
"name": "regular",
|
|
2120
399
|
"configuration": {
|
|
2121
400
|
"chunk_shape": [
|
|
2122
|
-
12
|
|
2123
|
-
3,
|
|
2124
|
-
4
|
|
401
|
+
12
|
|
2125
402
|
]
|
|
2126
403
|
}
|
|
2127
404
|
},
|
|
@@ -2148,21 +425,19 @@
|
|
|
2148
425
|
}
|
|
2149
426
|
],
|
|
2150
427
|
"attributes": {
|
|
2151
|
-
"
|
|
2152
|
-
"
|
|
2153
|
-
"
|
|
428
|
+
"cycle_length": 365.25,
|
|
429
|
+
"long_name": "relative time: days since 2000-01-01 00:00:00",
|
|
430
|
+
"units": "days",
|
|
2154
431
|
"_FillValue": "AAAAAAAA+H8="
|
|
2155
432
|
},
|
|
2156
433
|
"dimension_names": [
|
|
2157
|
-
"bry_time"
|
|
2158
|
-
"s_rho",
|
|
2159
|
-
"eta_rho"
|
|
434
|
+
"bry_time"
|
|
2160
435
|
],
|
|
2161
436
|
"zarr_format": 3,
|
|
2162
437
|
"node_type": "array",
|
|
2163
438
|
"storage_transformers": []
|
|
2164
439
|
},
|
|
2165
|
-
"
|
|
440
|
+
"diatC_east": {
|
|
2166
441
|
"shape": [
|
|
2167
442
|
12,
|
|
2168
443
|
3,
|
|
@@ -2202,7 +477,7 @@
|
|
|
2202
477
|
}
|
|
2203
478
|
],
|
|
2204
479
|
"attributes": {
|
|
2205
|
-
"long_name": "
|
|
480
|
+
"long_name": "eastern boundary diatom carbon",
|
|
2206
481
|
"units": "mmol/m^3",
|
|
2207
482
|
"coordinates": "abs_time month",
|
|
2208
483
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2210,13 +485,13 @@
|
|
|
2210
485
|
"dimension_names": [
|
|
2211
486
|
"bry_time",
|
|
2212
487
|
"s_rho",
|
|
2213
|
-
"
|
|
488
|
+
"eta_rho"
|
|
2214
489
|
],
|
|
2215
490
|
"zarr_format": 3,
|
|
2216
491
|
"node_type": "array",
|
|
2217
492
|
"storage_transformers": []
|
|
2218
493
|
},
|
|
2219
|
-
"
|
|
494
|
+
"diatC_north": {
|
|
2220
495
|
"shape": [
|
|
2221
496
|
12,
|
|
2222
497
|
3,
|
|
@@ -2256,7 +531,7 @@
|
|
|
2256
531
|
}
|
|
2257
532
|
],
|
|
2258
533
|
"attributes": {
|
|
2259
|
-
"long_name": "northern boundary
|
|
534
|
+
"long_name": "northern boundary diatom carbon",
|
|
2260
535
|
"units": "mmol/m^3",
|
|
2261
536
|
"coordinates": "abs_time month",
|
|
2262
537
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2270,7 +545,7 @@
|
|
|
2270
545
|
"node_type": "array",
|
|
2271
546
|
"storage_transformers": []
|
|
2272
547
|
},
|
|
2273
|
-
"
|
|
548
|
+
"diatC_south": {
|
|
2274
549
|
"shape": [
|
|
2275
550
|
12,
|
|
2276
551
|
3,
|
|
@@ -2310,7 +585,7 @@
|
|
|
2310
585
|
}
|
|
2311
586
|
],
|
|
2312
587
|
"attributes": {
|
|
2313
|
-
"long_name": "
|
|
588
|
+
"long_name": "southern boundary diatom carbon",
|
|
2314
589
|
"units": "mmol/m^3",
|
|
2315
590
|
"coordinates": "abs_time month",
|
|
2316
591
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2318,13 +593,13 @@
|
|
|
2318
593
|
"dimension_names": [
|
|
2319
594
|
"bry_time",
|
|
2320
595
|
"s_rho",
|
|
2321
|
-
"
|
|
596
|
+
"xi_rho"
|
|
2322
597
|
],
|
|
2323
598
|
"zarr_format": 3,
|
|
2324
599
|
"node_type": "array",
|
|
2325
600
|
"storage_transformers": []
|
|
2326
601
|
},
|
|
2327
|
-
"
|
|
602
|
+
"diatChl_east": {
|
|
2328
603
|
"shape": [
|
|
2329
604
|
12,
|
|
2330
605
|
3,
|
|
@@ -2364,8 +639,8 @@
|
|
|
2364
639
|
}
|
|
2365
640
|
],
|
|
2366
641
|
"attributes": {
|
|
2367
|
-
"long_name": "
|
|
2368
|
-
"units": "
|
|
642
|
+
"long_name": "eastern boundary diatom chloropyll",
|
|
643
|
+
"units": "mg/m^3",
|
|
2369
644
|
"coordinates": "abs_time month",
|
|
2370
645
|
"_FillValue": "AAAAAAAA+H8="
|
|
2371
646
|
},
|
|
@@ -2378,7 +653,7 @@
|
|
|
2378
653
|
"node_type": "array",
|
|
2379
654
|
"storage_transformers": []
|
|
2380
655
|
},
|
|
2381
|
-
"
|
|
656
|
+
"diatChl_north": {
|
|
2382
657
|
"shape": [
|
|
2383
658
|
12,
|
|
2384
659
|
3,
|
|
@@ -2418,8 +693,8 @@
|
|
|
2418
693
|
}
|
|
2419
694
|
],
|
|
2420
695
|
"attributes": {
|
|
2421
|
-
"long_name": "northern boundary diatom
|
|
2422
|
-
"units": "
|
|
696
|
+
"long_name": "northern boundary diatom chloropyll",
|
|
697
|
+
"units": "mg/m^3",
|
|
2423
698
|
"coordinates": "abs_time month",
|
|
2424
699
|
"_FillValue": "AAAAAAAA+H8="
|
|
2425
700
|
},
|
|
@@ -2432,7 +707,7 @@
|
|
|
2432
707
|
"node_type": "array",
|
|
2433
708
|
"storage_transformers": []
|
|
2434
709
|
},
|
|
2435
|
-
"
|
|
710
|
+
"diatChl_south": {
|
|
2436
711
|
"shape": [
|
|
2437
712
|
12,
|
|
2438
713
|
3,
|
|
@@ -2472,8 +747,8 @@
|
|
|
2472
747
|
}
|
|
2473
748
|
],
|
|
2474
749
|
"attributes": {
|
|
2475
|
-
"long_name": "
|
|
2476
|
-
"units": "
|
|
750
|
+
"long_name": "southern boundary diatom chloropyll",
|
|
751
|
+
"units": "mg/m^3",
|
|
2477
752
|
"coordinates": "abs_time month",
|
|
2478
753
|
"_FillValue": "AAAAAAAA+H8="
|
|
2479
754
|
},
|
|
@@ -2486,7 +761,7 @@
|
|
|
2486
761
|
"node_type": "array",
|
|
2487
762
|
"storage_transformers": []
|
|
2488
763
|
},
|
|
2489
|
-
"
|
|
764
|
+
"diatFe_east": {
|
|
2490
765
|
"shape": [
|
|
2491
766
|
12,
|
|
2492
767
|
3,
|
|
@@ -2526,7 +801,7 @@
|
|
|
2526
801
|
}
|
|
2527
802
|
],
|
|
2528
803
|
"attributes": {
|
|
2529
|
-
"long_name": "
|
|
804
|
+
"long_name": "eastern boundary diatom iron",
|
|
2530
805
|
"units": "mmol/m^3",
|
|
2531
806
|
"coordinates": "abs_time month",
|
|
2532
807
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2534,13 +809,13 @@
|
|
|
2534
809
|
"dimension_names": [
|
|
2535
810
|
"bry_time",
|
|
2536
811
|
"s_rho",
|
|
2537
|
-
"
|
|
812
|
+
"eta_rho"
|
|
2538
813
|
],
|
|
2539
814
|
"zarr_format": 3,
|
|
2540
815
|
"node_type": "array",
|
|
2541
816
|
"storage_transformers": []
|
|
2542
817
|
},
|
|
2543
|
-
"
|
|
818
|
+
"diatFe_north": {
|
|
2544
819
|
"shape": [
|
|
2545
820
|
12,
|
|
2546
821
|
3,
|
|
@@ -2580,7 +855,7 @@
|
|
|
2580
855
|
}
|
|
2581
856
|
],
|
|
2582
857
|
"attributes": {
|
|
2583
|
-
"long_name": "
|
|
858
|
+
"long_name": "northern boundary diatom iron",
|
|
2584
859
|
"units": "mmol/m^3",
|
|
2585
860
|
"coordinates": "abs_time month",
|
|
2586
861
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2588,13 +863,13 @@
|
|
|
2588
863
|
"dimension_names": [
|
|
2589
864
|
"bry_time",
|
|
2590
865
|
"s_rho",
|
|
2591
|
-
"
|
|
866
|
+
"xi_rho"
|
|
2592
867
|
],
|
|
2593
868
|
"zarr_format": 3,
|
|
2594
869
|
"node_type": "array",
|
|
2595
870
|
"storage_transformers": []
|
|
2596
871
|
},
|
|
2597
|
-
"
|
|
872
|
+
"diatFe_south": {
|
|
2598
873
|
"shape": [
|
|
2599
874
|
12,
|
|
2600
875
|
3,
|
|
@@ -2634,7 +909,7 @@
|
|
|
2634
909
|
}
|
|
2635
910
|
],
|
|
2636
911
|
"attributes": {
|
|
2637
|
-
"long_name": "southern boundary
|
|
912
|
+
"long_name": "southern boundary diatom iron",
|
|
2638
913
|
"units": "mmol/m^3",
|
|
2639
914
|
"coordinates": "abs_time month",
|
|
2640
915
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2648,7 +923,7 @@
|
|
|
2648
923
|
"node_type": "array",
|
|
2649
924
|
"storage_transformers": []
|
|
2650
925
|
},
|
|
2651
|
-
"
|
|
926
|
+
"diatP_east": {
|
|
2652
927
|
"shape": [
|
|
2653
928
|
12,
|
|
2654
929
|
3,
|
|
@@ -2688,7 +963,7 @@
|
|
|
2688
963
|
}
|
|
2689
964
|
],
|
|
2690
965
|
"attributes": {
|
|
2691
|
-
"long_name": "eastern boundary
|
|
966
|
+
"long_name": "eastern boundary diatom phosphorus",
|
|
2692
967
|
"units": "mmol/m^3",
|
|
2693
968
|
"coordinates": "abs_time month",
|
|
2694
969
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2702,7 +977,7 @@
|
|
|
2702
977
|
"node_type": "array",
|
|
2703
978
|
"storage_transformers": []
|
|
2704
979
|
},
|
|
2705
|
-
"
|
|
980
|
+
"diatP_north": {
|
|
2706
981
|
"shape": [
|
|
2707
982
|
12,
|
|
2708
983
|
3,
|
|
@@ -2742,7 +1017,7 @@
|
|
|
2742
1017
|
}
|
|
2743
1018
|
],
|
|
2744
1019
|
"attributes": {
|
|
2745
|
-
"long_name": "
|
|
1020
|
+
"long_name": "northern boundary diatom phosphorus",
|
|
2746
1021
|
"units": "mmol/m^3",
|
|
2747
1022
|
"coordinates": "abs_time month",
|
|
2748
1023
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2750,13 +1025,13 @@
|
|
|
2750
1025
|
"dimension_names": [
|
|
2751
1026
|
"bry_time",
|
|
2752
1027
|
"s_rho",
|
|
2753
|
-
"
|
|
1028
|
+
"xi_rho"
|
|
2754
1029
|
],
|
|
2755
1030
|
"zarr_format": 3,
|
|
2756
1031
|
"node_type": "array",
|
|
2757
1032
|
"storage_transformers": []
|
|
2758
1033
|
},
|
|
2759
|
-
"
|
|
1034
|
+
"diatP_south": {
|
|
2760
1035
|
"shape": [
|
|
2761
1036
|
12,
|
|
2762
1037
|
3,
|
|
@@ -2796,7 +1071,7 @@
|
|
|
2796
1071
|
}
|
|
2797
1072
|
],
|
|
2798
1073
|
"attributes": {
|
|
2799
|
-
"long_name": "
|
|
1074
|
+
"long_name": "southern boundary diatom phosphorus",
|
|
2800
1075
|
"units": "mmol/m^3",
|
|
2801
1076
|
"coordinates": "abs_time month",
|
|
2802
1077
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2804,13 +1079,13 @@
|
|
|
2804
1079
|
"dimension_names": [
|
|
2805
1080
|
"bry_time",
|
|
2806
1081
|
"s_rho",
|
|
2807
|
-
"
|
|
1082
|
+
"xi_rho"
|
|
2808
1083
|
],
|
|
2809
1084
|
"zarr_format": 3,
|
|
2810
1085
|
"node_type": "array",
|
|
2811
1086
|
"storage_transformers": []
|
|
2812
1087
|
},
|
|
2813
|
-
"
|
|
1088
|
+
"diatSi_east": {
|
|
2814
1089
|
"shape": [
|
|
2815
1090
|
12,
|
|
2816
1091
|
3,
|
|
@@ -2850,8 +1125,8 @@
|
|
|
2850
1125
|
}
|
|
2851
1126
|
],
|
|
2852
1127
|
"attributes": {
|
|
2853
|
-
"long_name": "eastern boundary
|
|
2854
|
-
"units": "
|
|
1128
|
+
"long_name": "eastern boundary diatom silicate",
|
|
1129
|
+
"units": "mmol/m^3",
|
|
2855
1130
|
"coordinates": "abs_time month",
|
|
2856
1131
|
"_FillValue": "AAAAAAAA+H8="
|
|
2857
1132
|
},
|
|
@@ -2864,7 +1139,7 @@
|
|
|
2864
1139
|
"node_type": "array",
|
|
2865
1140
|
"storage_transformers": []
|
|
2866
1141
|
},
|
|
2867
|
-
"
|
|
1142
|
+
"diatSi_north": {
|
|
2868
1143
|
"shape": [
|
|
2869
1144
|
12,
|
|
2870
1145
|
3,
|
|
@@ -2904,7 +1179,7 @@
|
|
|
2904
1179
|
}
|
|
2905
1180
|
],
|
|
2906
1181
|
"attributes": {
|
|
2907
|
-
"long_name": "
|
|
1182
|
+
"long_name": "northern boundary diatom silicate",
|
|
2908
1183
|
"units": "mmol/m^3",
|
|
2909
1184
|
"coordinates": "abs_time month",
|
|
2910
1185
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2912,13 +1187,13 @@
|
|
|
2912
1187
|
"dimension_names": [
|
|
2913
1188
|
"bry_time",
|
|
2914
1189
|
"s_rho",
|
|
2915
|
-
"
|
|
1190
|
+
"xi_rho"
|
|
2916
1191
|
],
|
|
2917
1192
|
"zarr_format": 3,
|
|
2918
1193
|
"node_type": "array",
|
|
2919
1194
|
"storage_transformers": []
|
|
2920
1195
|
},
|
|
2921
|
-
"
|
|
1196
|
+
"diatSi_south": {
|
|
2922
1197
|
"shape": [
|
|
2923
1198
|
12,
|
|
2924
1199
|
3,
|
|
@@ -2958,7 +1233,7 @@
|
|
|
2958
1233
|
}
|
|
2959
1234
|
],
|
|
2960
1235
|
"attributes": {
|
|
2961
|
-
"long_name": "
|
|
1236
|
+
"long_name": "southern boundary diatom silicate",
|
|
2962
1237
|
"units": "mmol/m^3",
|
|
2963
1238
|
"coordinates": "abs_time month",
|
|
2964
1239
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2972,7 +1247,7 @@
|
|
|
2972
1247
|
"node_type": "array",
|
|
2973
1248
|
"storage_transformers": []
|
|
2974
1249
|
},
|
|
2975
|
-
"
|
|
1250
|
+
"diazC_east": {
|
|
2976
1251
|
"shape": [
|
|
2977
1252
|
12,
|
|
2978
1253
|
3,
|
|
@@ -3012,7 +1287,7 @@
|
|
|
3012
1287
|
}
|
|
3013
1288
|
],
|
|
3014
1289
|
"attributes": {
|
|
3015
|
-
"long_name": "
|
|
1290
|
+
"long_name": "eastern boundary diazotroph carbon",
|
|
3016
1291
|
"units": "mmol/m^3",
|
|
3017
1292
|
"coordinates": "abs_time month",
|
|
3018
1293
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3020,13 +1295,13 @@
|
|
|
3020
1295
|
"dimension_names": [
|
|
3021
1296
|
"bry_time",
|
|
3022
1297
|
"s_rho",
|
|
3023
|
-
"
|
|
1298
|
+
"eta_rho"
|
|
3024
1299
|
],
|
|
3025
1300
|
"zarr_format": 3,
|
|
3026
1301
|
"node_type": "array",
|
|
3027
1302
|
"storage_transformers": []
|
|
3028
1303
|
},
|
|
3029
|
-
"
|
|
1304
|
+
"diazC_north": {
|
|
3030
1305
|
"shape": [
|
|
3031
1306
|
12,
|
|
3032
1307
|
3,
|
|
@@ -3066,21 +1341,21 @@
|
|
|
3066
1341
|
}
|
|
3067
1342
|
],
|
|
3068
1343
|
"attributes": {
|
|
3069
|
-
"long_name": "
|
|
3070
|
-
"units": "
|
|
1344
|
+
"long_name": "northern boundary diazotroph carbon",
|
|
1345
|
+
"units": "mmol/m^3",
|
|
3071
1346
|
"coordinates": "abs_time month",
|
|
3072
1347
|
"_FillValue": "AAAAAAAA+H8="
|
|
3073
1348
|
},
|
|
3074
1349
|
"dimension_names": [
|
|
3075
1350
|
"bry_time",
|
|
3076
1351
|
"s_rho",
|
|
3077
|
-
"
|
|
1352
|
+
"xi_rho"
|
|
3078
1353
|
],
|
|
3079
1354
|
"zarr_format": 3,
|
|
3080
1355
|
"node_type": "array",
|
|
3081
1356
|
"storage_transformers": []
|
|
3082
1357
|
},
|
|
3083
|
-
"
|
|
1358
|
+
"diazC_south": {
|
|
3084
1359
|
"shape": [
|
|
3085
1360
|
12,
|
|
3086
1361
|
3,
|
|
@@ -3120,7 +1395,7 @@
|
|
|
3120
1395
|
}
|
|
3121
1396
|
],
|
|
3122
1397
|
"attributes": {
|
|
3123
|
-
"long_name": "southern boundary
|
|
1398
|
+
"long_name": "southern boundary diazotroph carbon",
|
|
3124
1399
|
"units": "mmol/m^3",
|
|
3125
1400
|
"coordinates": "abs_time month",
|
|
3126
1401
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3134,7 +1409,7 @@
|
|
|
3134
1409
|
"node_type": "array",
|
|
3135
1410
|
"storage_transformers": []
|
|
3136
1411
|
},
|
|
3137
|
-
"
|
|
1412
|
+
"diazChl_east": {
|
|
3138
1413
|
"shape": [
|
|
3139
1414
|
12,
|
|
3140
1415
|
3,
|
|
@@ -3174,8 +1449,8 @@
|
|
|
3174
1449
|
}
|
|
3175
1450
|
],
|
|
3176
1451
|
"attributes": {
|
|
3177
|
-
"long_name": "
|
|
3178
|
-
"units": "
|
|
1452
|
+
"long_name": "eastern boundary diazotroph chloropyll",
|
|
1453
|
+
"units": "mg/m^3",
|
|
3179
1454
|
"coordinates": "abs_time month",
|
|
3180
1455
|
"_FillValue": "AAAAAAAA+H8="
|
|
3181
1456
|
},
|
|
@@ -3188,7 +1463,7 @@
|
|
|
3188
1463
|
"node_type": "array",
|
|
3189
1464
|
"storage_transformers": []
|
|
3190
1465
|
},
|
|
3191
|
-
"
|
|
1466
|
+
"diazChl_north": {
|
|
3192
1467
|
"shape": [
|
|
3193
1468
|
12,
|
|
3194
1469
|
3,
|
|
@@ -3228,30 +1503,34 @@
|
|
|
3228
1503
|
}
|
|
3229
1504
|
],
|
|
3230
1505
|
"attributes": {
|
|
3231
|
-
"long_name": "
|
|
3232
|
-
"units": "
|
|
1506
|
+
"long_name": "northern boundary diazotroph chloropyll",
|
|
1507
|
+
"units": "mg/m^3",
|
|
3233
1508
|
"coordinates": "abs_time month",
|
|
3234
1509
|
"_FillValue": "AAAAAAAA+H8="
|
|
3235
1510
|
},
|
|
3236
1511
|
"dimension_names": [
|
|
3237
1512
|
"bry_time",
|
|
3238
1513
|
"s_rho",
|
|
3239
|
-
"
|
|
1514
|
+
"xi_rho"
|
|
3240
1515
|
],
|
|
3241
1516
|
"zarr_format": 3,
|
|
3242
1517
|
"node_type": "array",
|
|
3243
1518
|
"storage_transformers": []
|
|
3244
1519
|
},
|
|
3245
|
-
"
|
|
1520
|
+
"diazChl_south": {
|
|
3246
1521
|
"shape": [
|
|
3247
|
-
12
|
|
1522
|
+
12,
|
|
1523
|
+
3,
|
|
1524
|
+
4
|
|
3248
1525
|
],
|
|
3249
|
-
"data_type": "
|
|
1526
|
+
"data_type": "float32",
|
|
3250
1527
|
"chunk_grid": {
|
|
3251
1528
|
"name": "regular",
|
|
3252
1529
|
"configuration": {
|
|
3253
1530
|
"chunk_shape": [
|
|
3254
|
-
12
|
|
1531
|
+
12,
|
|
1532
|
+
3,
|
|
1533
|
+
4
|
|
3255
1534
|
]
|
|
3256
1535
|
}
|
|
3257
1536
|
},
|
|
@@ -3278,19 +1557,21 @@
|
|
|
3278
1557
|
}
|
|
3279
1558
|
],
|
|
3280
1559
|
"attributes": {
|
|
3281
|
-
"
|
|
3282
|
-
"
|
|
3283
|
-
"
|
|
1560
|
+
"long_name": "southern boundary diazotroph chloropyll",
|
|
1561
|
+
"units": "mg/m^3",
|
|
1562
|
+
"coordinates": "abs_time month",
|
|
3284
1563
|
"_FillValue": "AAAAAAAA+H8="
|
|
3285
1564
|
},
|
|
3286
1565
|
"dimension_names": [
|
|
3287
|
-
"bry_time"
|
|
1566
|
+
"bry_time",
|
|
1567
|
+
"s_rho",
|
|
1568
|
+
"xi_rho"
|
|
3288
1569
|
],
|
|
3289
1570
|
"zarr_format": 3,
|
|
3290
1571
|
"node_type": "array",
|
|
3291
1572
|
"storage_transformers": []
|
|
3292
1573
|
},
|
|
3293
|
-
"
|
|
1574
|
+
"diazFe_east": {
|
|
3294
1575
|
"shape": [
|
|
3295
1576
|
12,
|
|
3296
1577
|
3,
|
|
@@ -3330,7 +1611,7 @@
|
|
|
3330
1611
|
}
|
|
3331
1612
|
],
|
|
3332
1613
|
"attributes": {
|
|
3333
|
-
"long_name": "
|
|
1614
|
+
"long_name": "eastern boundary diazotroph iron",
|
|
3334
1615
|
"units": "mmol/m^3",
|
|
3335
1616
|
"coordinates": "abs_time month",
|
|
3336
1617
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3344,7 +1625,7 @@
|
|
|
3344
1625
|
"node_type": "array",
|
|
3345
1626
|
"storage_transformers": []
|
|
3346
1627
|
},
|
|
3347
|
-
"
|
|
1628
|
+
"diazFe_north": {
|
|
3348
1629
|
"shape": [
|
|
3349
1630
|
12,
|
|
3350
1631
|
3,
|
|
@@ -3384,7 +1665,7 @@
|
|
|
3384
1665
|
}
|
|
3385
1666
|
],
|
|
3386
1667
|
"attributes": {
|
|
3387
|
-
"long_name": "
|
|
1668
|
+
"long_name": "northern boundary diazotroph iron",
|
|
3388
1669
|
"units": "mmol/m^3",
|
|
3389
1670
|
"coordinates": "abs_time month",
|
|
3390
1671
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3398,7 +1679,7 @@
|
|
|
3398
1679
|
"node_type": "array",
|
|
3399
1680
|
"storage_transformers": []
|
|
3400
1681
|
},
|
|
3401
|
-
"
|
|
1682
|
+
"diazFe_south": {
|
|
3402
1683
|
"shape": [
|
|
3403
1684
|
12,
|
|
3404
1685
|
3,
|
|
@@ -3438,7 +1719,7 @@
|
|
|
3438
1719
|
}
|
|
3439
1720
|
],
|
|
3440
1721
|
"attributes": {
|
|
3441
|
-
"long_name": "southern boundary
|
|
1722
|
+
"long_name": "southern boundary diazotroph iron",
|
|
3442
1723
|
"units": "mmol/m^3",
|
|
3443
1724
|
"coordinates": "abs_time month",
|
|
3444
1725
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3452,7 +1733,7 @@
|
|
|
3452
1733
|
"node_type": "array",
|
|
3453
1734
|
"storage_transformers": []
|
|
3454
1735
|
},
|
|
3455
|
-
"
|
|
1736
|
+
"diazP_east": {
|
|
3456
1737
|
"shape": [
|
|
3457
1738
|
12,
|
|
3458
1739
|
3,
|
|
@@ -3492,7 +1773,7 @@
|
|
|
3492
1773
|
}
|
|
3493
1774
|
],
|
|
3494
1775
|
"attributes": {
|
|
3495
|
-
"long_name": "
|
|
1776
|
+
"long_name": "eastern boundary diazotroph phosphorus",
|
|
3496
1777
|
"units": "mmol/m^3",
|
|
3497
1778
|
"coordinates": "abs_time month",
|
|
3498
1779
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3500,13 +1781,13 @@
|
|
|
3500
1781
|
"dimension_names": [
|
|
3501
1782
|
"bry_time",
|
|
3502
1783
|
"s_rho",
|
|
3503
|
-
"
|
|
1784
|
+
"eta_rho"
|
|
3504
1785
|
],
|
|
3505
1786
|
"zarr_format": 3,
|
|
3506
1787
|
"node_type": "array",
|
|
3507
1788
|
"storage_transformers": []
|
|
3508
1789
|
},
|
|
3509
|
-
"
|
|
1790
|
+
"diazP_north": {
|
|
3510
1791
|
"shape": [
|
|
3511
1792
|
12,
|
|
3512
1793
|
3,
|
|
@@ -3546,7 +1827,7 @@
|
|
|
3546
1827
|
}
|
|
3547
1828
|
],
|
|
3548
1829
|
"attributes": {
|
|
3549
|
-
"long_name": "
|
|
1830
|
+
"long_name": "northern boundary diazotroph phosphorus",
|
|
3550
1831
|
"units": "mmol/m^3",
|
|
3551
1832
|
"coordinates": "abs_time month",
|
|
3552
1833
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3560,7 +1841,7 @@
|
|
|
3560
1841
|
"node_type": "array",
|
|
3561
1842
|
"storage_transformers": []
|
|
3562
1843
|
},
|
|
3563
|
-
"
|
|
1844
|
+
"diazP_south": {
|
|
3564
1845
|
"shape": [
|
|
3565
1846
|
12,
|
|
3566
1847
|
3,
|
|
@@ -3600,7 +1881,7 @@
|
|
|
3600
1881
|
}
|
|
3601
1882
|
],
|
|
3602
1883
|
"attributes": {
|
|
3603
|
-
"long_name": "southern boundary
|
|
1884
|
+
"long_name": "southern boundary diazotroph phosphorus",
|
|
3604
1885
|
"units": "mmol/m^3",
|
|
3605
1886
|
"coordinates": "abs_time month",
|
|
3606
1887
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3614,7 +1895,7 @@
|
|
|
3614
1895
|
"node_type": "array",
|
|
3615
1896
|
"storage_transformers": []
|
|
3616
1897
|
},
|
|
3617
|
-
"
|
|
1898
|
+
"DIC_ALT_CO2_east": {
|
|
3618
1899
|
"shape": [
|
|
3619
1900
|
12,
|
|
3620
1901
|
3,
|
|
@@ -3654,7 +1935,7 @@
|
|
|
3654
1935
|
}
|
|
3655
1936
|
],
|
|
3656
1937
|
"attributes": {
|
|
3657
|
-
"long_name": "
|
|
1938
|
+
"long_name": "eastern boundary dissolved inorganic carbon, alternative CO2",
|
|
3658
1939
|
"units": "mmol/m^3",
|
|
3659
1940
|
"coordinates": "abs_time month",
|
|
3660
1941
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3662,13 +1943,13 @@
|
|
|
3662
1943
|
"dimension_names": [
|
|
3663
1944
|
"bry_time",
|
|
3664
1945
|
"s_rho",
|
|
3665
|
-
"
|
|
1946
|
+
"eta_rho"
|
|
3666
1947
|
],
|
|
3667
1948
|
"zarr_format": 3,
|
|
3668
1949
|
"node_type": "array",
|
|
3669
1950
|
"storage_transformers": []
|
|
3670
1951
|
},
|
|
3671
|
-
"
|
|
1952
|
+
"DIC_ALT_CO2_north": {
|
|
3672
1953
|
"shape": [
|
|
3673
1954
|
12,
|
|
3674
1955
|
3,
|
|
@@ -3708,8 +1989,8 @@
|
|
|
3708
1989
|
}
|
|
3709
1990
|
],
|
|
3710
1991
|
"attributes": {
|
|
3711
|
-
"long_name": "northern boundary
|
|
3712
|
-
"units": "
|
|
1992
|
+
"long_name": "northern boundary dissolved inorganic carbon, alternative CO2",
|
|
1993
|
+
"units": "mmol/m^3",
|
|
3713
1994
|
"coordinates": "abs_time month",
|
|
3714
1995
|
"_FillValue": "AAAAAAAA+H8="
|
|
3715
1996
|
},
|
|
@@ -3722,7 +2003,7 @@
|
|
|
3722
2003
|
"node_type": "array",
|
|
3723
2004
|
"storage_transformers": []
|
|
3724
2005
|
},
|
|
3725
|
-
"
|
|
2006
|
+
"DIC_ALT_CO2_south": {
|
|
3726
2007
|
"shape": [
|
|
3727
2008
|
12,
|
|
3728
2009
|
3,
|
|
@@ -3762,7 +2043,7 @@
|
|
|
3762
2043
|
}
|
|
3763
2044
|
],
|
|
3764
2045
|
"attributes": {
|
|
3765
|
-
"long_name": "
|
|
2046
|
+
"long_name": "southern boundary dissolved inorganic carbon, alternative CO2",
|
|
3766
2047
|
"units": "mmol/m^3",
|
|
3767
2048
|
"coordinates": "abs_time month",
|
|
3768
2049
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3770,13 +2051,13 @@
|
|
|
3770
2051
|
"dimension_names": [
|
|
3771
2052
|
"bry_time",
|
|
3772
2053
|
"s_rho",
|
|
3773
|
-
"
|
|
2054
|
+
"xi_rho"
|
|
3774
2055
|
],
|
|
3775
2056
|
"zarr_format": 3,
|
|
3776
2057
|
"node_type": "array",
|
|
3777
2058
|
"storage_transformers": []
|
|
3778
2059
|
},
|
|
3779
|
-
"
|
|
2060
|
+
"DIC_east": {
|
|
3780
2061
|
"shape": [
|
|
3781
2062
|
12,
|
|
3782
2063
|
3,
|
|
@@ -3816,7 +2097,7 @@
|
|
|
3816
2097
|
}
|
|
3817
2098
|
],
|
|
3818
2099
|
"attributes": {
|
|
3819
|
-
"long_name": "
|
|
2100
|
+
"long_name": "eastern boundary dissolved inorganic carbon",
|
|
3820
2101
|
"units": "mmol/m^3",
|
|
3821
2102
|
"coordinates": "abs_time month",
|
|
3822
2103
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3830,7 +2111,7 @@
|
|
|
3830
2111
|
"node_type": "array",
|
|
3831
2112
|
"storage_transformers": []
|
|
3832
2113
|
},
|
|
3833
|
-
"
|
|
2114
|
+
"DIC_north": {
|
|
3834
2115
|
"shape": [
|
|
3835
2116
|
12,
|
|
3836
2117
|
3,
|
|
@@ -3870,7 +2151,7 @@
|
|
|
3870
2151
|
}
|
|
3871
2152
|
],
|
|
3872
2153
|
"attributes": {
|
|
3873
|
-
"long_name": "
|
|
2154
|
+
"long_name": "northern boundary dissolved inorganic carbon",
|
|
3874
2155
|
"units": "mmol/m^3",
|
|
3875
2156
|
"coordinates": "abs_time month",
|
|
3876
2157
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3878,13 +2159,13 @@
|
|
|
3878
2159
|
"dimension_names": [
|
|
3879
2160
|
"bry_time",
|
|
3880
2161
|
"s_rho",
|
|
3881
|
-
"
|
|
2162
|
+
"xi_rho"
|
|
3882
2163
|
],
|
|
3883
2164
|
"zarr_format": 3,
|
|
3884
2165
|
"node_type": "array",
|
|
3885
2166
|
"storage_transformers": []
|
|
3886
2167
|
},
|
|
3887
|
-
"
|
|
2168
|
+
"DIC_south": {
|
|
3888
2169
|
"shape": [
|
|
3889
2170
|
12,
|
|
3890
2171
|
3,
|
|
@@ -3924,7 +2205,7 @@
|
|
|
3924
2205
|
}
|
|
3925
2206
|
],
|
|
3926
2207
|
"attributes": {
|
|
3927
|
-
"long_name": "
|
|
2208
|
+
"long_name": "southern boundary dissolved inorganic carbon",
|
|
3928
2209
|
"units": "mmol/m^3",
|
|
3929
2210
|
"coordinates": "abs_time month",
|
|
3930
2211
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3932,13 +2213,13 @@
|
|
|
3932
2213
|
"dimension_names": [
|
|
3933
2214
|
"bry_time",
|
|
3934
2215
|
"s_rho",
|
|
3935
|
-
"
|
|
2216
|
+
"xi_rho"
|
|
3936
2217
|
],
|
|
3937
2218
|
"zarr_format": 3,
|
|
3938
2219
|
"node_type": "array",
|
|
3939
2220
|
"storage_transformers": []
|
|
3940
2221
|
},
|
|
3941
|
-
"
|
|
2222
|
+
"DOC_east": {
|
|
3942
2223
|
"shape": [
|
|
3943
2224
|
12,
|
|
3944
2225
|
3,
|
|
@@ -3978,7 +2259,7 @@
|
|
|
3978
2259
|
}
|
|
3979
2260
|
],
|
|
3980
2261
|
"attributes": {
|
|
3981
|
-
"long_name": "
|
|
2262
|
+
"long_name": "eastern boundary dissolved organic carbon",
|
|
3982
2263
|
"units": "mmol/m^3",
|
|
3983
2264
|
"coordinates": "abs_time month",
|
|
3984
2265
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -3986,13 +2267,13 @@
|
|
|
3986
2267
|
"dimension_names": [
|
|
3987
2268
|
"bry_time",
|
|
3988
2269
|
"s_rho",
|
|
3989
|
-
"
|
|
2270
|
+
"eta_rho"
|
|
3990
2271
|
],
|
|
3991
2272
|
"zarr_format": 3,
|
|
3992
2273
|
"node_type": "array",
|
|
3993
2274
|
"storage_transformers": []
|
|
3994
2275
|
},
|
|
3995
|
-
"
|
|
2276
|
+
"DOC_north": {
|
|
3996
2277
|
"shape": [
|
|
3997
2278
|
12,
|
|
3998
2279
|
3,
|
|
@@ -4032,7 +2313,7 @@
|
|
|
4032
2313
|
}
|
|
4033
2314
|
],
|
|
4034
2315
|
"attributes": {
|
|
4035
|
-
"long_name": "
|
|
2316
|
+
"long_name": "northern boundary dissolved organic carbon",
|
|
4036
2317
|
"units": "mmol/m^3",
|
|
4037
2318
|
"coordinates": "abs_time month",
|
|
4038
2319
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4040,13 +2321,13 @@
|
|
|
4040
2321
|
"dimension_names": [
|
|
4041
2322
|
"bry_time",
|
|
4042
2323
|
"s_rho",
|
|
4043
|
-
"
|
|
2324
|
+
"xi_rho"
|
|
4044
2325
|
],
|
|
4045
2326
|
"zarr_format": 3,
|
|
4046
2327
|
"node_type": "array",
|
|
4047
2328
|
"storage_transformers": []
|
|
4048
2329
|
},
|
|
4049
|
-
"
|
|
2330
|
+
"DOC_south": {
|
|
4050
2331
|
"shape": [
|
|
4051
2332
|
12,
|
|
4052
2333
|
3,
|
|
@@ -4086,8 +2367,8 @@
|
|
|
4086
2367
|
}
|
|
4087
2368
|
],
|
|
4088
2369
|
"attributes": {
|
|
4089
|
-
"long_name": "southern boundary
|
|
4090
|
-
"units": "
|
|
2370
|
+
"long_name": "southern boundary dissolved organic carbon",
|
|
2371
|
+
"units": "mmol/m^3",
|
|
4091
2372
|
"coordinates": "abs_time month",
|
|
4092
2373
|
"_FillValue": "AAAAAAAA+H8="
|
|
4093
2374
|
},
|
|
@@ -4100,7 +2381,7 @@
|
|
|
4100
2381
|
"node_type": "array",
|
|
4101
2382
|
"storage_transformers": []
|
|
4102
2383
|
},
|
|
4103
|
-
"
|
|
2384
|
+
"DOCr_east": {
|
|
4104
2385
|
"shape": [
|
|
4105
2386
|
12,
|
|
4106
2387
|
3,
|
|
@@ -4140,7 +2421,7 @@
|
|
|
4140
2421
|
}
|
|
4141
2422
|
],
|
|
4142
2423
|
"attributes": {
|
|
4143
|
-
"long_name": "
|
|
2424
|
+
"long_name": "eastern boundary refractory dissolved organic carbon",
|
|
4144
2425
|
"units": "mmol/m^3",
|
|
4145
2426
|
"coordinates": "abs_time month",
|
|
4146
2427
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4148,13 +2429,13 @@
|
|
|
4148
2429
|
"dimension_names": [
|
|
4149
2430
|
"bry_time",
|
|
4150
2431
|
"s_rho",
|
|
4151
|
-
"
|
|
2432
|
+
"eta_rho"
|
|
4152
2433
|
],
|
|
4153
2434
|
"zarr_format": 3,
|
|
4154
2435
|
"node_type": "array",
|
|
4155
2436
|
"storage_transformers": []
|
|
4156
2437
|
},
|
|
4157
|
-
"
|
|
2438
|
+
"DOCr_north": {
|
|
4158
2439
|
"shape": [
|
|
4159
2440
|
12,
|
|
4160
2441
|
3,
|
|
@@ -4194,21 +2475,21 @@
|
|
|
4194
2475
|
}
|
|
4195
2476
|
],
|
|
4196
2477
|
"attributes": {
|
|
4197
|
-
"long_name": "
|
|
4198
|
-
"units": "
|
|
2478
|
+
"long_name": "northern boundary refractory dissolved organic carbon",
|
|
2479
|
+
"units": "mmol/m^3",
|
|
4199
2480
|
"coordinates": "abs_time month",
|
|
4200
2481
|
"_FillValue": "AAAAAAAA+H8="
|
|
4201
2482
|
},
|
|
4202
2483
|
"dimension_names": [
|
|
4203
2484
|
"bry_time",
|
|
4204
2485
|
"s_rho",
|
|
4205
|
-
"
|
|
2486
|
+
"xi_rho"
|
|
4206
2487
|
],
|
|
4207
2488
|
"zarr_format": 3,
|
|
4208
2489
|
"node_type": "array",
|
|
4209
2490
|
"storage_transformers": []
|
|
4210
2491
|
},
|
|
4211
|
-
"
|
|
2492
|
+
"DOCr_south": {
|
|
4212
2493
|
"shape": [
|
|
4213
2494
|
12,
|
|
4214
2495
|
3,
|
|
@@ -4248,8 +2529,8 @@
|
|
|
4248
2529
|
}
|
|
4249
2530
|
],
|
|
4250
2531
|
"attributes": {
|
|
4251
|
-
"long_name": "
|
|
4252
|
-
"units": "
|
|
2532
|
+
"long_name": "southern boundary refractory dissolved organic carbon",
|
|
2533
|
+
"units": "mmol/m^3",
|
|
4253
2534
|
"coordinates": "abs_time month",
|
|
4254
2535
|
"_FillValue": "AAAAAAAA+H8="
|
|
4255
2536
|
},
|
|
@@ -4262,7 +2543,7 @@
|
|
|
4262
2543
|
"node_type": "array",
|
|
4263
2544
|
"storage_transformers": []
|
|
4264
2545
|
},
|
|
4265
|
-
"
|
|
2546
|
+
"DON_east": {
|
|
4266
2547
|
"shape": [
|
|
4267
2548
|
12,
|
|
4268
2549
|
3,
|
|
@@ -4302,8 +2583,8 @@
|
|
|
4302
2583
|
}
|
|
4303
2584
|
],
|
|
4304
2585
|
"attributes": {
|
|
4305
|
-
"long_name": "eastern boundary
|
|
4306
|
-
"units": "
|
|
2586
|
+
"long_name": "eastern boundary dissolved organic nitrogen",
|
|
2587
|
+
"units": "mmol/m^3",
|
|
4307
2588
|
"coordinates": "abs_time month",
|
|
4308
2589
|
"_FillValue": "AAAAAAAA+H8="
|
|
4309
2590
|
},
|
|
@@ -4316,7 +2597,7 @@
|
|
|
4316
2597
|
"node_type": "array",
|
|
4317
2598
|
"storage_transformers": []
|
|
4318
2599
|
},
|
|
4319
|
-
"
|
|
2600
|
+
"DON_north": {
|
|
4320
2601
|
"shape": [
|
|
4321
2602
|
12,
|
|
4322
2603
|
3,
|
|
@@ -4356,7 +2637,7 @@
|
|
|
4356
2637
|
}
|
|
4357
2638
|
],
|
|
4358
2639
|
"attributes": {
|
|
4359
|
-
"long_name": "
|
|
2640
|
+
"long_name": "northern boundary dissolved organic nitrogen",
|
|
4360
2641
|
"units": "mmol/m^3",
|
|
4361
2642
|
"coordinates": "abs_time month",
|
|
4362
2643
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4364,13 +2645,13 @@
|
|
|
4364
2645
|
"dimension_names": [
|
|
4365
2646
|
"bry_time",
|
|
4366
2647
|
"s_rho",
|
|
4367
|
-
"
|
|
2648
|
+
"xi_rho"
|
|
4368
2649
|
],
|
|
4369
2650
|
"zarr_format": 3,
|
|
4370
2651
|
"node_type": "array",
|
|
4371
2652
|
"storage_transformers": []
|
|
4372
2653
|
},
|
|
4373
|
-
"
|
|
2654
|
+
"DON_south": {
|
|
4374
2655
|
"shape": [
|
|
4375
2656
|
12,
|
|
4376
2657
|
3,
|
|
@@ -4410,7 +2691,7 @@
|
|
|
4410
2691
|
}
|
|
4411
2692
|
],
|
|
4412
2693
|
"attributes": {
|
|
4413
|
-
"long_name": "
|
|
2694
|
+
"long_name": "southern boundary dissolved organic nitrogen",
|
|
4414
2695
|
"units": "mmol/m^3",
|
|
4415
2696
|
"coordinates": "abs_time month",
|
|
4416
2697
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4424,7 +2705,7 @@
|
|
|
4424
2705
|
"node_type": "array",
|
|
4425
2706
|
"storage_transformers": []
|
|
4426
2707
|
},
|
|
4427
|
-
"
|
|
2708
|
+
"DONr_east": {
|
|
4428
2709
|
"shape": [
|
|
4429
2710
|
12,
|
|
4430
2711
|
3,
|
|
@@ -4464,7 +2745,7 @@
|
|
|
4464
2745
|
}
|
|
4465
2746
|
],
|
|
4466
2747
|
"attributes": {
|
|
4467
|
-
"long_name": "
|
|
2748
|
+
"long_name": "eastern boundary refractory dissolved organic nitrogen",
|
|
4468
2749
|
"units": "mmol/m^3",
|
|
4469
2750
|
"coordinates": "abs_time month",
|
|
4470
2751
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4472,13 +2753,13 @@
|
|
|
4472
2753
|
"dimension_names": [
|
|
4473
2754
|
"bry_time",
|
|
4474
2755
|
"s_rho",
|
|
4475
|
-
"
|
|
2756
|
+
"eta_rho"
|
|
4476
2757
|
],
|
|
4477
2758
|
"zarr_format": 3,
|
|
4478
2759
|
"node_type": "array",
|
|
4479
2760
|
"storage_transformers": []
|
|
4480
2761
|
},
|
|
4481
|
-
"
|
|
2762
|
+
"DONr_north": {
|
|
4482
2763
|
"shape": [
|
|
4483
2764
|
12,
|
|
4484
2765
|
3,
|
|
@@ -4518,21 +2799,21 @@
|
|
|
4518
2799
|
}
|
|
4519
2800
|
],
|
|
4520
2801
|
"attributes": {
|
|
4521
|
-
"long_name": "
|
|
4522
|
-
"units": "
|
|
2802
|
+
"long_name": "northern boundary refractory dissolved organic nitrogen",
|
|
2803
|
+
"units": "mmol/m^3",
|
|
4523
2804
|
"coordinates": "abs_time month",
|
|
4524
2805
|
"_FillValue": "AAAAAAAA+H8="
|
|
4525
2806
|
},
|
|
4526
2807
|
"dimension_names": [
|
|
4527
2808
|
"bry_time",
|
|
4528
2809
|
"s_rho",
|
|
4529
|
-
"
|
|
2810
|
+
"xi_rho"
|
|
4530
2811
|
],
|
|
4531
2812
|
"zarr_format": 3,
|
|
4532
2813
|
"node_type": "array",
|
|
4533
2814
|
"storage_transformers": []
|
|
4534
2815
|
},
|
|
4535
|
-
"
|
|
2816
|
+
"DONr_south": {
|
|
4536
2817
|
"shape": [
|
|
4537
2818
|
12,
|
|
4538
2819
|
3,
|
|
@@ -4572,7 +2853,7 @@
|
|
|
4572
2853
|
}
|
|
4573
2854
|
],
|
|
4574
2855
|
"attributes": {
|
|
4575
|
-
"long_name": "southern boundary
|
|
2856
|
+
"long_name": "southern boundary refractory dissolved organic nitrogen",
|
|
4576
2857
|
"units": "mmol/m^3",
|
|
4577
2858
|
"coordinates": "abs_time month",
|
|
4578
2859
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4586,7 +2867,7 @@
|
|
|
4586
2867
|
"node_type": "array",
|
|
4587
2868
|
"storage_transformers": []
|
|
4588
2869
|
},
|
|
4589
|
-
"
|
|
2870
|
+
"DOP_east": {
|
|
4590
2871
|
"shape": [
|
|
4591
2872
|
12,
|
|
4592
2873
|
3,
|
|
@@ -4626,7 +2907,7 @@
|
|
|
4626
2907
|
}
|
|
4627
2908
|
],
|
|
4628
2909
|
"attributes": {
|
|
4629
|
-
"long_name": "
|
|
2910
|
+
"long_name": "eastern boundary dissolved organic phosphorus",
|
|
4630
2911
|
"units": "mmol/m^3",
|
|
4631
2912
|
"coordinates": "abs_time month",
|
|
4632
2913
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4634,13 +2915,13 @@
|
|
|
4634
2915
|
"dimension_names": [
|
|
4635
2916
|
"bry_time",
|
|
4636
2917
|
"s_rho",
|
|
4637
|
-
"
|
|
2918
|
+
"eta_rho"
|
|
4638
2919
|
],
|
|
4639
2920
|
"zarr_format": 3,
|
|
4640
2921
|
"node_type": "array",
|
|
4641
2922
|
"storage_transformers": []
|
|
4642
2923
|
},
|
|
4643
|
-
"
|
|
2924
|
+
"DOP_north": {
|
|
4644
2925
|
"shape": [
|
|
4645
2926
|
12,
|
|
4646
2927
|
3,
|
|
@@ -4680,7 +2961,7 @@
|
|
|
4680
2961
|
}
|
|
4681
2962
|
],
|
|
4682
2963
|
"attributes": {
|
|
4683
|
-
"long_name": "
|
|
2964
|
+
"long_name": "northern boundary dissolved organic phosphorus",
|
|
4684
2965
|
"units": "mmol/m^3",
|
|
4685
2966
|
"coordinates": "abs_time month",
|
|
4686
2967
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4688,13 +2969,13 @@
|
|
|
4688
2969
|
"dimension_names": [
|
|
4689
2970
|
"bry_time",
|
|
4690
2971
|
"s_rho",
|
|
4691
|
-
"
|
|
2972
|
+
"xi_rho"
|
|
4692
2973
|
],
|
|
4693
2974
|
"zarr_format": 3,
|
|
4694
2975
|
"node_type": "array",
|
|
4695
2976
|
"storage_transformers": []
|
|
4696
2977
|
},
|
|
4697
|
-
"
|
|
2978
|
+
"DOP_south": {
|
|
4698
2979
|
"shape": [
|
|
4699
2980
|
12,
|
|
4700
2981
|
3,
|
|
@@ -4734,8 +3015,8 @@
|
|
|
4734
3015
|
}
|
|
4735
3016
|
],
|
|
4736
3017
|
"attributes": {
|
|
4737
|
-
"long_name": "southern boundary
|
|
4738
|
-
"units": "
|
|
3018
|
+
"long_name": "southern boundary dissolved organic phosphorus",
|
|
3019
|
+
"units": "mmol/m^3",
|
|
4739
3020
|
"coordinates": "abs_time month",
|
|
4740
3021
|
"_FillValue": "AAAAAAAA+H8="
|
|
4741
3022
|
},
|
|
@@ -4748,7 +3029,7 @@
|
|
|
4748
3029
|
"node_type": "array",
|
|
4749
3030
|
"storage_transformers": []
|
|
4750
3031
|
},
|
|
4751
|
-
"
|
|
3032
|
+
"DOPr_east": {
|
|
4752
3033
|
"shape": [
|
|
4753
3034
|
12,
|
|
4754
3035
|
3,
|
|
@@ -4788,7 +3069,7 @@
|
|
|
4788
3069
|
}
|
|
4789
3070
|
],
|
|
4790
3071
|
"attributes": {
|
|
4791
|
-
"long_name": "
|
|
3072
|
+
"long_name": "eastern boundary refractory dissolved organic phosphorus",
|
|
4792
3073
|
"units": "mmol/m^3",
|
|
4793
3074
|
"coordinates": "abs_time month",
|
|
4794
3075
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4802,7 +3083,7 @@
|
|
|
4802
3083
|
"node_type": "array",
|
|
4803
3084
|
"storage_transformers": []
|
|
4804
3085
|
},
|
|
4805
|
-
"
|
|
3086
|
+
"DOPr_north": {
|
|
4806
3087
|
"shape": [
|
|
4807
3088
|
12,
|
|
4808
3089
|
3,
|
|
@@ -4842,7 +3123,7 @@
|
|
|
4842
3123
|
}
|
|
4843
3124
|
],
|
|
4844
3125
|
"attributes": {
|
|
4845
|
-
"long_name": "
|
|
3126
|
+
"long_name": "northern boundary refractory dissolved organic phosphorus",
|
|
4846
3127
|
"units": "mmol/m^3",
|
|
4847
3128
|
"coordinates": "abs_time month",
|
|
4848
3129
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4850,13 +3131,13 @@
|
|
|
4850
3131
|
"dimension_names": [
|
|
4851
3132
|
"bry_time",
|
|
4852
3133
|
"s_rho",
|
|
4853
|
-
"
|
|
3134
|
+
"xi_rho"
|
|
4854
3135
|
],
|
|
4855
3136
|
"zarr_format": 3,
|
|
4856
3137
|
"node_type": "array",
|
|
4857
3138
|
"storage_transformers": []
|
|
4858
3139
|
},
|
|
4859
|
-
"
|
|
3140
|
+
"DOPr_south": {
|
|
4860
3141
|
"shape": [
|
|
4861
3142
|
12,
|
|
4862
3143
|
3,
|
|
@@ -4896,7 +3177,7 @@
|
|
|
4896
3177
|
}
|
|
4897
3178
|
],
|
|
4898
3179
|
"attributes": {
|
|
4899
|
-
"long_name": "
|
|
3180
|
+
"long_name": "southern boundary refractory dissolved organic phosphorus",
|
|
4900
3181
|
"units": "mmol/m^3",
|
|
4901
3182
|
"coordinates": "abs_time month",
|
|
4902
3183
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4910,7 +3191,7 @@
|
|
|
4910
3191
|
"node_type": "array",
|
|
4911
3192
|
"storage_transformers": []
|
|
4912
3193
|
},
|
|
4913
|
-
"
|
|
3194
|
+
"Fe_east": {
|
|
4914
3195
|
"shape": [
|
|
4915
3196
|
12,
|
|
4916
3197
|
3,
|
|
@@ -4950,7 +3231,7 @@
|
|
|
4950
3231
|
}
|
|
4951
3232
|
],
|
|
4952
3233
|
"attributes": {
|
|
4953
|
-
"long_name": "eastern boundary dissolved
|
|
3234
|
+
"long_name": "eastern boundary dissolved inorganic iron",
|
|
4954
3235
|
"units": "mmol/m^3",
|
|
4955
3236
|
"coordinates": "abs_time month",
|
|
4956
3237
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -4964,7 +3245,7 @@
|
|
|
4964
3245
|
"node_type": "array",
|
|
4965
3246
|
"storage_transformers": []
|
|
4966
3247
|
},
|
|
4967
|
-
"
|
|
3248
|
+
"Fe_north": {
|
|
4968
3249
|
"shape": [
|
|
4969
3250
|
12,
|
|
4970
3251
|
3,
|
|
@@ -5004,7 +3285,7 @@
|
|
|
5004
3285
|
}
|
|
5005
3286
|
],
|
|
5006
3287
|
"attributes": {
|
|
5007
|
-
"long_name": "
|
|
3288
|
+
"long_name": "northern boundary dissolved inorganic iron",
|
|
5008
3289
|
"units": "mmol/m^3",
|
|
5009
3290
|
"coordinates": "abs_time month",
|
|
5010
3291
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5012,13 +3293,13 @@
|
|
|
5012
3293
|
"dimension_names": [
|
|
5013
3294
|
"bry_time",
|
|
5014
3295
|
"s_rho",
|
|
5015
|
-
"
|
|
3296
|
+
"xi_rho"
|
|
5016
3297
|
],
|
|
5017
3298
|
"zarr_format": 3,
|
|
5018
3299
|
"node_type": "array",
|
|
5019
3300
|
"storage_transformers": []
|
|
5020
3301
|
},
|
|
5021
|
-
"
|
|
3302
|
+
"Fe_south": {
|
|
5022
3303
|
"shape": [
|
|
5023
3304
|
12,
|
|
5024
3305
|
3,
|
|
@@ -5058,8 +3339,8 @@
|
|
|
5058
3339
|
}
|
|
5059
3340
|
],
|
|
5060
3341
|
"attributes": {
|
|
5061
|
-
"long_name": "southern boundary
|
|
5062
|
-
"units": "
|
|
3342
|
+
"long_name": "southern boundary dissolved inorganic iron",
|
|
3343
|
+
"units": "mmol/m^3",
|
|
5063
3344
|
"coordinates": "abs_time month",
|
|
5064
3345
|
"_FillValue": "AAAAAAAA+H8="
|
|
5065
3346
|
},
|
|
@@ -5072,7 +3353,7 @@
|
|
|
5072
3353
|
"node_type": "array",
|
|
5073
3354
|
"storage_transformers": []
|
|
5074
3355
|
},
|
|
5075
|
-
"
|
|
3356
|
+
"Lig_east": {
|
|
5076
3357
|
"shape": [
|
|
5077
3358
|
12,
|
|
5078
3359
|
3,
|
|
@@ -5112,7 +3393,7 @@
|
|
|
5112
3393
|
}
|
|
5113
3394
|
],
|
|
5114
3395
|
"attributes": {
|
|
5115
|
-
"long_name": "
|
|
3396
|
+
"long_name": "eastern boundary iron binding ligand",
|
|
5116
3397
|
"units": "mmol/m^3",
|
|
5117
3398
|
"coordinates": "abs_time month",
|
|
5118
3399
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5126,7 +3407,7 @@
|
|
|
5126
3407
|
"node_type": "array",
|
|
5127
3408
|
"storage_transformers": []
|
|
5128
3409
|
},
|
|
5129
|
-
"
|
|
3410
|
+
"Lig_north": {
|
|
5130
3411
|
"shape": [
|
|
5131
3412
|
12,
|
|
5132
3413
|
3,
|
|
@@ -5166,7 +3447,7 @@
|
|
|
5166
3447
|
}
|
|
5167
3448
|
],
|
|
5168
3449
|
"attributes": {
|
|
5169
|
-
"long_name": "
|
|
3450
|
+
"long_name": "northern boundary iron binding ligand",
|
|
5170
3451
|
"units": "mmol/m^3",
|
|
5171
3452
|
"coordinates": "abs_time month",
|
|
5172
3453
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5174,13 +3455,13 @@
|
|
|
5174
3455
|
"dimension_names": [
|
|
5175
3456
|
"bry_time",
|
|
5176
3457
|
"s_rho",
|
|
5177
|
-
"
|
|
3458
|
+
"xi_rho"
|
|
5178
3459
|
],
|
|
5179
3460
|
"zarr_format": 3,
|
|
5180
3461
|
"node_type": "array",
|
|
5181
3462
|
"storage_transformers": []
|
|
5182
3463
|
},
|
|
5183
|
-
"
|
|
3464
|
+
"Lig_south": {
|
|
5184
3465
|
"shape": [
|
|
5185
3466
|
12,
|
|
5186
3467
|
3,
|
|
@@ -5220,7 +3501,7 @@
|
|
|
5220
3501
|
}
|
|
5221
3502
|
],
|
|
5222
3503
|
"attributes": {
|
|
5223
|
-
"long_name": "southern boundary
|
|
3504
|
+
"long_name": "southern boundary iron binding ligand",
|
|
5224
3505
|
"units": "mmol/m^3",
|
|
5225
3506
|
"coordinates": "abs_time month",
|
|
5226
3507
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5234,20 +3515,16 @@
|
|
|
5234
3515
|
"node_type": "array",
|
|
5235
3516
|
"storage_transformers": []
|
|
5236
3517
|
},
|
|
5237
|
-
"
|
|
3518
|
+
"month": {
|
|
5238
3519
|
"shape": [
|
|
5239
|
-
12
|
|
5240
|
-
3,
|
|
5241
|
-
4
|
|
3520
|
+
12
|
|
5242
3521
|
],
|
|
5243
|
-
"data_type": "
|
|
3522
|
+
"data_type": "int64",
|
|
5244
3523
|
"chunk_grid": {
|
|
5245
3524
|
"name": "regular",
|
|
5246
3525
|
"configuration": {
|
|
5247
3526
|
"chunk_shape": [
|
|
5248
|
-
12
|
|
5249
|
-
3,
|
|
5250
|
-
4
|
|
3527
|
+
12
|
|
5251
3528
|
]
|
|
5252
3529
|
}
|
|
5253
3530
|
},
|
|
@@ -5257,7 +3534,7 @@
|
|
|
5257
3534
|
"separator": "/"
|
|
5258
3535
|
}
|
|
5259
3536
|
},
|
|
5260
|
-
"fill_value": 0
|
|
3537
|
+
"fill_value": 0,
|
|
5261
3538
|
"codecs": [
|
|
5262
3539
|
{
|
|
5263
3540
|
"name": "bytes",
|
|
@@ -5274,21 +3551,16 @@
|
|
|
5274
3551
|
}
|
|
5275
3552
|
],
|
|
5276
3553
|
"attributes": {
|
|
5277
|
-
"long_name": "
|
|
5278
|
-
"units": "mmol/m^3",
|
|
5279
|
-
"coordinates": "abs_time month",
|
|
5280
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
3554
|
+
"long_name": "Month index (1-12)"
|
|
5281
3555
|
},
|
|
5282
3556
|
"dimension_names": [
|
|
5283
|
-
"bry_time"
|
|
5284
|
-
"s_rho",
|
|
5285
|
-
"eta_rho"
|
|
3557
|
+
"bry_time"
|
|
5286
3558
|
],
|
|
5287
3559
|
"zarr_format": 3,
|
|
5288
3560
|
"node_type": "array",
|
|
5289
3561
|
"storage_transformers": []
|
|
5290
3562
|
},
|
|
5291
|
-
"
|
|
3563
|
+
"NH4_east": {
|
|
5292
3564
|
"shape": [
|
|
5293
3565
|
12,
|
|
5294
3566
|
3,
|
|
@@ -5328,7 +3600,7 @@
|
|
|
5328
3600
|
}
|
|
5329
3601
|
],
|
|
5330
3602
|
"attributes": {
|
|
5331
|
-
"long_name": "
|
|
3603
|
+
"long_name": "eastern boundary dissolved ammonia",
|
|
5332
3604
|
"units": "mmol/m^3",
|
|
5333
3605
|
"coordinates": "abs_time month",
|
|
5334
3606
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5336,13 +3608,13 @@
|
|
|
5336
3608
|
"dimension_names": [
|
|
5337
3609
|
"bry_time",
|
|
5338
3610
|
"s_rho",
|
|
5339
|
-
"
|
|
3611
|
+
"eta_rho"
|
|
5340
3612
|
],
|
|
5341
3613
|
"zarr_format": 3,
|
|
5342
3614
|
"node_type": "array",
|
|
5343
3615
|
"storage_transformers": []
|
|
5344
3616
|
},
|
|
5345
|
-
"
|
|
3617
|
+
"NH4_north": {
|
|
5346
3618
|
"shape": [
|
|
5347
3619
|
12,
|
|
5348
3620
|
3,
|
|
@@ -5382,7 +3654,7 @@
|
|
|
5382
3654
|
}
|
|
5383
3655
|
],
|
|
5384
3656
|
"attributes": {
|
|
5385
|
-
"long_name": "
|
|
3657
|
+
"long_name": "northern boundary dissolved ammonia",
|
|
5386
3658
|
"units": "mmol/m^3",
|
|
5387
3659
|
"coordinates": "abs_time month",
|
|
5388
3660
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5396,7 +3668,7 @@
|
|
|
5396
3668
|
"node_type": "array",
|
|
5397
3669
|
"storage_transformers": []
|
|
5398
3670
|
},
|
|
5399
|
-
"
|
|
3671
|
+
"NH4_south": {
|
|
5400
3672
|
"shape": [
|
|
5401
3673
|
12,
|
|
5402
3674
|
3,
|
|
@@ -5436,21 +3708,21 @@
|
|
|
5436
3708
|
}
|
|
5437
3709
|
],
|
|
5438
3710
|
"attributes": {
|
|
5439
|
-
"long_name": "
|
|
5440
|
-
"units": "
|
|
3711
|
+
"long_name": "southern boundary dissolved ammonia",
|
|
3712
|
+
"units": "mmol/m^3",
|
|
5441
3713
|
"coordinates": "abs_time month",
|
|
5442
3714
|
"_FillValue": "AAAAAAAA+H8="
|
|
5443
3715
|
},
|
|
5444
3716
|
"dimension_names": [
|
|
5445
3717
|
"bry_time",
|
|
5446
3718
|
"s_rho",
|
|
5447
|
-
"
|
|
3719
|
+
"xi_rho"
|
|
5448
3720
|
],
|
|
5449
3721
|
"zarr_format": 3,
|
|
5450
3722
|
"node_type": "array",
|
|
5451
3723
|
"storage_transformers": []
|
|
5452
3724
|
},
|
|
5453
|
-
"
|
|
3725
|
+
"NO3_east": {
|
|
5454
3726
|
"shape": [
|
|
5455
3727
|
12,
|
|
5456
3728
|
3,
|
|
@@ -5490,7 +3762,7 @@
|
|
|
5490
3762
|
}
|
|
5491
3763
|
],
|
|
5492
3764
|
"attributes": {
|
|
5493
|
-
"long_name": "
|
|
3765
|
+
"long_name": "eastern boundary dissolved inorganic nitrate",
|
|
5494
3766
|
"units": "mmol/m^3",
|
|
5495
3767
|
"coordinates": "abs_time month",
|
|
5496
3768
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5498,13 +3770,13 @@
|
|
|
5498
3770
|
"dimension_names": [
|
|
5499
3771
|
"bry_time",
|
|
5500
3772
|
"s_rho",
|
|
5501
|
-
"
|
|
3773
|
+
"eta_rho"
|
|
5502
3774
|
],
|
|
5503
3775
|
"zarr_format": 3,
|
|
5504
3776
|
"node_type": "array",
|
|
5505
3777
|
"storage_transformers": []
|
|
5506
3778
|
},
|
|
5507
|
-
"
|
|
3779
|
+
"NO3_north": {
|
|
5508
3780
|
"shape": [
|
|
5509
3781
|
12,
|
|
5510
3782
|
3,
|
|
@@ -5544,7 +3816,7 @@
|
|
|
5544
3816
|
}
|
|
5545
3817
|
],
|
|
5546
3818
|
"attributes": {
|
|
5547
|
-
"long_name": "
|
|
3819
|
+
"long_name": "northern boundary dissolved inorganic nitrate",
|
|
5548
3820
|
"units": "mmol/m^3",
|
|
5549
3821
|
"coordinates": "abs_time month",
|
|
5550
3822
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5558,7 +3830,7 @@
|
|
|
5558
3830
|
"node_type": "array",
|
|
5559
3831
|
"storage_transformers": []
|
|
5560
3832
|
},
|
|
5561
|
-
"
|
|
3833
|
+
"NO3_south": {
|
|
5562
3834
|
"shape": [
|
|
5563
3835
|
12,
|
|
5564
3836
|
3,
|
|
@@ -5598,7 +3870,7 @@
|
|
|
5598
3870
|
}
|
|
5599
3871
|
],
|
|
5600
3872
|
"attributes": {
|
|
5601
|
-
"long_name": "southern boundary
|
|
3873
|
+
"long_name": "southern boundary dissolved inorganic nitrate",
|
|
5602
3874
|
"units": "mmol/m^3",
|
|
5603
3875
|
"coordinates": "abs_time month",
|
|
5604
3876
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5612,7 +3884,7 @@
|
|
|
5612
3884
|
"node_type": "array",
|
|
5613
3885
|
"storage_transformers": []
|
|
5614
3886
|
},
|
|
5615
|
-
"
|
|
3887
|
+
"O2_east": {
|
|
5616
3888
|
"shape": [
|
|
5617
3889
|
12,
|
|
5618
3890
|
3,
|
|
@@ -5652,7 +3924,7 @@
|
|
|
5652
3924
|
}
|
|
5653
3925
|
],
|
|
5654
3926
|
"attributes": {
|
|
5655
|
-
"long_name": "eastern boundary dissolved
|
|
3927
|
+
"long_name": "eastern boundary dissolved oxygen",
|
|
5656
3928
|
"units": "mmol/m^3",
|
|
5657
3929
|
"coordinates": "abs_time month",
|
|
5658
3930
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5666,7 +3938,7 @@
|
|
|
5666
3938
|
"node_type": "array",
|
|
5667
3939
|
"storage_transformers": []
|
|
5668
3940
|
},
|
|
5669
|
-
"
|
|
3941
|
+
"O2_north": {
|
|
5670
3942
|
"shape": [
|
|
5671
3943
|
12,
|
|
5672
3944
|
3,
|
|
@@ -5706,7 +3978,7 @@
|
|
|
5706
3978
|
}
|
|
5707
3979
|
],
|
|
5708
3980
|
"attributes": {
|
|
5709
|
-
"long_name": "
|
|
3981
|
+
"long_name": "northern boundary dissolved oxygen",
|
|
5710
3982
|
"units": "mmol/m^3",
|
|
5711
3983
|
"coordinates": "abs_time month",
|
|
5712
3984
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5714,13 +3986,13 @@
|
|
|
5714
3986
|
"dimension_names": [
|
|
5715
3987
|
"bry_time",
|
|
5716
3988
|
"s_rho",
|
|
5717
|
-
"
|
|
3989
|
+
"xi_rho"
|
|
5718
3990
|
],
|
|
5719
3991
|
"zarr_format": 3,
|
|
5720
3992
|
"node_type": "array",
|
|
5721
3993
|
"storage_transformers": []
|
|
5722
3994
|
},
|
|
5723
|
-
"
|
|
3995
|
+
"O2_south": {
|
|
5724
3996
|
"shape": [
|
|
5725
3997
|
12,
|
|
5726
3998
|
3,
|
|
@@ -5760,7 +4032,7 @@
|
|
|
5760
4032
|
}
|
|
5761
4033
|
],
|
|
5762
4034
|
"attributes": {
|
|
5763
|
-
"long_name": "
|
|
4035
|
+
"long_name": "southern boundary dissolved oxygen",
|
|
5764
4036
|
"units": "mmol/m^3",
|
|
5765
4037
|
"coordinates": "abs_time month",
|
|
5766
4038
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5768,13 +4040,13 @@
|
|
|
5768
4040
|
"dimension_names": [
|
|
5769
4041
|
"bry_time",
|
|
5770
4042
|
"s_rho",
|
|
5771
|
-
"
|
|
4043
|
+
"xi_rho"
|
|
5772
4044
|
],
|
|
5773
4045
|
"zarr_format": 3,
|
|
5774
4046
|
"node_type": "array",
|
|
5775
4047
|
"storage_transformers": []
|
|
5776
4048
|
},
|
|
5777
|
-
"
|
|
4049
|
+
"PO4_east": {
|
|
5778
4050
|
"shape": [
|
|
5779
4051
|
12,
|
|
5780
4052
|
3,
|
|
@@ -5814,7 +4086,7 @@
|
|
|
5814
4086
|
}
|
|
5815
4087
|
],
|
|
5816
4088
|
"attributes": {
|
|
5817
|
-
"long_name": "
|
|
4089
|
+
"long_name": "eastern boundary dissolved inorganic phosphate",
|
|
5818
4090
|
"units": "mmol/m^3",
|
|
5819
4091
|
"coordinates": "abs_time month",
|
|
5820
4092
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5828,7 +4100,7 @@
|
|
|
5828
4100
|
"node_type": "array",
|
|
5829
4101
|
"storage_transformers": []
|
|
5830
4102
|
},
|
|
5831
|
-
"
|
|
4103
|
+
"PO4_north": {
|
|
5832
4104
|
"shape": [
|
|
5833
4105
|
12,
|
|
5834
4106
|
3,
|
|
@@ -5868,7 +4140,7 @@
|
|
|
5868
4140
|
}
|
|
5869
4141
|
],
|
|
5870
4142
|
"attributes": {
|
|
5871
|
-
"long_name": "
|
|
4143
|
+
"long_name": "northern boundary dissolved inorganic phosphate",
|
|
5872
4144
|
"units": "mmol/m^3",
|
|
5873
4145
|
"coordinates": "abs_time month",
|
|
5874
4146
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5882,7 +4154,7 @@
|
|
|
5882
4154
|
"node_type": "array",
|
|
5883
4155
|
"storage_transformers": []
|
|
5884
4156
|
},
|
|
5885
|
-
"
|
|
4157
|
+
"PO4_south": {
|
|
5886
4158
|
"shape": [
|
|
5887
4159
|
12,
|
|
5888
4160
|
3,
|
|
@@ -5922,7 +4194,7 @@
|
|
|
5922
4194
|
}
|
|
5923
4195
|
],
|
|
5924
4196
|
"attributes": {
|
|
5925
|
-
"long_name": "
|
|
4197
|
+
"long_name": "southern boundary dissolved inorganic phosphate",
|
|
5926
4198
|
"units": "mmol/m^3",
|
|
5927
4199
|
"coordinates": "abs_time month",
|
|
5928
4200
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5930,13 +4202,13 @@
|
|
|
5930
4202
|
"dimension_names": [
|
|
5931
4203
|
"bry_time",
|
|
5932
4204
|
"s_rho",
|
|
5933
|
-
"
|
|
4205
|
+
"xi_rho"
|
|
5934
4206
|
],
|
|
5935
4207
|
"zarr_format": 3,
|
|
5936
4208
|
"node_type": "array",
|
|
5937
4209
|
"storage_transformers": []
|
|
5938
4210
|
},
|
|
5939
|
-
"
|
|
4211
|
+
"SiO3_east": {
|
|
5940
4212
|
"shape": [
|
|
5941
4213
|
12,
|
|
5942
4214
|
3,
|
|
@@ -5976,7 +4248,7 @@
|
|
|
5976
4248
|
}
|
|
5977
4249
|
],
|
|
5978
4250
|
"attributes": {
|
|
5979
|
-
"long_name": "
|
|
4251
|
+
"long_name": "eastern boundary dissolved inorganic silicate",
|
|
5980
4252
|
"units": "mmol/m^3",
|
|
5981
4253
|
"coordinates": "abs_time month",
|
|
5982
4254
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -5984,13 +4256,13 @@
|
|
|
5984
4256
|
"dimension_names": [
|
|
5985
4257
|
"bry_time",
|
|
5986
4258
|
"s_rho",
|
|
5987
|
-
"
|
|
4259
|
+
"eta_rho"
|
|
5988
4260
|
],
|
|
5989
4261
|
"zarr_format": 3,
|
|
5990
4262
|
"node_type": "array",
|
|
5991
4263
|
"storage_transformers": []
|
|
5992
4264
|
},
|
|
5993
|
-
"
|
|
4265
|
+
"SiO3_north": {
|
|
5994
4266
|
"shape": [
|
|
5995
4267
|
12,
|
|
5996
4268
|
3,
|
|
@@ -6030,7 +4302,7 @@
|
|
|
6030
4302
|
}
|
|
6031
4303
|
],
|
|
6032
4304
|
"attributes": {
|
|
6033
|
-
"long_name": "
|
|
4305
|
+
"long_name": "northern boundary dissolved inorganic silicate",
|
|
6034
4306
|
"units": "mmol/m^3",
|
|
6035
4307
|
"coordinates": "abs_time month",
|
|
6036
4308
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6038,13 +4310,13 @@
|
|
|
6038
4310
|
"dimension_names": [
|
|
6039
4311
|
"bry_time",
|
|
6040
4312
|
"s_rho",
|
|
6041
|
-
"
|
|
4313
|
+
"xi_rho"
|
|
6042
4314
|
],
|
|
6043
4315
|
"zarr_format": 3,
|
|
6044
4316
|
"node_type": "array",
|
|
6045
4317
|
"storage_transformers": []
|
|
6046
4318
|
},
|
|
6047
|
-
"
|
|
4319
|
+
"SiO3_south": {
|
|
6048
4320
|
"shape": [
|
|
6049
4321
|
12,
|
|
6050
4322
|
3,
|
|
@@ -6084,7 +4356,7 @@
|
|
|
6084
4356
|
}
|
|
6085
4357
|
],
|
|
6086
4358
|
"attributes": {
|
|
6087
|
-
"long_name": "southern boundary
|
|
4359
|
+
"long_name": "southern boundary dissolved inorganic silicate",
|
|
6088
4360
|
"units": "mmol/m^3",
|
|
6089
4361
|
"coordinates": "abs_time month",
|
|
6090
4362
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6098,7 +4370,7 @@
|
|
|
6098
4370
|
"node_type": "array",
|
|
6099
4371
|
"storage_transformers": []
|
|
6100
4372
|
},
|
|
6101
|
-
"
|
|
4373
|
+
"spC_east": {
|
|
6102
4374
|
"shape": [
|
|
6103
4375
|
12,
|
|
6104
4376
|
3,
|
|
@@ -6138,7 +4410,7 @@
|
|
|
6138
4410
|
}
|
|
6139
4411
|
],
|
|
6140
4412
|
"attributes": {
|
|
6141
|
-
"long_name": "
|
|
4413
|
+
"long_name": "eastern boundary small phytoplankton carbon",
|
|
6142
4414
|
"units": "mmol/m^3",
|
|
6143
4415
|
"coordinates": "abs_time month",
|
|
6144
4416
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6146,13 +4418,13 @@
|
|
|
6146
4418
|
"dimension_names": [
|
|
6147
4419
|
"bry_time",
|
|
6148
4420
|
"s_rho",
|
|
6149
|
-
"
|
|
4421
|
+
"eta_rho"
|
|
6150
4422
|
],
|
|
6151
4423
|
"zarr_format": 3,
|
|
6152
4424
|
"node_type": "array",
|
|
6153
4425
|
"storage_transformers": []
|
|
6154
4426
|
},
|
|
6155
|
-
"
|
|
4427
|
+
"spC_north": {
|
|
6156
4428
|
"shape": [
|
|
6157
4429
|
12,
|
|
6158
4430
|
3,
|
|
@@ -6192,7 +4464,7 @@
|
|
|
6192
4464
|
}
|
|
6193
4465
|
],
|
|
6194
4466
|
"attributes": {
|
|
6195
|
-
"long_name": "
|
|
4467
|
+
"long_name": "northern boundary small phytoplankton carbon",
|
|
6196
4468
|
"units": "mmol/m^3",
|
|
6197
4469
|
"coordinates": "abs_time month",
|
|
6198
4470
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6200,13 +4472,13 @@
|
|
|
6200
4472
|
"dimension_names": [
|
|
6201
4473
|
"bry_time",
|
|
6202
4474
|
"s_rho",
|
|
6203
|
-
"
|
|
4475
|
+
"xi_rho"
|
|
6204
4476
|
],
|
|
6205
4477
|
"zarr_format": 3,
|
|
6206
4478
|
"node_type": "array",
|
|
6207
4479
|
"storage_transformers": []
|
|
6208
4480
|
},
|
|
6209
|
-
"
|
|
4481
|
+
"spC_south": {
|
|
6210
4482
|
"shape": [
|
|
6211
4483
|
12,
|
|
6212
4484
|
3,
|
|
@@ -6246,7 +4518,7 @@
|
|
|
6246
4518
|
}
|
|
6247
4519
|
],
|
|
6248
4520
|
"attributes": {
|
|
6249
|
-
"long_name": "
|
|
4521
|
+
"long_name": "southern boundary small phytoplankton carbon",
|
|
6250
4522
|
"units": "mmol/m^3",
|
|
6251
4523
|
"coordinates": "abs_time month",
|
|
6252
4524
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6254,13 +4526,13 @@
|
|
|
6254
4526
|
"dimension_names": [
|
|
6255
4527
|
"bry_time",
|
|
6256
4528
|
"s_rho",
|
|
6257
|
-
"
|
|
4529
|
+
"xi_rho"
|
|
6258
4530
|
],
|
|
6259
4531
|
"zarr_format": 3,
|
|
6260
4532
|
"node_type": "array",
|
|
6261
4533
|
"storage_transformers": []
|
|
6262
4534
|
},
|
|
6263
|
-
"
|
|
4535
|
+
"spCaCO3_east": {
|
|
6264
4536
|
"shape": [
|
|
6265
4537
|
12,
|
|
6266
4538
|
3,
|
|
@@ -6300,7 +4572,7 @@
|
|
|
6300
4572
|
}
|
|
6301
4573
|
],
|
|
6302
4574
|
"attributes": {
|
|
6303
|
-
"long_name": "
|
|
4575
|
+
"long_name": "eastern boundary small phytoplankton CaCO3",
|
|
6304
4576
|
"units": "mmol/m^3",
|
|
6305
4577
|
"coordinates": "abs_time month",
|
|
6306
4578
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6314,7 +4586,7 @@
|
|
|
6314
4586
|
"node_type": "array",
|
|
6315
4587
|
"storage_transformers": []
|
|
6316
4588
|
},
|
|
6317
|
-
"
|
|
4589
|
+
"spCaCO3_north": {
|
|
6318
4590
|
"shape": [
|
|
6319
4591
|
12,
|
|
6320
4592
|
3,
|
|
@@ -6354,7 +4626,7 @@
|
|
|
6354
4626
|
}
|
|
6355
4627
|
],
|
|
6356
4628
|
"attributes": {
|
|
6357
|
-
"long_name": "
|
|
4629
|
+
"long_name": "northern boundary small phytoplankton CaCO3",
|
|
6358
4630
|
"units": "mmol/m^3",
|
|
6359
4631
|
"coordinates": "abs_time month",
|
|
6360
4632
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6368,7 +4640,7 @@
|
|
|
6368
4640
|
"node_type": "array",
|
|
6369
4641
|
"storage_transformers": []
|
|
6370
4642
|
},
|
|
6371
|
-
"
|
|
4643
|
+
"spCaCO3_south": {
|
|
6372
4644
|
"shape": [
|
|
6373
4645
|
12,
|
|
6374
4646
|
3,
|
|
@@ -6408,7 +4680,7 @@
|
|
|
6408
4680
|
}
|
|
6409
4681
|
],
|
|
6410
4682
|
"attributes": {
|
|
6411
|
-
"long_name": "
|
|
4683
|
+
"long_name": "southern boundary small phytoplankton CaCO3",
|
|
6412
4684
|
"units": "mmol/m^3",
|
|
6413
4685
|
"coordinates": "abs_time month",
|
|
6414
4686
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6416,13 +4688,13 @@
|
|
|
6416
4688
|
"dimension_names": [
|
|
6417
4689
|
"bry_time",
|
|
6418
4690
|
"s_rho",
|
|
6419
|
-
"
|
|
4691
|
+
"xi_rho"
|
|
6420
4692
|
],
|
|
6421
4693
|
"zarr_format": 3,
|
|
6422
4694
|
"node_type": "array",
|
|
6423
4695
|
"storage_transformers": []
|
|
6424
4696
|
},
|
|
6425
|
-
"
|
|
4697
|
+
"spChl_east": {
|
|
6426
4698
|
"shape": [
|
|
6427
4699
|
12,
|
|
6428
4700
|
3,
|
|
@@ -6462,21 +4734,21 @@
|
|
|
6462
4734
|
}
|
|
6463
4735
|
],
|
|
6464
4736
|
"attributes": {
|
|
6465
|
-
"long_name": "
|
|
6466
|
-
"units": "
|
|
4737
|
+
"long_name": "eastern boundary small phytoplankton chlorophyll",
|
|
4738
|
+
"units": "mg/m^3",
|
|
6467
4739
|
"coordinates": "abs_time month",
|
|
6468
4740
|
"_FillValue": "AAAAAAAA+H8="
|
|
6469
4741
|
},
|
|
6470
4742
|
"dimension_names": [
|
|
6471
4743
|
"bry_time",
|
|
6472
4744
|
"s_rho",
|
|
6473
|
-
"
|
|
4745
|
+
"eta_rho"
|
|
6474
4746
|
],
|
|
6475
4747
|
"zarr_format": 3,
|
|
6476
4748
|
"node_type": "array",
|
|
6477
4749
|
"storage_transformers": []
|
|
6478
4750
|
},
|
|
6479
|
-
"
|
|
4751
|
+
"spChl_north": {
|
|
6480
4752
|
"shape": [
|
|
6481
4753
|
12,
|
|
6482
4754
|
3,
|
|
@@ -6516,8 +4788,8 @@
|
|
|
6516
4788
|
}
|
|
6517
4789
|
],
|
|
6518
4790
|
"attributes": {
|
|
6519
|
-
"long_name": "northern boundary
|
|
6520
|
-
"units": "
|
|
4791
|
+
"long_name": "northern boundary small phytoplankton chlorophyll",
|
|
4792
|
+
"units": "mg/m^3",
|
|
6521
4793
|
"coordinates": "abs_time month",
|
|
6522
4794
|
"_FillValue": "AAAAAAAA+H8="
|
|
6523
4795
|
},
|
|
@@ -6530,7 +4802,7 @@
|
|
|
6530
4802
|
"node_type": "array",
|
|
6531
4803
|
"storage_transformers": []
|
|
6532
4804
|
},
|
|
6533
|
-
"
|
|
4805
|
+
"spChl_south": {
|
|
6534
4806
|
"shape": [
|
|
6535
4807
|
12,
|
|
6536
4808
|
3,
|
|
@@ -6570,21 +4842,21 @@
|
|
|
6570
4842
|
}
|
|
6571
4843
|
],
|
|
6572
4844
|
"attributes": {
|
|
6573
|
-
"long_name": "
|
|
6574
|
-
"units": "
|
|
4845
|
+
"long_name": "southern boundary small phytoplankton chlorophyll",
|
|
4846
|
+
"units": "mg/m^3",
|
|
6575
4847
|
"coordinates": "abs_time month",
|
|
6576
4848
|
"_FillValue": "AAAAAAAA+H8="
|
|
6577
4849
|
},
|
|
6578
4850
|
"dimension_names": [
|
|
6579
4851
|
"bry_time",
|
|
6580
4852
|
"s_rho",
|
|
6581
|
-
"
|
|
4853
|
+
"xi_rho"
|
|
6582
4854
|
],
|
|
6583
4855
|
"zarr_format": 3,
|
|
6584
4856
|
"node_type": "array",
|
|
6585
4857
|
"storage_transformers": []
|
|
6586
4858
|
},
|
|
6587
|
-
"
|
|
4859
|
+
"spFe_east": {
|
|
6588
4860
|
"shape": [
|
|
6589
4861
|
12,
|
|
6590
4862
|
3,
|
|
@@ -6624,7 +4896,7 @@
|
|
|
6624
4896
|
}
|
|
6625
4897
|
],
|
|
6626
4898
|
"attributes": {
|
|
6627
|
-
"long_name": "eastern boundary
|
|
4899
|
+
"long_name": "eastern boundary small phytoplankton iron",
|
|
6628
4900
|
"units": "mmol/m^3",
|
|
6629
4901
|
"coordinates": "abs_time month",
|
|
6630
4902
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6638,7 +4910,7 @@
|
|
|
6638
4910
|
"node_type": "array",
|
|
6639
4911
|
"storage_transformers": []
|
|
6640
4912
|
},
|
|
6641
|
-
"
|
|
4913
|
+
"spFe_north": {
|
|
6642
4914
|
"shape": [
|
|
6643
4915
|
12,
|
|
6644
4916
|
3,
|
|
@@ -6678,21 +4950,21 @@
|
|
|
6678
4950
|
}
|
|
6679
4951
|
],
|
|
6680
4952
|
"attributes": {
|
|
6681
|
-
"long_name": "
|
|
6682
|
-
"units": "
|
|
4953
|
+
"long_name": "northern boundary small phytoplankton iron",
|
|
4954
|
+
"units": "mmol/m^3",
|
|
6683
4955
|
"coordinates": "abs_time month",
|
|
6684
4956
|
"_FillValue": "AAAAAAAA+H8="
|
|
6685
4957
|
},
|
|
6686
4958
|
"dimension_names": [
|
|
6687
4959
|
"bry_time",
|
|
6688
4960
|
"s_rho",
|
|
6689
|
-
"
|
|
4961
|
+
"xi_rho"
|
|
6690
4962
|
],
|
|
6691
4963
|
"zarr_format": 3,
|
|
6692
4964
|
"node_type": "array",
|
|
6693
4965
|
"storage_transformers": []
|
|
6694
4966
|
},
|
|
6695
|
-
"
|
|
4967
|
+
"spFe_south": {
|
|
6696
4968
|
"shape": [
|
|
6697
4969
|
12,
|
|
6698
4970
|
3,
|
|
@@ -6732,7 +5004,7 @@
|
|
|
6732
5004
|
}
|
|
6733
5005
|
],
|
|
6734
5006
|
"attributes": {
|
|
6735
|
-
"long_name": "
|
|
5007
|
+
"long_name": "southern boundary small phytoplankton iron",
|
|
6736
5008
|
"units": "mmol/m^3",
|
|
6737
5009
|
"coordinates": "abs_time month",
|
|
6738
5010
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6746,7 +5018,7 @@
|
|
|
6746
5018
|
"node_type": "array",
|
|
6747
5019
|
"storage_transformers": []
|
|
6748
5020
|
},
|
|
6749
|
-
"
|
|
5021
|
+
"spP_east": {
|
|
6750
5022
|
"shape": [
|
|
6751
5023
|
12,
|
|
6752
5024
|
3,
|
|
@@ -6786,7 +5058,7 @@
|
|
|
6786
5058
|
}
|
|
6787
5059
|
],
|
|
6788
5060
|
"attributes": {
|
|
6789
|
-
"long_name": "eastern boundary
|
|
5061
|
+
"long_name": "eastern boundary small phytoplankton phosphorous",
|
|
6790
5062
|
"units": "mmol/m^3",
|
|
6791
5063
|
"coordinates": "abs_time month",
|
|
6792
5064
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6800,7 +5072,7 @@
|
|
|
6800
5072
|
"node_type": "array",
|
|
6801
5073
|
"storage_transformers": []
|
|
6802
5074
|
},
|
|
6803
|
-
"
|
|
5075
|
+
"spP_north": {
|
|
6804
5076
|
"shape": [
|
|
6805
5077
|
12,
|
|
6806
5078
|
3,
|
|
@@ -6840,7 +5112,7 @@
|
|
|
6840
5112
|
}
|
|
6841
5113
|
],
|
|
6842
5114
|
"attributes": {
|
|
6843
|
-
"long_name": "northern boundary
|
|
5115
|
+
"long_name": "northern boundary small phytoplankton phosphorous",
|
|
6844
5116
|
"units": "mmol/m^3",
|
|
6845
5117
|
"coordinates": "abs_time month",
|
|
6846
5118
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6854,7 +5126,7 @@
|
|
|
6854
5126
|
"node_type": "array",
|
|
6855
5127
|
"storage_transformers": []
|
|
6856
5128
|
},
|
|
6857
|
-
"
|
|
5129
|
+
"spP_south": {
|
|
6858
5130
|
"shape": [
|
|
6859
5131
|
12,
|
|
6860
5132
|
3,
|
|
@@ -6894,7 +5166,7 @@
|
|
|
6894
5166
|
}
|
|
6895
5167
|
],
|
|
6896
5168
|
"attributes": {
|
|
6897
|
-
"long_name": "
|
|
5169
|
+
"long_name": "southern boundary small phytoplankton phosphorous",
|
|
6898
5170
|
"units": "mmol/m^3",
|
|
6899
5171
|
"coordinates": "abs_time month",
|
|
6900
5172
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6908,7 +5180,7 @@
|
|
|
6908
5180
|
"node_type": "array",
|
|
6909
5181
|
"storage_transformers": []
|
|
6910
5182
|
},
|
|
6911
|
-
"
|
|
5183
|
+
"zooC_east": {
|
|
6912
5184
|
"shape": [
|
|
6913
5185
|
12,
|
|
6914
5186
|
3,
|
|
@@ -6948,7 +5220,7 @@
|
|
|
6948
5220
|
}
|
|
6949
5221
|
],
|
|
6950
5222
|
"attributes": {
|
|
6951
|
-
"long_name": "eastern boundary
|
|
5223
|
+
"long_name": "eastern boundary zooplankton carbon",
|
|
6952
5224
|
"units": "mmol/m^3",
|
|
6953
5225
|
"coordinates": "abs_time month",
|
|
6954
5226
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -6962,7 +5234,7 @@
|
|
|
6962
5234
|
"node_type": "array",
|
|
6963
5235
|
"storage_transformers": []
|
|
6964
5236
|
},
|
|
6965
|
-
"
|
|
5237
|
+
"zooC_north": {
|
|
6966
5238
|
"shape": [
|
|
6967
5239
|
12,
|
|
6968
5240
|
3,
|
|
@@ -7002,7 +5274,7 @@
|
|
|
7002
5274
|
}
|
|
7003
5275
|
],
|
|
7004
5276
|
"attributes": {
|
|
7005
|
-
"long_name": "northern boundary
|
|
5277
|
+
"long_name": "northern boundary zooplankton carbon",
|
|
7006
5278
|
"units": "mmol/m^3",
|
|
7007
5279
|
"coordinates": "abs_time month",
|
|
7008
5280
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -7016,7 +5288,7 @@
|
|
|
7016
5288
|
"node_type": "array",
|
|
7017
5289
|
"storage_transformers": []
|
|
7018
5290
|
},
|
|
7019
|
-
"
|
|
5291
|
+
"zooC_south": {
|
|
7020
5292
|
"shape": [
|
|
7021
5293
|
12,
|
|
7022
5294
|
3,
|
|
@@ -7056,15 +5328,15 @@
|
|
|
7056
5328
|
}
|
|
7057
5329
|
],
|
|
7058
5330
|
"attributes": {
|
|
7059
|
-
"long_name": "
|
|
7060
|
-
"units": "
|
|
5331
|
+
"long_name": "southern boundary zooplankton carbon",
|
|
5332
|
+
"units": "mmol/m^3",
|
|
7061
5333
|
"coordinates": "abs_time month",
|
|
7062
5334
|
"_FillValue": "AAAAAAAA+H8="
|
|
7063
5335
|
},
|
|
7064
5336
|
"dimension_names": [
|
|
7065
5337
|
"bry_time",
|
|
7066
5338
|
"s_rho",
|
|
7067
|
-
"
|
|
5339
|
+
"xi_rho"
|
|
7068
5340
|
],
|
|
7069
5341
|
"zarr_format": 3,
|
|
7070
5342
|
"node_type": "array",
|