roms-tools 1.6.1__py3-none-any.whl → 1.7.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.
- ci/environment.yml +1 -1
- roms_tools/__init__.py +5 -1
- roms_tools/_version.py +1 -1
- roms_tools/setup/boundary_forcing.py +128 -146
- roms_tools/setup/datasets.py +779 -192
- roms_tools/setup/download.py +30 -0
- roms_tools/setup/grid.py +8 -10
- roms_tools/setup/initial_conditions.py +77 -96
- roms_tools/setup/plot.py +144 -24
- roms_tools/setup/river_forcing.py +589 -0
- roms_tools/setup/surface_forcing.py +33 -138
- roms_tools/setup/tides.py +24 -76
- roms_tools/setup/utils.py +274 -7
- roms_tools/tests/test_setup/test_boundary_forcing.py +98 -5
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/.zmetadata +157 -130
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/.zattrs +1 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/.zmetadata +39 -12
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/abs_time/.zattrs +1 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/dust_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/iron_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/month/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nhy_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/nox_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_air_alt/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/bgc_surface_forcing_from_climatology.zarr/pco2_time/.zattrs +1 -1
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/.zmetadata +0 -7
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/abs_time/.zattrs +0 -3
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/.zattrs +0 -1
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_east/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_north/.zattrs +0 -1
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/.zattrs +0 -1
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_south/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zeta_west/.zattrs +0 -1
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/.zattrs +3 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/.zgroup +3 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/.zmetadata +214 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/abs_time/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/abs_time/.zattrs +8 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/month/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/month/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/month/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_name/.zarray +24 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_name/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_time/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_time/.zattrs +8 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_tracer/.zarray +24 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_tracer/.zattrs +10 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_tracer/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_volume/.zarray +22 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_volume/.zattrs +9 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/river_volume/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/tracer_name/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/tracer_name/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/river_forcing.zarr/tracer_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zattrs +1 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zgroup +3 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/.zmetadata +185 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/.zattrs +8 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/abs_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/.zarray +24 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_name/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/.zattrs +7 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_time/0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/.zarray +24 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/.zattrs +10 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_tracer/0.0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/.zarray +22 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/.zattrs +9 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/river_volume/0.0 +0 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/.zarray +20 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/.zattrs +6 -0
- roms_tools/tests/test_setup/test_data/river_forcing_no_climatology.zarr/tracer_name/0 +0 -0
- roms_tools/tests/test_setup/test_datasets.py +8 -3
- roms_tools/tests/test_setup/test_grid.py +6 -5
- roms_tools/tests/test_setup/test_initial_conditions.py +0 -2
- roms_tools/tests/test_setup/test_river_forcing.py +366 -0
- roms_tools/tests/test_setup/test_surface_forcing.py +0 -2
- roms_tools/tests/test_setup/test_tides.py +0 -2
- roms_tools/tests/test_setup/test_validation.py +4 -0
- roms_tools/utils.py +12 -10
- {roms_tools-1.6.1.dist-info → roms_tools-1.7.0.dist-info}/METADATA +5 -5
- {roms_tools-1.6.1.dist-info → roms_tools-1.7.0.dist-info}/RECORD +362 -309
- {roms_tools-1.6.1.dist-info → roms_tools-1.7.0.dist-info}/WHEEL +1 -1
- {roms_tools-1.6.1.dist-info → roms_tools-1.7.0.dist-info}/LICENSE +0 -0
- {roms_tools-1.6.1.dist-info → roms_tools-1.7.0.dist-info}/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"end_time": "2021-06-30 00:00:00",
|
|
6
6
|
"hc": 250.0,
|
|
7
7
|
"model_reference_date": "2000-01-01 00:00:00",
|
|
8
|
-
"roms_tools_version": "0.1.
|
|
8
|
+
"roms_tools_version": "0.1.dev169+dirty",
|
|
9
9
|
"source": "CESM_REGRIDDED",
|
|
10
10
|
"start_time": "2021-06-29 00:00:00",
|
|
11
11
|
"theta_b": 2.0,
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"s_rho",
|
|
46
46
|
"eta_rho"
|
|
47
47
|
],
|
|
48
|
-
"coordinates": "abs_time",
|
|
48
|
+
"coordinates": "abs_time month",
|
|
49
49
|
"long_name": "eastern boundary alkalinity, alternative CO2",
|
|
50
50
|
"units": "meq/m^3"
|
|
51
51
|
},
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"s_rho",
|
|
80
80
|
"xi_rho"
|
|
81
81
|
],
|
|
82
|
-
"coordinates": "abs_time",
|
|
82
|
+
"coordinates": "abs_time month",
|
|
83
83
|
"long_name": "northern boundary alkalinity, alternative CO2",
|
|
84
84
|
"units": "meq/m^3"
|
|
85
85
|
},
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"s_rho",
|
|
114
114
|
"xi_rho"
|
|
115
115
|
],
|
|
116
|
-
"coordinates": "abs_time",
|
|
116
|
+
"coordinates": "abs_time month",
|
|
117
117
|
"long_name": "southern boundary alkalinity, alternative CO2",
|
|
118
118
|
"units": "meq/m^3"
|
|
119
119
|
},
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"s_rho",
|
|
148
148
|
"eta_rho"
|
|
149
149
|
],
|
|
150
|
-
"coordinates": "abs_time",
|
|
150
|
+
"coordinates": "abs_time month",
|
|
151
151
|
"long_name": "western boundary alkalinity, alternative CO2",
|
|
152
152
|
"units": "meq/m^3"
|
|
153
153
|
},
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"s_rho",
|
|
182
182
|
"eta_rho"
|
|
183
183
|
],
|
|
184
|
-
"coordinates": "abs_time",
|
|
184
|
+
"coordinates": "abs_time month",
|
|
185
185
|
"long_name": "eastern boundary alkalinity",
|
|
186
186
|
"units": "meq/m^3"
|
|
187
187
|
},
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"s_rho",
|
|
216
216
|
"xi_rho"
|
|
217
217
|
],
|
|
218
|
-
"coordinates": "abs_time",
|
|
218
|
+
"coordinates": "abs_time month",
|
|
219
219
|
"long_name": "northern boundary alkalinity",
|
|
220
220
|
"units": "meq/m^3"
|
|
221
221
|
},
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
"s_rho",
|
|
250
250
|
"xi_rho"
|
|
251
251
|
],
|
|
252
|
-
"coordinates": "abs_time",
|
|
252
|
+
"coordinates": "abs_time month",
|
|
253
253
|
"long_name": "southern boundary alkalinity",
|
|
254
254
|
"units": "meq/m^3"
|
|
255
255
|
},
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
"s_rho",
|
|
284
284
|
"eta_rho"
|
|
285
285
|
],
|
|
286
|
-
"coordinates": "abs_time",
|
|
286
|
+
"coordinates": "abs_time month",
|
|
287
287
|
"long_name": "western boundary alkalinity",
|
|
288
288
|
"units": "meq/m^3"
|
|
289
289
|
},
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"s_rho",
|
|
318
318
|
"eta_rho"
|
|
319
319
|
],
|
|
320
|
-
"coordinates": "abs_time",
|
|
320
|
+
"coordinates": "abs_time month",
|
|
321
321
|
"long_name": "eastern boundary dissolved inorganic carbon, alternative CO2",
|
|
322
322
|
"units": "mmol/m^3"
|
|
323
323
|
},
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"s_rho",
|
|
352
352
|
"xi_rho"
|
|
353
353
|
],
|
|
354
|
-
"coordinates": "abs_time",
|
|
354
|
+
"coordinates": "abs_time month",
|
|
355
355
|
"long_name": "northern boundary dissolved inorganic carbon, alternative CO2",
|
|
356
356
|
"units": "mmol/m^3"
|
|
357
357
|
},
|
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
"s_rho",
|
|
386
386
|
"xi_rho"
|
|
387
387
|
],
|
|
388
|
-
"coordinates": "abs_time",
|
|
388
|
+
"coordinates": "abs_time month",
|
|
389
389
|
"long_name": "southern boundary dissolved inorganic carbon, alternative CO2",
|
|
390
390
|
"units": "mmol/m^3"
|
|
391
391
|
},
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
"s_rho",
|
|
420
420
|
"eta_rho"
|
|
421
421
|
],
|
|
422
|
-
"coordinates": "abs_time",
|
|
422
|
+
"coordinates": "abs_time month",
|
|
423
423
|
"long_name": "western boundary dissolved inorganic carbon, alternative CO2",
|
|
424
424
|
"units": "mmol/m^3"
|
|
425
425
|
},
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
"s_rho",
|
|
454
454
|
"eta_rho"
|
|
455
455
|
],
|
|
456
|
-
"coordinates": "abs_time",
|
|
456
|
+
"coordinates": "abs_time month",
|
|
457
457
|
"long_name": "eastern boundary dissolved inorganic carbon",
|
|
458
458
|
"units": "mmol/m^3"
|
|
459
459
|
},
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
"s_rho",
|
|
488
488
|
"xi_rho"
|
|
489
489
|
],
|
|
490
|
-
"coordinates": "abs_time",
|
|
490
|
+
"coordinates": "abs_time month",
|
|
491
491
|
"long_name": "northern boundary dissolved inorganic carbon",
|
|
492
492
|
"units": "mmol/m^3"
|
|
493
493
|
},
|
|
@@ -521,7 +521,7 @@
|
|
|
521
521
|
"s_rho",
|
|
522
522
|
"xi_rho"
|
|
523
523
|
],
|
|
524
|
-
"coordinates": "abs_time",
|
|
524
|
+
"coordinates": "abs_time month",
|
|
525
525
|
"long_name": "southern boundary dissolved inorganic carbon",
|
|
526
526
|
"units": "mmol/m^3"
|
|
527
527
|
},
|
|
@@ -555,7 +555,7 @@
|
|
|
555
555
|
"s_rho",
|
|
556
556
|
"eta_rho"
|
|
557
557
|
],
|
|
558
|
-
"coordinates": "abs_time",
|
|
558
|
+
"coordinates": "abs_time month",
|
|
559
559
|
"long_name": "western boundary dissolved inorganic carbon",
|
|
560
560
|
"units": "mmol/m^3"
|
|
561
561
|
},
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
"s_rho",
|
|
590
590
|
"eta_rho"
|
|
591
591
|
],
|
|
592
|
-
"coordinates": "abs_time",
|
|
592
|
+
"coordinates": "abs_time month",
|
|
593
593
|
"long_name": "eastern boundary dissolved organic carbon",
|
|
594
594
|
"units": "mmol/m^3"
|
|
595
595
|
},
|
|
@@ -623,7 +623,7 @@
|
|
|
623
623
|
"s_rho",
|
|
624
624
|
"xi_rho"
|
|
625
625
|
],
|
|
626
|
-
"coordinates": "abs_time",
|
|
626
|
+
"coordinates": "abs_time month",
|
|
627
627
|
"long_name": "northern boundary dissolved organic carbon",
|
|
628
628
|
"units": "mmol/m^3"
|
|
629
629
|
},
|
|
@@ -657,7 +657,7 @@
|
|
|
657
657
|
"s_rho",
|
|
658
658
|
"xi_rho"
|
|
659
659
|
],
|
|
660
|
-
"coordinates": "abs_time",
|
|
660
|
+
"coordinates": "abs_time month",
|
|
661
661
|
"long_name": "southern boundary dissolved organic carbon",
|
|
662
662
|
"units": "mmol/m^3"
|
|
663
663
|
},
|
|
@@ -691,7 +691,7 @@
|
|
|
691
691
|
"s_rho",
|
|
692
692
|
"eta_rho"
|
|
693
693
|
],
|
|
694
|
-
"coordinates": "abs_time",
|
|
694
|
+
"coordinates": "abs_time month",
|
|
695
695
|
"long_name": "western boundary dissolved organic carbon",
|
|
696
696
|
"units": "mmol/m^3"
|
|
697
697
|
},
|
|
@@ -725,7 +725,7 @@
|
|
|
725
725
|
"s_rho",
|
|
726
726
|
"eta_rho"
|
|
727
727
|
],
|
|
728
|
-
"coordinates": "abs_time",
|
|
728
|
+
"coordinates": "abs_time month",
|
|
729
729
|
"long_name": "eastern boundary refractory dissolved organic carbon",
|
|
730
730
|
"units": "mmol/m^3"
|
|
731
731
|
},
|
|
@@ -759,7 +759,7 @@
|
|
|
759
759
|
"s_rho",
|
|
760
760
|
"xi_rho"
|
|
761
761
|
],
|
|
762
|
-
"coordinates": "abs_time",
|
|
762
|
+
"coordinates": "abs_time month",
|
|
763
763
|
"long_name": "northern boundary refractory dissolved organic carbon",
|
|
764
764
|
"units": "mmol/m^3"
|
|
765
765
|
},
|
|
@@ -793,7 +793,7 @@
|
|
|
793
793
|
"s_rho",
|
|
794
794
|
"xi_rho"
|
|
795
795
|
],
|
|
796
|
-
"coordinates": "abs_time",
|
|
796
|
+
"coordinates": "abs_time month",
|
|
797
797
|
"long_name": "southern boundary refractory dissolved organic carbon",
|
|
798
798
|
"units": "mmol/m^3"
|
|
799
799
|
},
|
|
@@ -827,7 +827,7 @@
|
|
|
827
827
|
"s_rho",
|
|
828
828
|
"eta_rho"
|
|
829
829
|
],
|
|
830
|
-
"coordinates": "abs_time",
|
|
830
|
+
"coordinates": "abs_time month",
|
|
831
831
|
"long_name": "western boundary refractory dissolved organic carbon",
|
|
832
832
|
"units": "mmol/m^3"
|
|
833
833
|
},
|
|
@@ -861,7 +861,7 @@
|
|
|
861
861
|
"s_rho",
|
|
862
862
|
"eta_rho"
|
|
863
863
|
],
|
|
864
|
-
"coordinates": "abs_time",
|
|
864
|
+
"coordinates": "abs_time month",
|
|
865
865
|
"long_name": "eastern boundary dissolved organic nitrogen",
|
|
866
866
|
"units": "mmol/m^3"
|
|
867
867
|
},
|
|
@@ -895,7 +895,7 @@
|
|
|
895
895
|
"s_rho",
|
|
896
896
|
"xi_rho"
|
|
897
897
|
],
|
|
898
|
-
"coordinates": "abs_time",
|
|
898
|
+
"coordinates": "abs_time month",
|
|
899
899
|
"long_name": "northern boundary dissolved organic nitrogen",
|
|
900
900
|
"units": "mmol/m^3"
|
|
901
901
|
},
|
|
@@ -929,7 +929,7 @@
|
|
|
929
929
|
"s_rho",
|
|
930
930
|
"xi_rho"
|
|
931
931
|
],
|
|
932
|
-
"coordinates": "abs_time",
|
|
932
|
+
"coordinates": "abs_time month",
|
|
933
933
|
"long_name": "southern boundary dissolved organic nitrogen",
|
|
934
934
|
"units": "mmol/m^3"
|
|
935
935
|
},
|
|
@@ -963,7 +963,7 @@
|
|
|
963
963
|
"s_rho",
|
|
964
964
|
"eta_rho"
|
|
965
965
|
],
|
|
966
|
-
"coordinates": "abs_time",
|
|
966
|
+
"coordinates": "abs_time month",
|
|
967
967
|
"long_name": "western boundary dissolved organic nitrogen",
|
|
968
968
|
"units": "mmol/m^3"
|
|
969
969
|
},
|
|
@@ -997,7 +997,7 @@
|
|
|
997
997
|
"s_rho",
|
|
998
998
|
"eta_rho"
|
|
999
999
|
],
|
|
1000
|
-
"coordinates": "abs_time",
|
|
1000
|
+
"coordinates": "abs_time month",
|
|
1001
1001
|
"long_name": "eastern boundary refractory dissolved organic nitrogen",
|
|
1002
1002
|
"units": "mmol/m^3"
|
|
1003
1003
|
},
|
|
@@ -1031,7 +1031,7 @@
|
|
|
1031
1031
|
"s_rho",
|
|
1032
1032
|
"xi_rho"
|
|
1033
1033
|
],
|
|
1034
|
-
"coordinates": "abs_time",
|
|
1034
|
+
"coordinates": "abs_time month",
|
|
1035
1035
|
"long_name": "northern boundary refractory dissolved organic nitrogen",
|
|
1036
1036
|
"units": "mmol/m^3"
|
|
1037
1037
|
},
|
|
@@ -1065,7 +1065,7 @@
|
|
|
1065
1065
|
"s_rho",
|
|
1066
1066
|
"xi_rho"
|
|
1067
1067
|
],
|
|
1068
|
-
"coordinates": "abs_time",
|
|
1068
|
+
"coordinates": "abs_time month",
|
|
1069
1069
|
"long_name": "southern boundary refractory dissolved organic nitrogen",
|
|
1070
1070
|
"units": "mmol/m^3"
|
|
1071
1071
|
},
|
|
@@ -1099,7 +1099,7 @@
|
|
|
1099
1099
|
"s_rho",
|
|
1100
1100
|
"eta_rho"
|
|
1101
1101
|
],
|
|
1102
|
-
"coordinates": "abs_time",
|
|
1102
|
+
"coordinates": "abs_time month",
|
|
1103
1103
|
"long_name": "western boundary refractory dissolved organic nitrogen",
|
|
1104
1104
|
"units": "mmol/m^3"
|
|
1105
1105
|
},
|
|
@@ -1133,7 +1133,7 @@
|
|
|
1133
1133
|
"s_rho",
|
|
1134
1134
|
"eta_rho"
|
|
1135
1135
|
],
|
|
1136
|
-
"coordinates": "abs_time",
|
|
1136
|
+
"coordinates": "abs_time month",
|
|
1137
1137
|
"long_name": "eastern boundary dissolved organic phosphorus",
|
|
1138
1138
|
"units": "mmol/m^3"
|
|
1139
1139
|
},
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
"s_rho",
|
|
1168
1168
|
"xi_rho"
|
|
1169
1169
|
],
|
|
1170
|
-
"coordinates": "abs_time",
|
|
1170
|
+
"coordinates": "abs_time month",
|
|
1171
1171
|
"long_name": "northern boundary dissolved organic phosphorus",
|
|
1172
1172
|
"units": "mmol/m^3"
|
|
1173
1173
|
},
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
"s_rho",
|
|
1202
1202
|
"xi_rho"
|
|
1203
1203
|
],
|
|
1204
|
-
"coordinates": "abs_time",
|
|
1204
|
+
"coordinates": "abs_time month",
|
|
1205
1205
|
"long_name": "southern boundary dissolved organic phosphorus",
|
|
1206
1206
|
"units": "mmol/m^3"
|
|
1207
1207
|
},
|
|
@@ -1235,7 +1235,7 @@
|
|
|
1235
1235
|
"s_rho",
|
|
1236
1236
|
"eta_rho"
|
|
1237
1237
|
],
|
|
1238
|
-
"coordinates": "abs_time",
|
|
1238
|
+
"coordinates": "abs_time month",
|
|
1239
1239
|
"long_name": "western boundary dissolved organic phosphorus",
|
|
1240
1240
|
"units": "mmol/m^3"
|
|
1241
1241
|
},
|
|
@@ -1269,7 +1269,7 @@
|
|
|
1269
1269
|
"s_rho",
|
|
1270
1270
|
"eta_rho"
|
|
1271
1271
|
],
|
|
1272
|
-
"coordinates": "abs_time",
|
|
1272
|
+
"coordinates": "abs_time month",
|
|
1273
1273
|
"long_name": "eastern boundary refractory dissolved organic phosphorus",
|
|
1274
1274
|
"units": "mmol/m^3"
|
|
1275
1275
|
},
|
|
@@ -1303,7 +1303,7 @@
|
|
|
1303
1303
|
"s_rho",
|
|
1304
1304
|
"xi_rho"
|
|
1305
1305
|
],
|
|
1306
|
-
"coordinates": "abs_time",
|
|
1306
|
+
"coordinates": "abs_time month",
|
|
1307
1307
|
"long_name": "northern boundary refractory dissolved organic phosphorus",
|
|
1308
1308
|
"units": "mmol/m^3"
|
|
1309
1309
|
},
|
|
@@ -1337,7 +1337,7 @@
|
|
|
1337
1337
|
"s_rho",
|
|
1338
1338
|
"xi_rho"
|
|
1339
1339
|
],
|
|
1340
|
-
"coordinates": "abs_time",
|
|
1340
|
+
"coordinates": "abs_time month",
|
|
1341
1341
|
"long_name": "southern boundary refractory dissolved organic phosphorus",
|
|
1342
1342
|
"units": "mmol/m^3"
|
|
1343
1343
|
},
|
|
@@ -1371,7 +1371,7 @@
|
|
|
1371
1371
|
"s_rho",
|
|
1372
1372
|
"eta_rho"
|
|
1373
1373
|
],
|
|
1374
|
-
"coordinates": "abs_time",
|
|
1374
|
+
"coordinates": "abs_time month",
|
|
1375
1375
|
"long_name": "western boundary refractory dissolved organic phosphorus",
|
|
1376
1376
|
"units": "mmol/m^3"
|
|
1377
1377
|
},
|
|
@@ -1405,7 +1405,7 @@
|
|
|
1405
1405
|
"s_rho",
|
|
1406
1406
|
"eta_rho"
|
|
1407
1407
|
],
|
|
1408
|
-
"coordinates": "abs_time",
|
|
1408
|
+
"coordinates": "abs_time month",
|
|
1409
1409
|
"long_name": "eastern boundary dissolved inorganic iron",
|
|
1410
1410
|
"units": "mmol/m^3"
|
|
1411
1411
|
},
|
|
@@ -1439,7 +1439,7 @@
|
|
|
1439
1439
|
"s_rho",
|
|
1440
1440
|
"xi_rho"
|
|
1441
1441
|
],
|
|
1442
|
-
"coordinates": "abs_time",
|
|
1442
|
+
"coordinates": "abs_time month",
|
|
1443
1443
|
"long_name": "northern boundary dissolved inorganic iron",
|
|
1444
1444
|
"units": "mmol/m^3"
|
|
1445
1445
|
},
|
|
@@ -1473,7 +1473,7 @@
|
|
|
1473
1473
|
"s_rho",
|
|
1474
1474
|
"xi_rho"
|
|
1475
1475
|
],
|
|
1476
|
-
"coordinates": "abs_time",
|
|
1476
|
+
"coordinates": "abs_time month",
|
|
1477
1477
|
"long_name": "southern boundary dissolved inorganic iron",
|
|
1478
1478
|
"units": "mmol/m^3"
|
|
1479
1479
|
},
|
|
@@ -1507,7 +1507,7 @@
|
|
|
1507
1507
|
"s_rho",
|
|
1508
1508
|
"eta_rho"
|
|
1509
1509
|
],
|
|
1510
|
-
"coordinates": "abs_time",
|
|
1510
|
+
"coordinates": "abs_time month",
|
|
1511
1511
|
"long_name": "western boundary dissolved inorganic iron",
|
|
1512
1512
|
"units": "mmol/m^3"
|
|
1513
1513
|
},
|
|
@@ -1541,7 +1541,7 @@
|
|
|
1541
1541
|
"s_rho",
|
|
1542
1542
|
"eta_rho"
|
|
1543
1543
|
],
|
|
1544
|
-
"coordinates": "abs_time",
|
|
1544
|
+
"coordinates": "abs_time month",
|
|
1545
1545
|
"long_name": "eastern boundary iron binding ligand",
|
|
1546
1546
|
"units": "mmol/m^3"
|
|
1547
1547
|
},
|
|
@@ -1575,7 +1575,7 @@
|
|
|
1575
1575
|
"s_rho",
|
|
1576
1576
|
"xi_rho"
|
|
1577
1577
|
],
|
|
1578
|
-
"coordinates": "abs_time",
|
|
1578
|
+
"coordinates": "abs_time month",
|
|
1579
1579
|
"long_name": "northern boundary iron binding ligand",
|
|
1580
1580
|
"units": "mmol/m^3"
|
|
1581
1581
|
},
|
|
@@ -1609,7 +1609,7 @@
|
|
|
1609
1609
|
"s_rho",
|
|
1610
1610
|
"xi_rho"
|
|
1611
1611
|
],
|
|
1612
|
-
"coordinates": "abs_time",
|
|
1612
|
+
"coordinates": "abs_time month",
|
|
1613
1613
|
"long_name": "southern boundary iron binding ligand",
|
|
1614
1614
|
"units": "mmol/m^3"
|
|
1615
1615
|
},
|
|
@@ -1643,7 +1643,7 @@
|
|
|
1643
1643
|
"s_rho",
|
|
1644
1644
|
"eta_rho"
|
|
1645
1645
|
],
|
|
1646
|
-
"coordinates": "abs_time",
|
|
1646
|
+
"coordinates": "abs_time month",
|
|
1647
1647
|
"long_name": "western boundary iron binding ligand",
|
|
1648
1648
|
"units": "mmol/m^3"
|
|
1649
1649
|
},
|
|
@@ -1677,7 +1677,7 @@
|
|
|
1677
1677
|
"s_rho",
|
|
1678
1678
|
"eta_rho"
|
|
1679
1679
|
],
|
|
1680
|
-
"coordinates": "abs_time",
|
|
1680
|
+
"coordinates": "abs_time month",
|
|
1681
1681
|
"long_name": "eastern boundary dissolved ammonia",
|
|
1682
1682
|
"units": "mmol/m^3"
|
|
1683
1683
|
},
|
|
@@ -1711,7 +1711,7 @@
|
|
|
1711
1711
|
"s_rho",
|
|
1712
1712
|
"xi_rho"
|
|
1713
1713
|
],
|
|
1714
|
-
"coordinates": "abs_time",
|
|
1714
|
+
"coordinates": "abs_time month",
|
|
1715
1715
|
"long_name": "northern boundary dissolved ammonia",
|
|
1716
1716
|
"units": "mmol/m^3"
|
|
1717
1717
|
},
|
|
@@ -1745,7 +1745,7 @@
|
|
|
1745
1745
|
"s_rho",
|
|
1746
1746
|
"xi_rho"
|
|
1747
1747
|
],
|
|
1748
|
-
"coordinates": "abs_time",
|
|
1748
|
+
"coordinates": "abs_time month",
|
|
1749
1749
|
"long_name": "southern boundary dissolved ammonia",
|
|
1750
1750
|
"units": "mmol/m^3"
|
|
1751
1751
|
},
|
|
@@ -1779,7 +1779,7 @@
|
|
|
1779
1779
|
"s_rho",
|
|
1780
1780
|
"eta_rho"
|
|
1781
1781
|
],
|
|
1782
|
-
"coordinates": "abs_time",
|
|
1782
|
+
"coordinates": "abs_time month",
|
|
1783
1783
|
"long_name": "western boundary dissolved ammonia",
|
|
1784
1784
|
"units": "mmol/m^3"
|
|
1785
1785
|
},
|
|
@@ -1813,7 +1813,7 @@
|
|
|
1813
1813
|
"s_rho",
|
|
1814
1814
|
"eta_rho"
|
|
1815
1815
|
],
|
|
1816
|
-
"coordinates": "abs_time",
|
|
1816
|
+
"coordinates": "abs_time month",
|
|
1817
1817
|
"long_name": "eastern boundary dissolved inorganic nitrate",
|
|
1818
1818
|
"units": "mmol/m^3"
|
|
1819
1819
|
},
|
|
@@ -1847,7 +1847,7 @@
|
|
|
1847
1847
|
"s_rho",
|
|
1848
1848
|
"xi_rho"
|
|
1849
1849
|
],
|
|
1850
|
-
"coordinates": "abs_time",
|
|
1850
|
+
"coordinates": "abs_time month",
|
|
1851
1851
|
"long_name": "northern boundary dissolved inorganic nitrate",
|
|
1852
1852
|
"units": "mmol/m^3"
|
|
1853
1853
|
},
|
|
@@ -1881,7 +1881,7 @@
|
|
|
1881
1881
|
"s_rho",
|
|
1882
1882
|
"xi_rho"
|
|
1883
1883
|
],
|
|
1884
|
-
"coordinates": "abs_time",
|
|
1884
|
+
"coordinates": "abs_time month",
|
|
1885
1885
|
"long_name": "southern boundary dissolved inorganic nitrate",
|
|
1886
1886
|
"units": "mmol/m^3"
|
|
1887
1887
|
},
|
|
@@ -1915,7 +1915,7 @@
|
|
|
1915
1915
|
"s_rho",
|
|
1916
1916
|
"eta_rho"
|
|
1917
1917
|
],
|
|
1918
|
-
"coordinates": "abs_time",
|
|
1918
|
+
"coordinates": "abs_time month",
|
|
1919
1919
|
"long_name": "western boundary dissolved inorganic nitrate",
|
|
1920
1920
|
"units": "mmol/m^3"
|
|
1921
1921
|
},
|
|
@@ -1949,7 +1949,7 @@
|
|
|
1949
1949
|
"s_rho",
|
|
1950
1950
|
"eta_rho"
|
|
1951
1951
|
],
|
|
1952
|
-
"coordinates": "abs_time",
|
|
1952
|
+
"coordinates": "abs_time month",
|
|
1953
1953
|
"long_name": "eastern boundary dissolved oxygen",
|
|
1954
1954
|
"units": "mmol/m^3"
|
|
1955
1955
|
},
|
|
@@ -1983,7 +1983,7 @@
|
|
|
1983
1983
|
"s_rho",
|
|
1984
1984
|
"xi_rho"
|
|
1985
1985
|
],
|
|
1986
|
-
"coordinates": "abs_time",
|
|
1986
|
+
"coordinates": "abs_time month",
|
|
1987
1987
|
"long_name": "northern boundary dissolved oxygen",
|
|
1988
1988
|
"units": "mmol/m^3"
|
|
1989
1989
|
},
|
|
@@ -2017,7 +2017,7 @@
|
|
|
2017
2017
|
"s_rho",
|
|
2018
2018
|
"xi_rho"
|
|
2019
2019
|
],
|
|
2020
|
-
"coordinates": "abs_time",
|
|
2020
|
+
"coordinates": "abs_time month",
|
|
2021
2021
|
"long_name": "southern boundary dissolved oxygen",
|
|
2022
2022
|
"units": "mmol/m^3"
|
|
2023
2023
|
},
|
|
@@ -2051,7 +2051,7 @@
|
|
|
2051
2051
|
"s_rho",
|
|
2052
2052
|
"eta_rho"
|
|
2053
2053
|
],
|
|
2054
|
-
"coordinates": "abs_time",
|
|
2054
|
+
"coordinates": "abs_time month",
|
|
2055
2055
|
"long_name": "western boundary dissolved oxygen",
|
|
2056
2056
|
"units": "mmol/m^3"
|
|
2057
2057
|
},
|
|
@@ -2085,7 +2085,7 @@
|
|
|
2085
2085
|
"s_rho",
|
|
2086
2086
|
"eta_rho"
|
|
2087
2087
|
],
|
|
2088
|
-
"coordinates": "abs_time",
|
|
2088
|
+
"coordinates": "abs_time month",
|
|
2089
2089
|
"long_name": "eastern boundary dissolved inorganic phosphate",
|
|
2090
2090
|
"units": "mmol/m^3"
|
|
2091
2091
|
},
|
|
@@ -2119,7 +2119,7 @@
|
|
|
2119
2119
|
"s_rho",
|
|
2120
2120
|
"xi_rho"
|
|
2121
2121
|
],
|
|
2122
|
-
"coordinates": "abs_time",
|
|
2122
|
+
"coordinates": "abs_time month",
|
|
2123
2123
|
"long_name": "northern boundary dissolved inorganic phosphate",
|
|
2124
2124
|
"units": "mmol/m^3"
|
|
2125
2125
|
},
|
|
@@ -2153,7 +2153,7 @@
|
|
|
2153
2153
|
"s_rho",
|
|
2154
2154
|
"xi_rho"
|
|
2155
2155
|
],
|
|
2156
|
-
"coordinates": "abs_time",
|
|
2156
|
+
"coordinates": "abs_time month",
|
|
2157
2157
|
"long_name": "southern boundary dissolved inorganic phosphate",
|
|
2158
2158
|
"units": "mmol/m^3"
|
|
2159
2159
|
},
|
|
@@ -2187,7 +2187,7 @@
|
|
|
2187
2187
|
"s_rho",
|
|
2188
2188
|
"eta_rho"
|
|
2189
2189
|
],
|
|
2190
|
-
"coordinates": "abs_time",
|
|
2190
|
+
"coordinates": "abs_time month",
|
|
2191
2191
|
"long_name": "western boundary dissolved inorganic phosphate",
|
|
2192
2192
|
"units": "mmol/m^3"
|
|
2193
2193
|
},
|
|
@@ -2221,7 +2221,7 @@
|
|
|
2221
2221
|
"s_rho",
|
|
2222
2222
|
"eta_rho"
|
|
2223
2223
|
],
|
|
2224
|
-
"coordinates": "abs_time",
|
|
2224
|
+
"coordinates": "abs_time month",
|
|
2225
2225
|
"long_name": "eastern boundary dissolved inorganic silicate",
|
|
2226
2226
|
"units": "mmol/m^3"
|
|
2227
2227
|
},
|
|
@@ -2255,7 +2255,7 @@
|
|
|
2255
2255
|
"s_rho",
|
|
2256
2256
|
"xi_rho"
|
|
2257
2257
|
],
|
|
2258
|
-
"coordinates": "abs_time",
|
|
2258
|
+
"coordinates": "abs_time month",
|
|
2259
2259
|
"long_name": "northern boundary dissolved inorganic silicate",
|
|
2260
2260
|
"units": "mmol/m^3"
|
|
2261
2261
|
},
|
|
@@ -2289,7 +2289,7 @@
|
|
|
2289
2289
|
"s_rho",
|
|
2290
2290
|
"xi_rho"
|
|
2291
2291
|
],
|
|
2292
|
-
"coordinates": "abs_time",
|
|
2292
|
+
"coordinates": "abs_time month",
|
|
2293
2293
|
"long_name": "southern boundary dissolved inorganic silicate",
|
|
2294
2294
|
"units": "mmol/m^3"
|
|
2295
2295
|
},
|
|
@@ -2323,7 +2323,7 @@
|
|
|
2323
2323
|
"s_rho",
|
|
2324
2324
|
"eta_rho"
|
|
2325
2325
|
],
|
|
2326
|
-
"coordinates": "abs_time",
|
|
2326
|
+
"coordinates": "abs_time month",
|
|
2327
2327
|
"long_name": "western boundary dissolved inorganic silicate",
|
|
2328
2328
|
"units": "mmol/m^3"
|
|
2329
2329
|
},
|
|
@@ -2352,6 +2352,7 @@
|
|
|
2352
2352
|
"bry_time"
|
|
2353
2353
|
],
|
|
2354
2354
|
"calendar": "proleptic_gregorian",
|
|
2355
|
+
"long_name": "absolute time",
|
|
2355
2356
|
"units": "days since 2000-01-16 00:00:00"
|
|
2356
2357
|
},
|
|
2357
2358
|
"bry_time/.zarray": {
|
|
@@ -2379,7 +2380,7 @@
|
|
|
2379
2380
|
"bry_time"
|
|
2380
2381
|
],
|
|
2381
2382
|
"cycle_length": 365.25,
|
|
2382
|
-
"long_name": "days since 2000-01-01 00:00:00",
|
|
2383
|
+
"long_name": "relative time: days since 2000-01-01 00:00:00",
|
|
2383
2384
|
"units": "days"
|
|
2384
2385
|
},
|
|
2385
2386
|
"diatC_east/.zarray": {
|
|
@@ -2412,7 +2413,7 @@
|
|
|
2412
2413
|
"s_rho",
|
|
2413
2414
|
"eta_rho"
|
|
2414
2415
|
],
|
|
2415
|
-
"coordinates": "abs_time",
|
|
2416
|
+
"coordinates": "abs_time month",
|
|
2416
2417
|
"long_name": "eastern boundary diatom carbon",
|
|
2417
2418
|
"units": "mmol/m^3"
|
|
2418
2419
|
},
|
|
@@ -2446,7 +2447,7 @@
|
|
|
2446
2447
|
"s_rho",
|
|
2447
2448
|
"xi_rho"
|
|
2448
2449
|
],
|
|
2449
|
-
"coordinates": "abs_time",
|
|
2450
|
+
"coordinates": "abs_time month",
|
|
2450
2451
|
"long_name": "northern boundary diatom carbon",
|
|
2451
2452
|
"units": "mmol/m^3"
|
|
2452
2453
|
},
|
|
@@ -2480,7 +2481,7 @@
|
|
|
2480
2481
|
"s_rho",
|
|
2481
2482
|
"xi_rho"
|
|
2482
2483
|
],
|
|
2483
|
-
"coordinates": "abs_time",
|
|
2484
|
+
"coordinates": "abs_time month",
|
|
2484
2485
|
"long_name": "southern boundary diatom carbon",
|
|
2485
2486
|
"units": "mmol/m^3"
|
|
2486
2487
|
},
|
|
@@ -2514,7 +2515,7 @@
|
|
|
2514
2515
|
"s_rho",
|
|
2515
2516
|
"eta_rho"
|
|
2516
2517
|
],
|
|
2517
|
-
"coordinates": "abs_time",
|
|
2518
|
+
"coordinates": "abs_time month",
|
|
2518
2519
|
"long_name": "western boundary diatom carbon",
|
|
2519
2520
|
"units": "mmol/m^3"
|
|
2520
2521
|
},
|
|
@@ -2548,7 +2549,7 @@
|
|
|
2548
2549
|
"s_rho",
|
|
2549
2550
|
"eta_rho"
|
|
2550
2551
|
],
|
|
2551
|
-
"coordinates": "abs_time",
|
|
2552
|
+
"coordinates": "abs_time month",
|
|
2552
2553
|
"long_name": "eastern boundary diatom chloropyll",
|
|
2553
2554
|
"units": "mg/m^3"
|
|
2554
2555
|
},
|
|
@@ -2582,7 +2583,7 @@
|
|
|
2582
2583
|
"s_rho",
|
|
2583
2584
|
"xi_rho"
|
|
2584
2585
|
],
|
|
2585
|
-
"coordinates": "abs_time",
|
|
2586
|
+
"coordinates": "abs_time month",
|
|
2586
2587
|
"long_name": "northern boundary diatom chloropyll",
|
|
2587
2588
|
"units": "mg/m^3"
|
|
2588
2589
|
},
|
|
@@ -2616,7 +2617,7 @@
|
|
|
2616
2617
|
"s_rho",
|
|
2617
2618
|
"xi_rho"
|
|
2618
2619
|
],
|
|
2619
|
-
"coordinates": "abs_time",
|
|
2620
|
+
"coordinates": "abs_time month",
|
|
2620
2621
|
"long_name": "southern boundary diatom chloropyll",
|
|
2621
2622
|
"units": "mg/m^3"
|
|
2622
2623
|
},
|
|
@@ -2650,7 +2651,7 @@
|
|
|
2650
2651
|
"s_rho",
|
|
2651
2652
|
"eta_rho"
|
|
2652
2653
|
],
|
|
2653
|
-
"coordinates": "abs_time",
|
|
2654
|
+
"coordinates": "abs_time month",
|
|
2654
2655
|
"long_name": "western boundary diatom chloropyll",
|
|
2655
2656
|
"units": "mg/m^3"
|
|
2656
2657
|
},
|
|
@@ -2684,7 +2685,7 @@
|
|
|
2684
2685
|
"s_rho",
|
|
2685
2686
|
"eta_rho"
|
|
2686
2687
|
],
|
|
2687
|
-
"coordinates": "abs_time",
|
|
2688
|
+
"coordinates": "abs_time month",
|
|
2688
2689
|
"long_name": "eastern boundary diatom iron",
|
|
2689
2690
|
"units": "mmol/m^3"
|
|
2690
2691
|
},
|
|
@@ -2718,7 +2719,7 @@
|
|
|
2718
2719
|
"s_rho",
|
|
2719
2720
|
"xi_rho"
|
|
2720
2721
|
],
|
|
2721
|
-
"coordinates": "abs_time",
|
|
2722
|
+
"coordinates": "abs_time month",
|
|
2722
2723
|
"long_name": "northern boundary diatom iron",
|
|
2723
2724
|
"units": "mmol/m^3"
|
|
2724
2725
|
},
|
|
@@ -2752,7 +2753,7 @@
|
|
|
2752
2753
|
"s_rho",
|
|
2753
2754
|
"xi_rho"
|
|
2754
2755
|
],
|
|
2755
|
-
"coordinates": "abs_time",
|
|
2756
|
+
"coordinates": "abs_time month",
|
|
2756
2757
|
"long_name": "southern boundary diatom iron",
|
|
2757
2758
|
"units": "mmol/m^3"
|
|
2758
2759
|
},
|
|
@@ -2786,7 +2787,7 @@
|
|
|
2786
2787
|
"s_rho",
|
|
2787
2788
|
"eta_rho"
|
|
2788
2789
|
],
|
|
2789
|
-
"coordinates": "abs_time",
|
|
2790
|
+
"coordinates": "abs_time month",
|
|
2790
2791
|
"long_name": "western boundary diatom iron",
|
|
2791
2792
|
"units": "mmol/m^3"
|
|
2792
2793
|
},
|
|
@@ -2820,7 +2821,7 @@
|
|
|
2820
2821
|
"s_rho",
|
|
2821
2822
|
"eta_rho"
|
|
2822
2823
|
],
|
|
2823
|
-
"coordinates": "abs_time",
|
|
2824
|
+
"coordinates": "abs_time month",
|
|
2824
2825
|
"long_name": "eastern boundary diatom phosphorus",
|
|
2825
2826
|
"units": "mmol/m^3"
|
|
2826
2827
|
},
|
|
@@ -2854,7 +2855,7 @@
|
|
|
2854
2855
|
"s_rho",
|
|
2855
2856
|
"xi_rho"
|
|
2856
2857
|
],
|
|
2857
|
-
"coordinates": "abs_time",
|
|
2858
|
+
"coordinates": "abs_time month",
|
|
2858
2859
|
"long_name": "northern boundary diatom phosphorus",
|
|
2859
2860
|
"units": "mmol/m^3"
|
|
2860
2861
|
},
|
|
@@ -2888,7 +2889,7 @@
|
|
|
2888
2889
|
"s_rho",
|
|
2889
2890
|
"xi_rho"
|
|
2890
2891
|
],
|
|
2891
|
-
"coordinates": "abs_time",
|
|
2892
|
+
"coordinates": "abs_time month",
|
|
2892
2893
|
"long_name": "southern boundary diatom phosphorus",
|
|
2893
2894
|
"units": "mmol/m^3"
|
|
2894
2895
|
},
|
|
@@ -2922,7 +2923,7 @@
|
|
|
2922
2923
|
"s_rho",
|
|
2923
2924
|
"eta_rho"
|
|
2924
2925
|
],
|
|
2925
|
-
"coordinates": "abs_time",
|
|
2926
|
+
"coordinates": "abs_time month",
|
|
2926
2927
|
"long_name": "western boundary diatom phosphorus",
|
|
2927
2928
|
"units": "mmol/m^3"
|
|
2928
2929
|
},
|
|
@@ -2956,7 +2957,7 @@
|
|
|
2956
2957
|
"s_rho",
|
|
2957
2958
|
"eta_rho"
|
|
2958
2959
|
],
|
|
2959
|
-
"coordinates": "abs_time",
|
|
2960
|
+
"coordinates": "abs_time month",
|
|
2960
2961
|
"long_name": "eastern boundary diatom silicate",
|
|
2961
2962
|
"units": "mmol/m^3"
|
|
2962
2963
|
},
|
|
@@ -2990,7 +2991,7 @@
|
|
|
2990
2991
|
"s_rho",
|
|
2991
2992
|
"xi_rho"
|
|
2992
2993
|
],
|
|
2993
|
-
"coordinates": "abs_time",
|
|
2994
|
+
"coordinates": "abs_time month",
|
|
2994
2995
|
"long_name": "northern boundary diatom silicate",
|
|
2995
2996
|
"units": "mmol/m^3"
|
|
2996
2997
|
},
|
|
@@ -3024,7 +3025,7 @@
|
|
|
3024
3025
|
"s_rho",
|
|
3025
3026
|
"xi_rho"
|
|
3026
3027
|
],
|
|
3027
|
-
"coordinates": "abs_time",
|
|
3028
|
+
"coordinates": "abs_time month",
|
|
3028
3029
|
"long_name": "southern boundary diatom silicate",
|
|
3029
3030
|
"units": "mmol/m^3"
|
|
3030
3031
|
},
|
|
@@ -3058,7 +3059,7 @@
|
|
|
3058
3059
|
"s_rho",
|
|
3059
3060
|
"eta_rho"
|
|
3060
3061
|
],
|
|
3061
|
-
"coordinates": "abs_time",
|
|
3062
|
+
"coordinates": "abs_time month",
|
|
3062
3063
|
"long_name": "western boundary diatom silicate",
|
|
3063
3064
|
"units": "mmol/m^3"
|
|
3064
3065
|
},
|
|
@@ -3092,7 +3093,7 @@
|
|
|
3092
3093
|
"s_rho",
|
|
3093
3094
|
"eta_rho"
|
|
3094
3095
|
],
|
|
3095
|
-
"coordinates": "abs_time",
|
|
3096
|
+
"coordinates": "abs_time month",
|
|
3096
3097
|
"long_name": "eastern boundary diazotroph carbon",
|
|
3097
3098
|
"units": "mmol/m^3"
|
|
3098
3099
|
},
|
|
@@ -3126,7 +3127,7 @@
|
|
|
3126
3127
|
"s_rho",
|
|
3127
3128
|
"xi_rho"
|
|
3128
3129
|
],
|
|
3129
|
-
"coordinates": "abs_time",
|
|
3130
|
+
"coordinates": "abs_time month",
|
|
3130
3131
|
"long_name": "northern boundary diazotroph carbon",
|
|
3131
3132
|
"units": "mmol/m^3"
|
|
3132
3133
|
},
|
|
@@ -3160,7 +3161,7 @@
|
|
|
3160
3161
|
"s_rho",
|
|
3161
3162
|
"xi_rho"
|
|
3162
3163
|
],
|
|
3163
|
-
"coordinates": "abs_time",
|
|
3164
|
+
"coordinates": "abs_time month",
|
|
3164
3165
|
"long_name": "southern boundary diazotroph carbon",
|
|
3165
3166
|
"units": "mmol/m^3"
|
|
3166
3167
|
},
|
|
@@ -3194,7 +3195,7 @@
|
|
|
3194
3195
|
"s_rho",
|
|
3195
3196
|
"eta_rho"
|
|
3196
3197
|
],
|
|
3197
|
-
"coordinates": "abs_time",
|
|
3198
|
+
"coordinates": "abs_time month",
|
|
3198
3199
|
"long_name": "western boundary diazotroph carbon",
|
|
3199
3200
|
"units": "mmol/m^3"
|
|
3200
3201
|
},
|
|
@@ -3228,7 +3229,7 @@
|
|
|
3228
3229
|
"s_rho",
|
|
3229
3230
|
"eta_rho"
|
|
3230
3231
|
],
|
|
3231
|
-
"coordinates": "abs_time",
|
|
3232
|
+
"coordinates": "abs_time month",
|
|
3232
3233
|
"long_name": "eastern boundary diazotroph chloropyll",
|
|
3233
3234
|
"units": "mg/m^3"
|
|
3234
3235
|
},
|
|
@@ -3262,7 +3263,7 @@
|
|
|
3262
3263
|
"s_rho",
|
|
3263
3264
|
"xi_rho"
|
|
3264
3265
|
],
|
|
3265
|
-
"coordinates": "abs_time",
|
|
3266
|
+
"coordinates": "abs_time month",
|
|
3266
3267
|
"long_name": "northern boundary diazotroph chloropyll",
|
|
3267
3268
|
"units": "mg/m^3"
|
|
3268
3269
|
},
|
|
@@ -3296,7 +3297,7 @@
|
|
|
3296
3297
|
"s_rho",
|
|
3297
3298
|
"xi_rho"
|
|
3298
3299
|
],
|
|
3299
|
-
"coordinates": "abs_time",
|
|
3300
|
+
"coordinates": "abs_time month",
|
|
3300
3301
|
"long_name": "southern boundary diazotroph chloropyll",
|
|
3301
3302
|
"units": "mg/m^3"
|
|
3302
3303
|
},
|
|
@@ -3330,7 +3331,7 @@
|
|
|
3330
3331
|
"s_rho",
|
|
3331
3332
|
"eta_rho"
|
|
3332
3333
|
],
|
|
3333
|
-
"coordinates": "abs_time",
|
|
3334
|
+
"coordinates": "abs_time month",
|
|
3334
3335
|
"long_name": "western boundary diazotroph chloropyll",
|
|
3335
3336
|
"units": "mg/m^3"
|
|
3336
3337
|
},
|
|
@@ -3364,7 +3365,7 @@
|
|
|
3364
3365
|
"s_rho",
|
|
3365
3366
|
"eta_rho"
|
|
3366
3367
|
],
|
|
3367
|
-
"coordinates": "abs_time",
|
|
3368
|
+
"coordinates": "abs_time month",
|
|
3368
3369
|
"long_name": "eastern boundary diazotroph iron",
|
|
3369
3370
|
"units": "mmol/m^3"
|
|
3370
3371
|
},
|
|
@@ -3398,7 +3399,7 @@
|
|
|
3398
3399
|
"s_rho",
|
|
3399
3400
|
"xi_rho"
|
|
3400
3401
|
],
|
|
3401
|
-
"coordinates": "abs_time",
|
|
3402
|
+
"coordinates": "abs_time month",
|
|
3402
3403
|
"long_name": "northern boundary diazotroph iron",
|
|
3403
3404
|
"units": "mmol/m^3"
|
|
3404
3405
|
},
|
|
@@ -3432,7 +3433,7 @@
|
|
|
3432
3433
|
"s_rho",
|
|
3433
3434
|
"xi_rho"
|
|
3434
3435
|
],
|
|
3435
|
-
"coordinates": "abs_time",
|
|
3436
|
+
"coordinates": "abs_time month",
|
|
3436
3437
|
"long_name": "southern boundary diazotroph iron",
|
|
3437
3438
|
"units": "mmol/m^3"
|
|
3438
3439
|
},
|
|
@@ -3466,7 +3467,7 @@
|
|
|
3466
3467
|
"s_rho",
|
|
3467
3468
|
"eta_rho"
|
|
3468
3469
|
],
|
|
3469
|
-
"coordinates": "abs_time",
|
|
3470
|
+
"coordinates": "abs_time month",
|
|
3470
3471
|
"long_name": "western boundary diazotroph iron",
|
|
3471
3472
|
"units": "mmol/m^3"
|
|
3472
3473
|
},
|
|
@@ -3500,7 +3501,7 @@
|
|
|
3500
3501
|
"s_rho",
|
|
3501
3502
|
"eta_rho"
|
|
3502
3503
|
],
|
|
3503
|
-
"coordinates": "abs_time",
|
|
3504
|
+
"coordinates": "abs_time month",
|
|
3504
3505
|
"long_name": "eastern boundary diazotroph phosphorus",
|
|
3505
3506
|
"units": "mmol/m^3"
|
|
3506
3507
|
},
|
|
@@ -3534,7 +3535,7 @@
|
|
|
3534
3535
|
"s_rho",
|
|
3535
3536
|
"xi_rho"
|
|
3536
3537
|
],
|
|
3537
|
-
"coordinates": "abs_time",
|
|
3538
|
+
"coordinates": "abs_time month",
|
|
3538
3539
|
"long_name": "northern boundary diazotroph phosphorus",
|
|
3539
3540
|
"units": "mmol/m^3"
|
|
3540
3541
|
},
|
|
@@ -3568,7 +3569,7 @@
|
|
|
3568
3569
|
"s_rho",
|
|
3569
3570
|
"xi_rho"
|
|
3570
3571
|
],
|
|
3571
|
-
"coordinates": "abs_time",
|
|
3572
|
+
"coordinates": "abs_time month",
|
|
3572
3573
|
"long_name": "southern boundary diazotroph phosphorus",
|
|
3573
3574
|
"units": "mmol/m^3"
|
|
3574
3575
|
},
|
|
@@ -3602,10 +3603,36 @@
|
|
|
3602
3603
|
"s_rho",
|
|
3603
3604
|
"eta_rho"
|
|
3604
3605
|
],
|
|
3605
|
-
"coordinates": "abs_time",
|
|
3606
|
+
"coordinates": "abs_time month",
|
|
3606
3607
|
"long_name": "western boundary diazotroph phosphorus",
|
|
3607
3608
|
"units": "mmol/m^3"
|
|
3608
3609
|
},
|
|
3610
|
+
"month/.zarray": {
|
|
3611
|
+
"chunks": [
|
|
3612
|
+
12
|
|
3613
|
+
],
|
|
3614
|
+
"compressor": {
|
|
3615
|
+
"blocksize": 0,
|
|
3616
|
+
"clevel": 5,
|
|
3617
|
+
"cname": "lz4",
|
|
3618
|
+
"id": "blosc",
|
|
3619
|
+
"shuffle": 1
|
|
3620
|
+
},
|
|
3621
|
+
"dtype": "<i8",
|
|
3622
|
+
"fill_value": null,
|
|
3623
|
+
"filters": null,
|
|
3624
|
+
"order": "C",
|
|
3625
|
+
"shape": [
|
|
3626
|
+
12
|
|
3627
|
+
],
|
|
3628
|
+
"zarr_format": 2
|
|
3629
|
+
},
|
|
3630
|
+
"month/.zattrs": {
|
|
3631
|
+
"_ARRAY_DIMENSIONS": [
|
|
3632
|
+
"bry_time"
|
|
3633
|
+
],
|
|
3634
|
+
"long_name": "Month index (1-12)"
|
|
3635
|
+
},
|
|
3609
3636
|
"spC_east/.zarray": {
|
|
3610
3637
|
"chunks": [
|
|
3611
3638
|
12,
|
|
@@ -3636,7 +3663,7 @@
|
|
|
3636
3663
|
"s_rho",
|
|
3637
3664
|
"eta_rho"
|
|
3638
3665
|
],
|
|
3639
|
-
"coordinates": "abs_time",
|
|
3666
|
+
"coordinates": "abs_time month",
|
|
3640
3667
|
"long_name": "eastern boundary small phytoplankton carbon",
|
|
3641
3668
|
"units": "mmol/m^3"
|
|
3642
3669
|
},
|
|
@@ -3670,7 +3697,7 @@
|
|
|
3670
3697
|
"s_rho",
|
|
3671
3698
|
"xi_rho"
|
|
3672
3699
|
],
|
|
3673
|
-
"coordinates": "abs_time",
|
|
3700
|
+
"coordinates": "abs_time month",
|
|
3674
3701
|
"long_name": "northern boundary small phytoplankton carbon",
|
|
3675
3702
|
"units": "mmol/m^3"
|
|
3676
3703
|
},
|
|
@@ -3704,7 +3731,7 @@
|
|
|
3704
3731
|
"s_rho",
|
|
3705
3732
|
"xi_rho"
|
|
3706
3733
|
],
|
|
3707
|
-
"coordinates": "abs_time",
|
|
3734
|
+
"coordinates": "abs_time month",
|
|
3708
3735
|
"long_name": "southern boundary small phytoplankton carbon",
|
|
3709
3736
|
"units": "mmol/m^3"
|
|
3710
3737
|
},
|
|
@@ -3738,7 +3765,7 @@
|
|
|
3738
3765
|
"s_rho",
|
|
3739
3766
|
"eta_rho"
|
|
3740
3767
|
],
|
|
3741
|
-
"coordinates": "abs_time",
|
|
3768
|
+
"coordinates": "abs_time month",
|
|
3742
3769
|
"long_name": "western boundary small phytoplankton carbon",
|
|
3743
3770
|
"units": "mmol/m^3"
|
|
3744
3771
|
},
|
|
@@ -3772,7 +3799,7 @@
|
|
|
3772
3799
|
"s_rho",
|
|
3773
3800
|
"eta_rho"
|
|
3774
3801
|
],
|
|
3775
|
-
"coordinates": "abs_time",
|
|
3802
|
+
"coordinates": "abs_time month",
|
|
3776
3803
|
"long_name": "eastern boundary small phytoplankton CaCO3",
|
|
3777
3804
|
"units": "mmol/m^3"
|
|
3778
3805
|
},
|
|
@@ -3806,7 +3833,7 @@
|
|
|
3806
3833
|
"s_rho",
|
|
3807
3834
|
"xi_rho"
|
|
3808
3835
|
],
|
|
3809
|
-
"coordinates": "abs_time",
|
|
3836
|
+
"coordinates": "abs_time month",
|
|
3810
3837
|
"long_name": "northern boundary small phytoplankton CaCO3",
|
|
3811
3838
|
"units": "mmol/m^3"
|
|
3812
3839
|
},
|
|
@@ -3840,7 +3867,7 @@
|
|
|
3840
3867
|
"s_rho",
|
|
3841
3868
|
"xi_rho"
|
|
3842
3869
|
],
|
|
3843
|
-
"coordinates": "abs_time",
|
|
3870
|
+
"coordinates": "abs_time month",
|
|
3844
3871
|
"long_name": "southern boundary small phytoplankton CaCO3",
|
|
3845
3872
|
"units": "mmol/m^3"
|
|
3846
3873
|
},
|
|
@@ -3874,7 +3901,7 @@
|
|
|
3874
3901
|
"s_rho",
|
|
3875
3902
|
"eta_rho"
|
|
3876
3903
|
],
|
|
3877
|
-
"coordinates": "abs_time",
|
|
3904
|
+
"coordinates": "abs_time month",
|
|
3878
3905
|
"long_name": "western boundary small phytoplankton CaCO3",
|
|
3879
3906
|
"units": "mmol/m^3"
|
|
3880
3907
|
},
|
|
@@ -3908,7 +3935,7 @@
|
|
|
3908
3935
|
"s_rho",
|
|
3909
3936
|
"eta_rho"
|
|
3910
3937
|
],
|
|
3911
|
-
"coordinates": "abs_time",
|
|
3938
|
+
"coordinates": "abs_time month",
|
|
3912
3939
|
"long_name": "eastern boundary small phytoplankton chlorophyll",
|
|
3913
3940
|
"units": "mg/m^3"
|
|
3914
3941
|
},
|
|
@@ -3942,7 +3969,7 @@
|
|
|
3942
3969
|
"s_rho",
|
|
3943
3970
|
"xi_rho"
|
|
3944
3971
|
],
|
|
3945
|
-
"coordinates": "abs_time",
|
|
3972
|
+
"coordinates": "abs_time month",
|
|
3946
3973
|
"long_name": "northern boundary small phytoplankton chlorophyll",
|
|
3947
3974
|
"units": "mg/m^3"
|
|
3948
3975
|
},
|
|
@@ -3976,7 +4003,7 @@
|
|
|
3976
4003
|
"s_rho",
|
|
3977
4004
|
"xi_rho"
|
|
3978
4005
|
],
|
|
3979
|
-
"coordinates": "abs_time",
|
|
4006
|
+
"coordinates": "abs_time month",
|
|
3980
4007
|
"long_name": "southern boundary small phytoplankton chlorophyll",
|
|
3981
4008
|
"units": "mg/m^3"
|
|
3982
4009
|
},
|
|
@@ -4010,7 +4037,7 @@
|
|
|
4010
4037
|
"s_rho",
|
|
4011
4038
|
"eta_rho"
|
|
4012
4039
|
],
|
|
4013
|
-
"coordinates": "abs_time",
|
|
4040
|
+
"coordinates": "abs_time month",
|
|
4014
4041
|
"long_name": "western boundary small phytoplankton chlorophyll",
|
|
4015
4042
|
"units": "mg/m^3"
|
|
4016
4043
|
},
|
|
@@ -4044,7 +4071,7 @@
|
|
|
4044
4071
|
"s_rho",
|
|
4045
4072
|
"eta_rho"
|
|
4046
4073
|
],
|
|
4047
|
-
"coordinates": "abs_time",
|
|
4074
|
+
"coordinates": "abs_time month",
|
|
4048
4075
|
"long_name": "eastern boundary small phytoplankton iron",
|
|
4049
4076
|
"units": "mmol/m^3"
|
|
4050
4077
|
},
|
|
@@ -4078,7 +4105,7 @@
|
|
|
4078
4105
|
"s_rho",
|
|
4079
4106
|
"xi_rho"
|
|
4080
4107
|
],
|
|
4081
|
-
"coordinates": "abs_time",
|
|
4108
|
+
"coordinates": "abs_time month",
|
|
4082
4109
|
"long_name": "northern boundary small phytoplankton iron",
|
|
4083
4110
|
"units": "mmol/m^3"
|
|
4084
4111
|
},
|
|
@@ -4112,7 +4139,7 @@
|
|
|
4112
4139
|
"s_rho",
|
|
4113
4140
|
"xi_rho"
|
|
4114
4141
|
],
|
|
4115
|
-
"coordinates": "abs_time",
|
|
4142
|
+
"coordinates": "abs_time month",
|
|
4116
4143
|
"long_name": "southern boundary small phytoplankton iron",
|
|
4117
4144
|
"units": "mmol/m^3"
|
|
4118
4145
|
},
|
|
@@ -4146,7 +4173,7 @@
|
|
|
4146
4173
|
"s_rho",
|
|
4147
4174
|
"eta_rho"
|
|
4148
4175
|
],
|
|
4149
|
-
"coordinates": "abs_time",
|
|
4176
|
+
"coordinates": "abs_time month",
|
|
4150
4177
|
"long_name": "western boundary small phytoplankton iron",
|
|
4151
4178
|
"units": "mmol/m^3"
|
|
4152
4179
|
},
|
|
@@ -4180,7 +4207,7 @@
|
|
|
4180
4207
|
"s_rho",
|
|
4181
4208
|
"eta_rho"
|
|
4182
4209
|
],
|
|
4183
|
-
"coordinates": "abs_time",
|
|
4210
|
+
"coordinates": "abs_time month",
|
|
4184
4211
|
"long_name": "eastern boundary small phytoplankton phosphorous",
|
|
4185
4212
|
"units": "mmol/m^3"
|
|
4186
4213
|
},
|
|
@@ -4214,7 +4241,7 @@
|
|
|
4214
4241
|
"s_rho",
|
|
4215
4242
|
"xi_rho"
|
|
4216
4243
|
],
|
|
4217
|
-
"coordinates": "abs_time",
|
|
4244
|
+
"coordinates": "abs_time month",
|
|
4218
4245
|
"long_name": "northern boundary small phytoplankton phosphorous",
|
|
4219
4246
|
"units": "mmol/m^3"
|
|
4220
4247
|
},
|
|
@@ -4248,7 +4275,7 @@
|
|
|
4248
4275
|
"s_rho",
|
|
4249
4276
|
"xi_rho"
|
|
4250
4277
|
],
|
|
4251
|
-
"coordinates": "abs_time",
|
|
4278
|
+
"coordinates": "abs_time month",
|
|
4252
4279
|
"long_name": "southern boundary small phytoplankton phosphorous",
|
|
4253
4280
|
"units": "mmol/m^3"
|
|
4254
4281
|
},
|
|
@@ -4282,7 +4309,7 @@
|
|
|
4282
4309
|
"s_rho",
|
|
4283
4310
|
"eta_rho"
|
|
4284
4311
|
],
|
|
4285
|
-
"coordinates": "abs_time",
|
|
4312
|
+
"coordinates": "abs_time month",
|
|
4286
4313
|
"long_name": "western boundary small phytoplankton phosphorous",
|
|
4287
4314
|
"units": "mmol/m^3"
|
|
4288
4315
|
},
|
|
@@ -4316,7 +4343,7 @@
|
|
|
4316
4343
|
"s_rho",
|
|
4317
4344
|
"eta_rho"
|
|
4318
4345
|
],
|
|
4319
|
-
"coordinates": "abs_time",
|
|
4346
|
+
"coordinates": "abs_time month",
|
|
4320
4347
|
"long_name": "eastern boundary zooplankton carbon",
|
|
4321
4348
|
"units": "mmol/m^3"
|
|
4322
4349
|
},
|
|
@@ -4350,7 +4377,7 @@
|
|
|
4350
4377
|
"s_rho",
|
|
4351
4378
|
"xi_rho"
|
|
4352
4379
|
],
|
|
4353
|
-
"coordinates": "abs_time",
|
|
4380
|
+
"coordinates": "abs_time month",
|
|
4354
4381
|
"long_name": "northern boundary zooplankton carbon",
|
|
4355
4382
|
"units": "mmol/m^3"
|
|
4356
4383
|
},
|
|
@@ -4384,7 +4411,7 @@
|
|
|
4384
4411
|
"s_rho",
|
|
4385
4412
|
"xi_rho"
|
|
4386
4413
|
],
|
|
4387
|
-
"coordinates": "abs_time",
|
|
4414
|
+
"coordinates": "abs_time month",
|
|
4388
4415
|
"long_name": "southern boundary zooplankton carbon",
|
|
4389
4416
|
"units": "mmol/m^3"
|
|
4390
4417
|
},
|
|
@@ -4418,7 +4445,7 @@
|
|
|
4418
4445
|
"s_rho",
|
|
4419
4446
|
"eta_rho"
|
|
4420
4447
|
],
|
|
4421
|
-
"coordinates": "abs_time",
|
|
4448
|
+
"coordinates": "abs_time month",
|
|
4422
4449
|
"long_name": "western boundary zooplankton carbon",
|
|
4423
4450
|
"units": "mmol/m^3"
|
|
4424
4451
|
}
|