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,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary refractory dissolved organic phosphorus",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved inorganic iron",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary iron binding ligand",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved ammonia",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved inorganic nitrate",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved oxygen",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved inorganic phosphate",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary dissolved inorganic silicate",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary diatom carbon",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary diatom chloropyll",
|
|
42
|
-
"units": "mg/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary diatom phosphorus",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"shape": [
|
|
3
|
-
12,
|
|
4
|
-
3,
|
|
5
|
-
4
|
|
6
|
-
],
|
|
7
|
-
"data_type": "float32",
|
|
8
|
-
"chunk_grid": {
|
|
9
|
-
"name": "regular",
|
|
10
|
-
"configuration": {
|
|
11
|
-
"chunk_shape": [
|
|
12
|
-
12,
|
|
13
|
-
3,
|
|
14
|
-
4
|
|
15
|
-
]
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"chunk_key_encoding": {
|
|
19
|
-
"name": "default",
|
|
20
|
-
"configuration": {
|
|
21
|
-
"separator": "/"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"fill_value": 0.0,
|
|
25
|
-
"codecs": [
|
|
26
|
-
{
|
|
27
|
-
"name": "bytes",
|
|
28
|
-
"configuration": {
|
|
29
|
-
"endian": "little"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "zstd",
|
|
34
|
-
"configuration": {
|
|
35
|
-
"level": 0,
|
|
36
|
-
"checksum": false
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"attributes": {
|
|
41
|
-
"long_name": "western boundary diatom silicate",
|
|
42
|
-
"units": "mmol/m^3",
|
|
43
|
-
"coordinates": "abs_time month",
|
|
44
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
45
|
-
},
|
|
46
|
-
"dimension_names": [
|
|
47
|
-
"bry_time",
|
|
48
|
-
"s_rho",
|
|
49
|
-
"eta_rho"
|
|
50
|
-
],
|
|
51
|
-
"zarr_format": 3,
|
|
52
|
-
"node_type": "array",
|
|
53
|
-
"storage_transformers": []
|
|
54
|
-
}
|