roms-tools 3.1.2__py3-none-any.whl → 3.3.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 +3 -0
- roms_tools/analysis/cdr_analysis.py +203 -0
- roms_tools/analysis/cdr_ensemble.py +198 -0
- roms_tools/analysis/roms_output.py +80 -46
- roms_tools/data/grids/GLORYS_global_grid.nc +0 -0
- roms_tools/download.py +4 -0
- roms_tools/plot.py +113 -51
- roms_tools/setup/boundary_forcing.py +45 -20
- roms_tools/setup/cdr_forcing.py +122 -8
- roms_tools/setup/cdr_release.py +161 -8
- roms_tools/setup/grid.py +150 -141
- roms_tools/setup/initial_conditions.py +113 -48
- roms_tools/setup/{datasets.py → lat_lon_datasets.py} +443 -938
- roms_tools/setup/mask.py +63 -7
- roms_tools/setup/nesting.py +314 -117
- roms_tools/setup/river_datasets.py +527 -0
- roms_tools/setup/river_forcing.py +46 -20
- roms_tools/setup/surface_forcing.py +7 -9
- roms_tools/setup/tides.py +2 -3
- roms_tools/setup/topography.py +8 -10
- roms_tools/setup/utils.py +396 -23
- roms_tools/tests/test_analysis/test_cdr_analysis.py +144 -0
- roms_tools/tests/test_analysis/test_cdr_ensemble.py +202 -0
- roms_tools/tests/test_analysis/test_roms_output.py +61 -3
- roms_tools/tests/test_setup/test_boundary_forcing.py +54 -52
- roms_tools/tests/test_setup/test_cdr_forcing.py +54 -0
- roms_tools/tests/test_setup/test_cdr_release.py +118 -1
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/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_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/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_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/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_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/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_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/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_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/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/diatSi_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/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/diazP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json +406 -406
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/salt_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/temp_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/u_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_east/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_north/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_south/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/ubar_west/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_east/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_north/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_south/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/v_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_east/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_north/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_south/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/vbar_west/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/boundary_forcing.zarr/zarr.json +182 -182
- roms_tools/tests/test_setup/test_data/grid.zarr/h/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid.zarr/zarr.json +191 -191
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/h/c/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/zarr.json +210 -210
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOCr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DON/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DONr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/DOPr/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Fe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/Lig/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NH4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/NO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/O2/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/PO4/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/SiO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diatSi/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/diazP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/salt/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spCaCO3/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spChl/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spFe/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/spP/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/temp/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/u/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ubar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/v/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/vbar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zarr.json +182 -182
- roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zooC/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/salt/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/temp/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/u/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/ubar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/v/c/0/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/vbar/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/initial_conditions_with_unified_bgc_from_climatology.zarr/zarr.json +187 -187
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/u_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/zarr.json +66 -66
- roms_tools/tests/test_setup/test_grid.py +236 -115
- roms_tools/tests/test_setup/test_initial_conditions.py +94 -41
- roms_tools/tests/test_setup/{test_datasets.py → test_lat_lon_datasets.py} +409 -100
- roms_tools/tests/test_setup/test_nesting.py +119 -31
- roms_tools/tests/test_setup/test_river_datasets.py +48 -0
- roms_tools/tests/test_setup/test_surface_forcing.py +2 -1
- roms_tools/tests/test_setup/test_utils.py +92 -2
- roms_tools/tests/test_setup/utils.py +71 -0
- roms_tools/tests/test_tiling/test_join.py +241 -0
- roms_tools/tests/test_utils.py +139 -17
- roms_tools/tiling/join.py +189 -0
- roms_tools/utils.py +131 -99
- {roms_tools-3.1.2.dist-info → roms_tools-3.3.0.dist-info}/METADATA +12 -2
- {roms_tools-3.1.2.dist-info → roms_tools-3.3.0.dist-info}/RECORD +221 -211
- {roms_tools-3.1.2.dist-info → roms_tools-3.3.0.dist-info}/WHEEL +0 -0
- {roms_tools-3.1.2.dist-info → roms_tools-3.3.0.dist-info}/licenses/LICENSE +0 -0
- {roms_tools-3.1.2.dist-info → roms_tools-3.3.0.dist-info}/top_level.txt +0 -0
roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zarr.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"attributes": {
|
|
3
3
|
"title": "ROMS initial conditions file created by ROMS-Tools",
|
|
4
|
-
"roms_tools_version": "
|
|
4
|
+
"roms_tools_version": "3.1.3.dev32+g91d580e67.d20250929",
|
|
5
5
|
"ini_time": "2021-06-29 00:00:00",
|
|
6
6
|
"model_reference_date": "2000-01-01 00:00:00",
|
|
7
7
|
"adjust_depth_for_sea_surface_height": "False",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"kind": "inline",
|
|
17
17
|
"must_understand": false,
|
|
18
18
|
"metadata": {
|
|
19
|
-
"
|
|
19
|
+
"spP": {
|
|
20
20
|
"shape": [
|
|
21
21
|
1,
|
|
22
22
|
3,
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
],
|
|
60
60
|
"attributes": {
|
|
61
|
-
"long_name": "small phytoplankton
|
|
61
|
+
"long_name": "small phytoplankton phosphorous",
|
|
62
62
|
"units": "mmol/m^3",
|
|
63
63
|
"coordinates": "abs_time",
|
|
64
64
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"node_type": "array",
|
|
74
74
|
"storage_transformers": []
|
|
75
75
|
},
|
|
76
|
-
"
|
|
76
|
+
"DONr": {
|
|
77
77
|
"shape": [
|
|
78
78
|
1,
|
|
79
79
|
3,
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
}
|
|
116
116
|
],
|
|
117
117
|
"attributes": {
|
|
118
|
-
"long_name": "
|
|
118
|
+
"long_name": "refractory dissolved organic nitrogen",
|
|
119
119
|
"units": "mmol/m^3",
|
|
120
120
|
"coordinates": "abs_time",
|
|
121
121
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -130,9 +130,10 @@
|
|
|
130
130
|
"node_type": "array",
|
|
131
131
|
"storage_transformers": []
|
|
132
132
|
},
|
|
133
|
-
"
|
|
133
|
+
"temp": {
|
|
134
134
|
"shape": [
|
|
135
135
|
1,
|
|
136
|
+
3,
|
|
136
137
|
4,
|
|
137
138
|
4
|
|
138
139
|
],
|
|
@@ -142,6 +143,7 @@
|
|
|
142
143
|
"configuration": {
|
|
143
144
|
"chunk_shape": [
|
|
144
145
|
1,
|
|
146
|
+
3,
|
|
145
147
|
4,
|
|
146
148
|
4
|
|
147
149
|
]
|
|
@@ -170,13 +172,14 @@
|
|
|
170
172
|
}
|
|
171
173
|
],
|
|
172
174
|
"attributes": {
|
|
173
|
-
"long_name": "
|
|
174
|
-
"units": "
|
|
175
|
+
"long_name": "potential temperature",
|
|
176
|
+
"units": "degrees Celsius",
|
|
175
177
|
"coordinates": "abs_time",
|
|
176
178
|
"_FillValue": "AAAAAAAA+H8="
|
|
177
179
|
},
|
|
178
180
|
"dimension_names": [
|
|
179
181
|
"ocean_time",
|
|
182
|
+
"s_rho",
|
|
180
183
|
"eta_rho",
|
|
181
184
|
"xi_rho"
|
|
182
185
|
],
|
|
@@ -241,7 +244,7 @@
|
|
|
241
244
|
"node_type": "array",
|
|
242
245
|
"storage_transformers": []
|
|
243
246
|
},
|
|
244
|
-
"
|
|
247
|
+
"spCaCO3": {
|
|
245
248
|
"shape": [
|
|
246
249
|
1,
|
|
247
250
|
3,
|
|
@@ -283,7 +286,7 @@
|
|
|
283
286
|
}
|
|
284
287
|
],
|
|
285
288
|
"attributes": {
|
|
286
|
-
"long_name": "
|
|
289
|
+
"long_name": "small phytoplankton CaCO3",
|
|
287
290
|
"units": "mmol/m^3",
|
|
288
291
|
"coordinates": "abs_time",
|
|
289
292
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -355,7 +358,7 @@
|
|
|
355
358
|
"node_type": "array",
|
|
356
359
|
"storage_transformers": []
|
|
357
360
|
},
|
|
358
|
-
"
|
|
361
|
+
"Lig": {
|
|
359
362
|
"shape": [
|
|
360
363
|
1,
|
|
361
364
|
3,
|
|
@@ -397,7 +400,7 @@
|
|
|
397
400
|
}
|
|
398
401
|
],
|
|
399
402
|
"attributes": {
|
|
400
|
-
"long_name": "
|
|
403
|
+
"long_name": "iron binding ligand",
|
|
401
404
|
"units": "mmol/m^3",
|
|
402
405
|
"coordinates": "abs_time",
|
|
403
406
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -412,10 +415,9 @@
|
|
|
412
415
|
"node_type": "array",
|
|
413
416
|
"storage_transformers": []
|
|
414
417
|
},
|
|
415
|
-
"
|
|
418
|
+
"zeta": {
|
|
416
419
|
"shape": [
|
|
417
420
|
1,
|
|
418
|
-
3,
|
|
419
421
|
4,
|
|
420
422
|
4
|
|
421
423
|
],
|
|
@@ -425,7 +427,6 @@
|
|
|
425
427
|
"configuration": {
|
|
426
428
|
"chunk_shape": [
|
|
427
429
|
1,
|
|
428
|
-
3,
|
|
429
430
|
4,
|
|
430
431
|
4
|
|
431
432
|
]
|
|
@@ -454,14 +455,13 @@
|
|
|
454
455
|
}
|
|
455
456
|
],
|
|
456
457
|
"attributes": {
|
|
457
|
-
"long_name": "
|
|
458
|
-
"units": "
|
|
458
|
+
"long_name": "sea surface height",
|
|
459
|
+
"units": "m",
|
|
459
460
|
"coordinates": "abs_time",
|
|
460
461
|
"_FillValue": "AAAAAAAA+H8="
|
|
461
462
|
},
|
|
462
463
|
"dimension_names": [
|
|
463
464
|
"ocean_time",
|
|
464
|
-
"s_rho",
|
|
465
465
|
"eta_rho",
|
|
466
466
|
"xi_rho"
|
|
467
467
|
],
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
"node_type": "array",
|
|
470
470
|
"storage_transformers": []
|
|
471
471
|
},
|
|
472
|
-
"
|
|
472
|
+
"diatFe": {
|
|
473
473
|
"shape": [
|
|
474
474
|
1,
|
|
475
475
|
3,
|
|
@@ -511,7 +511,7 @@
|
|
|
511
511
|
}
|
|
512
512
|
],
|
|
513
513
|
"attributes": {
|
|
514
|
-
"long_name": "
|
|
514
|
+
"long_name": "diatom iron",
|
|
515
515
|
"units": "mmol/m^3",
|
|
516
516
|
"coordinates": "abs_time",
|
|
517
517
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
"node_type": "array",
|
|
527
527
|
"storage_transformers": []
|
|
528
528
|
},
|
|
529
|
-
"
|
|
529
|
+
"DIC": {
|
|
530
530
|
"shape": [
|
|
531
531
|
1,
|
|
532
532
|
3,
|
|
@@ -568,8 +568,8 @@
|
|
|
568
568
|
}
|
|
569
569
|
],
|
|
570
570
|
"attributes": {
|
|
571
|
-
"long_name": "
|
|
572
|
-
"units": "
|
|
571
|
+
"long_name": "dissolved inorganic carbon",
|
|
572
|
+
"units": "mmol/m^3",
|
|
573
573
|
"coordinates": "abs_time",
|
|
574
574
|
"_FillValue": "AAAAAAAA+H8="
|
|
575
575
|
},
|
|
@@ -583,22 +583,16 @@
|
|
|
583
583
|
"node_type": "array",
|
|
584
584
|
"storage_transformers": []
|
|
585
585
|
},
|
|
586
|
-
"
|
|
586
|
+
"abs_time": {
|
|
587
587
|
"shape": [
|
|
588
|
-
1
|
|
589
|
-
3,
|
|
590
|
-
4,
|
|
591
|
-
4
|
|
588
|
+
1
|
|
592
589
|
],
|
|
593
|
-
"data_type": "
|
|
590
|
+
"data_type": "int64",
|
|
594
591
|
"chunk_grid": {
|
|
595
592
|
"name": "regular",
|
|
596
593
|
"configuration": {
|
|
597
594
|
"chunk_shape": [
|
|
598
|
-
1
|
|
599
|
-
3,
|
|
600
|
-
4,
|
|
601
|
-
4
|
|
595
|
+
1
|
|
602
596
|
]
|
|
603
597
|
}
|
|
604
598
|
},
|
|
@@ -608,7 +602,7 @@
|
|
|
608
602
|
"separator": "/"
|
|
609
603
|
}
|
|
610
604
|
},
|
|
611
|
-
"fill_value": 0
|
|
605
|
+
"fill_value": 0,
|
|
612
606
|
"codecs": [
|
|
613
607
|
{
|
|
614
608
|
"name": "bytes",
|
|
@@ -625,22 +619,18 @@
|
|
|
625
619
|
}
|
|
626
620
|
],
|
|
627
621
|
"attributes": {
|
|
628
|
-
"long_name": "
|
|
629
|
-
"units": "
|
|
630
|
-
"
|
|
631
|
-
"_FillValue": "AAAAAAAA+H8="
|
|
622
|
+
"long_name": "absolute time",
|
|
623
|
+
"units": "days since 2021-06-29 00:00:00",
|
|
624
|
+
"calendar": "proleptic_gregorian"
|
|
632
625
|
},
|
|
633
626
|
"dimension_names": [
|
|
634
|
-
"ocean_time"
|
|
635
|
-
"s_rho",
|
|
636
|
-
"eta_rho",
|
|
637
|
-
"xi_rho"
|
|
627
|
+
"ocean_time"
|
|
638
628
|
],
|
|
639
629
|
"zarr_format": 3,
|
|
640
630
|
"node_type": "array",
|
|
641
631
|
"storage_transformers": []
|
|
642
632
|
},
|
|
643
|
-
"
|
|
633
|
+
"diazP": {
|
|
644
634
|
"shape": [
|
|
645
635
|
1,
|
|
646
636
|
3,
|
|
@@ -682,7 +672,7 @@
|
|
|
682
672
|
}
|
|
683
673
|
],
|
|
684
674
|
"attributes": {
|
|
685
|
-
"long_name": "diazotroph
|
|
675
|
+
"long_name": "diazotroph phosphorus",
|
|
686
676
|
"units": "mmol/m^3",
|
|
687
677
|
"coordinates": "abs_time",
|
|
688
678
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -697,7 +687,7 @@
|
|
|
697
687
|
"node_type": "array",
|
|
698
688
|
"storage_transformers": []
|
|
699
689
|
},
|
|
700
|
-
"
|
|
690
|
+
"diazC": {
|
|
701
691
|
"shape": [
|
|
702
692
|
1,
|
|
703
693
|
3,
|
|
@@ -739,7 +729,7 @@
|
|
|
739
729
|
}
|
|
740
730
|
],
|
|
741
731
|
"attributes": {
|
|
742
|
-
"long_name": "diazotroph
|
|
732
|
+
"long_name": "diazotroph carbon",
|
|
743
733
|
"units": "mmol/m^3",
|
|
744
734
|
"coordinates": "abs_time",
|
|
745
735
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -754,7 +744,7 @@
|
|
|
754
744
|
"node_type": "array",
|
|
755
745
|
"storage_transformers": []
|
|
756
746
|
},
|
|
757
|
-
"
|
|
747
|
+
"diatC": {
|
|
758
748
|
"shape": [
|
|
759
749
|
1,
|
|
760
750
|
3,
|
|
@@ -796,7 +786,7 @@
|
|
|
796
786
|
}
|
|
797
787
|
],
|
|
798
788
|
"attributes": {
|
|
799
|
-
"long_name": "diatom
|
|
789
|
+
"long_name": "diatom carbon",
|
|
800
790
|
"units": "mmol/m^3",
|
|
801
791
|
"coordinates": "abs_time",
|
|
802
792
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -811,7 +801,7 @@
|
|
|
811
801
|
"node_type": "array",
|
|
812
802
|
"storage_transformers": []
|
|
813
803
|
},
|
|
814
|
-
"
|
|
804
|
+
"O2": {
|
|
815
805
|
"shape": [
|
|
816
806
|
1,
|
|
817
807
|
3,
|
|
@@ -853,7 +843,7 @@
|
|
|
853
843
|
}
|
|
854
844
|
],
|
|
855
845
|
"attributes": {
|
|
856
|
-
"long_name": "dissolved
|
|
846
|
+
"long_name": "dissolved oxygen",
|
|
857
847
|
"units": "mmol/m^3",
|
|
858
848
|
"coordinates": "abs_time",
|
|
859
849
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -868,7 +858,7 @@
|
|
|
868
858
|
"node_type": "array",
|
|
869
859
|
"storage_transformers": []
|
|
870
860
|
},
|
|
871
|
-
"
|
|
861
|
+
"Fe": {
|
|
872
862
|
"shape": [
|
|
873
863
|
1,
|
|
874
864
|
3,
|
|
@@ -910,8 +900,8 @@
|
|
|
910
900
|
}
|
|
911
901
|
],
|
|
912
902
|
"attributes": {
|
|
913
|
-
"long_name": "
|
|
914
|
-
"units": "
|
|
903
|
+
"long_name": "dissolved inorganic iron",
|
|
904
|
+
"units": "mmol/m^3",
|
|
915
905
|
"coordinates": "abs_time",
|
|
916
906
|
"_FillValue": "AAAAAAAA+H8="
|
|
917
907
|
},
|
|
@@ -925,16 +915,22 @@
|
|
|
925
915
|
"node_type": "array",
|
|
926
916
|
"storage_transformers": []
|
|
927
917
|
},
|
|
928
|
-
"
|
|
918
|
+
"diatChl": {
|
|
929
919
|
"shape": [
|
|
930
|
-
1
|
|
920
|
+
1,
|
|
921
|
+
3,
|
|
922
|
+
4,
|
|
923
|
+
4
|
|
931
924
|
],
|
|
932
|
-
"data_type": "
|
|
925
|
+
"data_type": "float32",
|
|
933
926
|
"chunk_grid": {
|
|
934
927
|
"name": "regular",
|
|
935
928
|
"configuration": {
|
|
936
929
|
"chunk_shape": [
|
|
937
|
-
1
|
|
930
|
+
1,
|
|
931
|
+
3,
|
|
932
|
+
4,
|
|
933
|
+
4
|
|
938
934
|
]
|
|
939
935
|
}
|
|
940
936
|
},
|
|
@@ -944,7 +940,7 @@
|
|
|
944
940
|
"separator": "/"
|
|
945
941
|
}
|
|
946
942
|
},
|
|
947
|
-
"fill_value": 0,
|
|
943
|
+
"fill_value": 0.0,
|
|
948
944
|
"codecs": [
|
|
949
945
|
{
|
|
950
946
|
"name": "bytes",
|
|
@@ -961,18 +957,22 @@
|
|
|
961
957
|
}
|
|
962
958
|
],
|
|
963
959
|
"attributes": {
|
|
964
|
-
"long_name": "
|
|
965
|
-
"units": "
|
|
966
|
-
"
|
|
960
|
+
"long_name": "diatom chloropyll",
|
|
961
|
+
"units": "mg/m^3",
|
|
962
|
+
"coordinates": "abs_time",
|
|
963
|
+
"_FillValue": "AAAAAAAA+H8="
|
|
967
964
|
},
|
|
968
965
|
"dimension_names": [
|
|
969
|
-
"ocean_time"
|
|
966
|
+
"ocean_time",
|
|
967
|
+
"s_rho",
|
|
968
|
+
"eta_rho",
|
|
969
|
+
"xi_rho"
|
|
970
970
|
],
|
|
971
971
|
"zarr_format": 3,
|
|
972
972
|
"node_type": "array",
|
|
973
973
|
"storage_transformers": []
|
|
974
974
|
},
|
|
975
|
-
"
|
|
975
|
+
"diazFe": {
|
|
976
976
|
"shape": [
|
|
977
977
|
1,
|
|
978
978
|
3,
|
|
@@ -1014,7 +1014,7 @@
|
|
|
1014
1014
|
}
|
|
1015
1015
|
],
|
|
1016
1016
|
"attributes": {
|
|
1017
|
-
"long_name": "
|
|
1017
|
+
"long_name": "diazotroph iron",
|
|
1018
1018
|
"units": "mmol/m^3",
|
|
1019
1019
|
"coordinates": "abs_time",
|
|
1020
1020
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1029,7 +1029,7 @@
|
|
|
1029
1029
|
"node_type": "array",
|
|
1030
1030
|
"storage_transformers": []
|
|
1031
1031
|
},
|
|
1032
|
-
"
|
|
1032
|
+
"DON": {
|
|
1033
1033
|
"shape": [
|
|
1034
1034
|
1,
|
|
1035
1035
|
3,
|
|
@@ -1071,7 +1071,7 @@
|
|
|
1071
1071
|
}
|
|
1072
1072
|
],
|
|
1073
1073
|
"attributes": {
|
|
1074
|
-
"long_name": "dissolved
|
|
1074
|
+
"long_name": "dissolved organic nitrogen",
|
|
1075
1075
|
"units": "mmol/m^3",
|
|
1076
1076
|
"coordinates": "abs_time",
|
|
1077
1077
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1086,7 +1086,7 @@
|
|
|
1086
1086
|
"node_type": "array",
|
|
1087
1087
|
"storage_transformers": []
|
|
1088
1088
|
},
|
|
1089
|
-
"
|
|
1089
|
+
"ALK": {
|
|
1090
1090
|
"shape": [
|
|
1091
1091
|
1,
|
|
1092
1092
|
3,
|
|
@@ -1128,8 +1128,8 @@
|
|
|
1128
1128
|
}
|
|
1129
1129
|
],
|
|
1130
1130
|
"attributes": {
|
|
1131
|
-
"long_name": "
|
|
1132
|
-
"units": "
|
|
1131
|
+
"long_name": "alkalinity",
|
|
1132
|
+
"units": "meq/m^3",
|
|
1133
1133
|
"coordinates": "abs_time",
|
|
1134
1134
|
"_FillValue": "AAAAAAAA+H8="
|
|
1135
1135
|
},
|
|
@@ -1190,11 +1190,8 @@
|
|
|
1190
1190
|
"node_type": "array",
|
|
1191
1191
|
"storage_transformers": []
|
|
1192
1192
|
},
|
|
1193
|
-
"
|
|
1193
|
+
"Cs_w": {
|
|
1194
1194
|
"shape": [
|
|
1195
|
-
1,
|
|
1196
|
-
3,
|
|
1197
|
-
4,
|
|
1198
1195
|
4
|
|
1199
1196
|
],
|
|
1200
1197
|
"data_type": "float32",
|
|
@@ -1202,9 +1199,6 @@
|
|
|
1202
1199
|
"name": "regular",
|
|
1203
1200
|
"configuration": {
|
|
1204
1201
|
"chunk_shape": [
|
|
1205
|
-
1,
|
|
1206
|
-
3,
|
|
1207
|
-
4,
|
|
1208
1202
|
4
|
|
1209
1203
|
]
|
|
1210
1204
|
}
|
|
@@ -1232,27 +1226,23 @@
|
|
|
1232
1226
|
}
|
|
1233
1227
|
],
|
|
1234
1228
|
"attributes": {
|
|
1235
|
-
"long_name": "
|
|
1236
|
-
"units": "
|
|
1237
|
-
"coordinates": "abs_time",
|
|
1229
|
+
"long_name": "Vertical stretching function at w-points",
|
|
1230
|
+
"units": "nondimensional",
|
|
1238
1231
|
"_FillValue": "AAAAAAAA+H8="
|
|
1239
1232
|
},
|
|
1240
1233
|
"dimension_names": [
|
|
1241
|
-
"
|
|
1242
|
-
"s_rho",
|
|
1243
|
-
"eta_rho",
|
|
1244
|
-
"xi_rho"
|
|
1234
|
+
"s_w"
|
|
1245
1235
|
],
|
|
1246
1236
|
"zarr_format": 3,
|
|
1247
1237
|
"node_type": "array",
|
|
1248
1238
|
"storage_transformers": []
|
|
1249
1239
|
},
|
|
1250
|
-
"
|
|
1240
|
+
"u": {
|
|
1251
1241
|
"shape": [
|
|
1252
1242
|
1,
|
|
1253
1243
|
3,
|
|
1254
1244
|
4,
|
|
1255
|
-
|
|
1245
|
+
3
|
|
1256
1246
|
],
|
|
1257
1247
|
"data_type": "float32",
|
|
1258
1248
|
"chunk_grid": {
|
|
@@ -1262,7 +1252,7 @@
|
|
|
1262
1252
|
1,
|
|
1263
1253
|
3,
|
|
1264
1254
|
4,
|
|
1265
|
-
|
|
1255
|
+
3
|
|
1266
1256
|
]
|
|
1267
1257
|
}
|
|
1268
1258
|
},
|
|
@@ -1289,8 +1279,8 @@
|
|
|
1289
1279
|
}
|
|
1290
1280
|
],
|
|
1291
1281
|
"attributes": {
|
|
1292
|
-
"long_name": "
|
|
1293
|
-
"units": "
|
|
1282
|
+
"long_name": "u-flux component",
|
|
1283
|
+
"units": "m/s",
|
|
1294
1284
|
"coordinates": "abs_time",
|
|
1295
1285
|
"_FillValue": "AAAAAAAA+H8="
|
|
1296
1286
|
},
|
|
@@ -1298,18 +1288,18 @@
|
|
|
1298
1288
|
"ocean_time",
|
|
1299
1289
|
"s_rho",
|
|
1300
1290
|
"eta_rho",
|
|
1301
|
-
"
|
|
1291
|
+
"xi_u"
|
|
1302
1292
|
],
|
|
1303
1293
|
"zarr_format": 3,
|
|
1304
1294
|
"node_type": "array",
|
|
1305
1295
|
"storage_transformers": []
|
|
1306
1296
|
},
|
|
1307
|
-
"
|
|
1297
|
+
"spFe": {
|
|
1308
1298
|
"shape": [
|
|
1309
1299
|
1,
|
|
1310
1300
|
3,
|
|
1311
1301
|
4,
|
|
1312
|
-
|
|
1302
|
+
4
|
|
1313
1303
|
],
|
|
1314
1304
|
"data_type": "float32",
|
|
1315
1305
|
"chunk_grid": {
|
|
@@ -1319,7 +1309,7 @@
|
|
|
1319
1309
|
1,
|
|
1320
1310
|
3,
|
|
1321
1311
|
4,
|
|
1322
|
-
|
|
1312
|
+
4
|
|
1323
1313
|
]
|
|
1324
1314
|
}
|
|
1325
1315
|
},
|
|
@@ -1346,8 +1336,8 @@
|
|
|
1346
1336
|
}
|
|
1347
1337
|
],
|
|
1348
1338
|
"attributes": {
|
|
1349
|
-
"long_name": "
|
|
1350
|
-
"units": "m
|
|
1339
|
+
"long_name": "small phytoplankton iron",
|
|
1340
|
+
"units": "mmol/m^3",
|
|
1351
1341
|
"coordinates": "abs_time",
|
|
1352
1342
|
"_FillValue": "AAAAAAAA+H8="
|
|
1353
1343
|
},
|
|
@@ -1355,13 +1345,13 @@
|
|
|
1355
1345
|
"ocean_time",
|
|
1356
1346
|
"s_rho",
|
|
1357
1347
|
"eta_rho",
|
|
1358
|
-
"
|
|
1348
|
+
"xi_rho"
|
|
1359
1349
|
],
|
|
1360
1350
|
"zarr_format": 3,
|
|
1361
1351
|
"node_type": "array",
|
|
1362
1352
|
"storage_transformers": []
|
|
1363
1353
|
},
|
|
1364
|
-
"
|
|
1354
|
+
"DOCr": {
|
|
1365
1355
|
"shape": [
|
|
1366
1356
|
1,
|
|
1367
1357
|
3,
|
|
@@ -1403,8 +1393,8 @@
|
|
|
1403
1393
|
}
|
|
1404
1394
|
],
|
|
1405
1395
|
"attributes": {
|
|
1406
|
-
"long_name": "
|
|
1407
|
-
"units": "
|
|
1396
|
+
"long_name": "refractory dissolved organic carbon",
|
|
1397
|
+
"units": "mmol/m^3",
|
|
1408
1398
|
"coordinates": "abs_time",
|
|
1409
1399
|
"_FillValue": "AAAAAAAA+H8="
|
|
1410
1400
|
},
|
|
@@ -1418,16 +1408,20 @@
|
|
|
1418
1408
|
"node_type": "array",
|
|
1419
1409
|
"storage_transformers": []
|
|
1420
1410
|
},
|
|
1421
|
-
"
|
|
1411
|
+
"ubar": {
|
|
1422
1412
|
"shape": [
|
|
1423
|
-
|
|
1413
|
+
1,
|
|
1414
|
+
4,
|
|
1415
|
+
3
|
|
1424
1416
|
],
|
|
1425
1417
|
"data_type": "float32",
|
|
1426
1418
|
"chunk_grid": {
|
|
1427
1419
|
"name": "regular",
|
|
1428
1420
|
"configuration": {
|
|
1429
1421
|
"chunk_shape": [
|
|
1430
|
-
|
|
1422
|
+
1,
|
|
1423
|
+
4,
|
|
1424
|
+
3
|
|
1431
1425
|
]
|
|
1432
1426
|
}
|
|
1433
1427
|
},
|
|
@@ -1454,18 +1448,21 @@
|
|
|
1454
1448
|
}
|
|
1455
1449
|
],
|
|
1456
1450
|
"attributes": {
|
|
1457
|
-
"long_name": "
|
|
1458
|
-
"units": "
|
|
1451
|
+
"long_name": "vertically integrated u-flux component",
|
|
1452
|
+
"units": "m/s",
|
|
1453
|
+
"coordinates": "abs_time",
|
|
1459
1454
|
"_FillValue": "AAAAAAAA+H8="
|
|
1460
1455
|
},
|
|
1461
1456
|
"dimension_names": [
|
|
1462
|
-
"
|
|
1457
|
+
"ocean_time",
|
|
1458
|
+
"eta_rho",
|
|
1459
|
+
"xi_u"
|
|
1463
1460
|
],
|
|
1464
1461
|
"zarr_format": 3,
|
|
1465
1462
|
"node_type": "array",
|
|
1466
1463
|
"storage_transformers": []
|
|
1467
1464
|
},
|
|
1468
|
-
"
|
|
1465
|
+
"diazChl": {
|
|
1469
1466
|
"shape": [
|
|
1470
1467
|
1,
|
|
1471
1468
|
3,
|
|
@@ -1507,8 +1504,8 @@
|
|
|
1507
1504
|
}
|
|
1508
1505
|
],
|
|
1509
1506
|
"attributes": {
|
|
1510
|
-
"long_name": "
|
|
1511
|
-
"units": "
|
|
1507
|
+
"long_name": "diazotroph chloropyll",
|
|
1508
|
+
"units": "mg/m^3",
|
|
1512
1509
|
"coordinates": "abs_time",
|
|
1513
1510
|
"_FillValue": "AAAAAAAA+H8="
|
|
1514
1511
|
},
|
|
@@ -1522,11 +1519,12 @@
|
|
|
1522
1519
|
"node_type": "array",
|
|
1523
1520
|
"storage_transformers": []
|
|
1524
1521
|
},
|
|
1525
|
-
"
|
|
1522
|
+
"SiO3": {
|
|
1526
1523
|
"shape": [
|
|
1527
1524
|
1,
|
|
1525
|
+
3,
|
|
1528
1526
|
4,
|
|
1529
|
-
|
|
1527
|
+
4
|
|
1530
1528
|
],
|
|
1531
1529
|
"data_type": "float32",
|
|
1532
1530
|
"chunk_grid": {
|
|
@@ -1534,8 +1532,9 @@
|
|
|
1534
1532
|
"configuration": {
|
|
1535
1533
|
"chunk_shape": [
|
|
1536
1534
|
1,
|
|
1535
|
+
3,
|
|
1537
1536
|
4,
|
|
1538
|
-
|
|
1537
|
+
4
|
|
1539
1538
|
]
|
|
1540
1539
|
}
|
|
1541
1540
|
},
|
|
@@ -1562,15 +1561,16 @@
|
|
|
1562
1561
|
}
|
|
1563
1562
|
],
|
|
1564
1563
|
"attributes": {
|
|
1565
|
-
"long_name": "
|
|
1566
|
-
"units": "m
|
|
1564
|
+
"long_name": "dissolved inorganic silicate",
|
|
1565
|
+
"units": "mmol/m^3",
|
|
1567
1566
|
"coordinates": "abs_time",
|
|
1568
1567
|
"_FillValue": "AAAAAAAA+H8="
|
|
1569
1568
|
},
|
|
1570
1569
|
"dimension_names": [
|
|
1571
1570
|
"ocean_time",
|
|
1571
|
+
"s_rho",
|
|
1572
1572
|
"eta_rho",
|
|
1573
|
-
"
|
|
1573
|
+
"xi_rho"
|
|
1574
1574
|
],
|
|
1575
1575
|
"zarr_format": 3,
|
|
1576
1576
|
"node_type": "array",
|
|
@@ -1633,7 +1633,7 @@
|
|
|
1633
1633
|
"node_type": "array",
|
|
1634
1634
|
"storage_transformers": []
|
|
1635
1635
|
},
|
|
1636
|
-
"
|
|
1636
|
+
"DIC_ALT_CO2": {
|
|
1637
1637
|
"shape": [
|
|
1638
1638
|
1,
|
|
1639
1639
|
3,
|
|
@@ -1675,7 +1675,7 @@
|
|
|
1675
1675
|
}
|
|
1676
1676
|
],
|
|
1677
1677
|
"attributes": {
|
|
1678
|
-
"long_name": "dissolved inorganic
|
|
1678
|
+
"long_name": "dissolved inorganic carbon, alternative CO2",
|
|
1679
1679
|
"units": "mmol/m^3",
|
|
1680
1680
|
"coordinates": "abs_time",
|
|
1681
1681
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1690,11 +1690,10 @@
|
|
|
1690
1690
|
"node_type": "array",
|
|
1691
1691
|
"storage_transformers": []
|
|
1692
1692
|
},
|
|
1693
|
-
"
|
|
1693
|
+
"vbar": {
|
|
1694
1694
|
"shape": [
|
|
1695
1695
|
1,
|
|
1696
1696
|
3,
|
|
1697
|
-
4,
|
|
1698
1697
|
4
|
|
1699
1698
|
],
|
|
1700
1699
|
"data_type": "float32",
|
|
@@ -1704,7 +1703,6 @@
|
|
|
1704
1703
|
"chunk_shape": [
|
|
1705
1704
|
1,
|
|
1706
1705
|
3,
|
|
1707
|
-
4,
|
|
1708
1706
|
4
|
|
1709
1707
|
]
|
|
1710
1708
|
}
|
|
@@ -1732,22 +1730,21 @@
|
|
|
1732
1730
|
}
|
|
1733
1731
|
],
|
|
1734
1732
|
"attributes": {
|
|
1735
|
-
"long_name": "
|
|
1736
|
-
"units": "
|
|
1733
|
+
"long_name": "vertically integrated v-flux component",
|
|
1734
|
+
"units": "m/s",
|
|
1737
1735
|
"coordinates": "abs_time",
|
|
1738
1736
|
"_FillValue": "AAAAAAAA+H8="
|
|
1739
1737
|
},
|
|
1740
1738
|
"dimension_names": [
|
|
1741
1739
|
"ocean_time",
|
|
1742
|
-
"
|
|
1743
|
-
"eta_rho",
|
|
1740
|
+
"eta_v",
|
|
1744
1741
|
"xi_rho"
|
|
1745
1742
|
],
|
|
1746
1743
|
"zarr_format": 3,
|
|
1747
1744
|
"node_type": "array",
|
|
1748
1745
|
"storage_transformers": []
|
|
1749
1746
|
},
|
|
1750
|
-
"
|
|
1747
|
+
"DOP": {
|
|
1751
1748
|
"shape": [
|
|
1752
1749
|
1,
|
|
1753
1750
|
3,
|
|
@@ -1789,7 +1786,7 @@
|
|
|
1789
1786
|
}
|
|
1790
1787
|
],
|
|
1791
1788
|
"attributes": {
|
|
1792
|
-
"long_name": "dissolved
|
|
1789
|
+
"long_name": "dissolved organic phosphorus",
|
|
1793
1790
|
"units": "mmol/m^3",
|
|
1794
1791
|
"coordinates": "abs_time",
|
|
1795
1792
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1804,7 +1801,7 @@
|
|
|
1804
1801
|
"node_type": "array",
|
|
1805
1802
|
"storage_transformers": []
|
|
1806
1803
|
},
|
|
1807
|
-
"
|
|
1804
|
+
"diatP": {
|
|
1808
1805
|
"shape": [
|
|
1809
1806
|
1,
|
|
1810
1807
|
3,
|
|
@@ -1846,7 +1843,7 @@
|
|
|
1846
1843
|
}
|
|
1847
1844
|
],
|
|
1848
1845
|
"attributes": {
|
|
1849
|
-
"long_name": "
|
|
1846
|
+
"long_name": "diatom phosphorus",
|
|
1850
1847
|
"units": "mmol/m^3",
|
|
1851
1848
|
"coordinates": "abs_time",
|
|
1852
1849
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -1861,10 +1858,11 @@
|
|
|
1861
1858
|
"node_type": "array",
|
|
1862
1859
|
"storage_transformers": []
|
|
1863
1860
|
},
|
|
1864
|
-
"
|
|
1861
|
+
"ALK_ALT_CO2": {
|
|
1865
1862
|
"shape": [
|
|
1866
1863
|
1,
|
|
1867
1864
|
3,
|
|
1865
|
+
4,
|
|
1868
1866
|
4
|
|
1869
1867
|
],
|
|
1870
1868
|
"data_type": "float32",
|
|
@@ -1874,6 +1872,7 @@
|
|
|
1874
1872
|
"chunk_shape": [
|
|
1875
1873
|
1,
|
|
1876
1874
|
3,
|
|
1875
|
+
4,
|
|
1877
1876
|
4
|
|
1878
1877
|
]
|
|
1879
1878
|
}
|
|
@@ -1901,21 +1900,22 @@
|
|
|
1901
1900
|
}
|
|
1902
1901
|
],
|
|
1903
1902
|
"attributes": {
|
|
1904
|
-
"long_name": "
|
|
1905
|
-
"units": "m
|
|
1903
|
+
"long_name": "alkalinity, alternative CO2",
|
|
1904
|
+
"units": "meq/m^3",
|
|
1906
1905
|
"coordinates": "abs_time",
|
|
1907
1906
|
"_FillValue": "AAAAAAAA+H8="
|
|
1908
1907
|
},
|
|
1909
1908
|
"dimension_names": [
|
|
1910
1909
|
"ocean_time",
|
|
1911
|
-
"
|
|
1910
|
+
"s_rho",
|
|
1911
|
+
"eta_rho",
|
|
1912
1912
|
"xi_rho"
|
|
1913
1913
|
],
|
|
1914
1914
|
"zarr_format": 3,
|
|
1915
1915
|
"node_type": "array",
|
|
1916
1916
|
"storage_transformers": []
|
|
1917
1917
|
},
|
|
1918
|
-
"
|
|
1918
|
+
"spChl": {
|
|
1919
1919
|
"shape": [
|
|
1920
1920
|
1,
|
|
1921
1921
|
3,
|
|
@@ -1957,8 +1957,8 @@
|
|
|
1957
1957
|
}
|
|
1958
1958
|
],
|
|
1959
1959
|
"attributes": {
|
|
1960
|
-
"long_name": "
|
|
1961
|
-
"units": "
|
|
1960
|
+
"long_name": "small phytoplankton chlorophyll",
|
|
1961
|
+
"units": "mg/m^3",
|
|
1962
1962
|
"coordinates": "abs_time",
|
|
1963
1963
|
"_FillValue": "AAAAAAAA+H8="
|
|
1964
1964
|
},
|
|
@@ -1972,7 +1972,7 @@
|
|
|
1972
1972
|
"node_type": "array",
|
|
1973
1973
|
"storage_transformers": []
|
|
1974
1974
|
},
|
|
1975
|
-
"
|
|
1975
|
+
"NO3": {
|
|
1976
1976
|
"shape": [
|
|
1977
1977
|
1,
|
|
1978
1978
|
3,
|
|
@@ -2014,7 +2014,7 @@
|
|
|
2014
2014
|
}
|
|
2015
2015
|
],
|
|
2016
2016
|
"attributes": {
|
|
2017
|
-
"long_name": "
|
|
2017
|
+
"long_name": "dissolved inorganic nitrate",
|
|
2018
2018
|
"units": "mmol/m^3",
|
|
2019
2019
|
"coordinates": "abs_time",
|
|
2020
2020
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2029,7 +2029,7 @@
|
|
|
2029
2029
|
"node_type": "array",
|
|
2030
2030
|
"storage_transformers": []
|
|
2031
2031
|
},
|
|
2032
|
-
"
|
|
2032
|
+
"diatSi": {
|
|
2033
2033
|
"shape": [
|
|
2034
2034
|
1,
|
|
2035
2035
|
3,
|
|
@@ -2071,8 +2071,8 @@
|
|
|
2071
2071
|
}
|
|
2072
2072
|
],
|
|
2073
2073
|
"attributes": {
|
|
2074
|
-
"long_name": "
|
|
2075
|
-
"units": "
|
|
2074
|
+
"long_name": "diatom silicate",
|
|
2075
|
+
"units": "mmol/m^3",
|
|
2076
2076
|
"coordinates": "abs_time",
|
|
2077
2077
|
"_FillValue": "AAAAAAAA+H8="
|
|
2078
2078
|
},
|
|
@@ -2086,7 +2086,7 @@
|
|
|
2086
2086
|
"node_type": "array",
|
|
2087
2087
|
"storage_transformers": []
|
|
2088
2088
|
},
|
|
2089
|
-
"
|
|
2089
|
+
"DOPr": {
|
|
2090
2090
|
"shape": [
|
|
2091
2091
|
1,
|
|
2092
2092
|
3,
|
|
@@ -2128,7 +2128,7 @@
|
|
|
2128
2128
|
}
|
|
2129
2129
|
],
|
|
2130
2130
|
"attributes": {
|
|
2131
|
-
"long_name": "dissolved
|
|
2131
|
+
"long_name": "refractory dissolved organic phosphorus",
|
|
2132
2132
|
"units": "mmol/m^3",
|
|
2133
2133
|
"coordinates": "abs_time",
|
|
2134
2134
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2143,7 +2143,7 @@
|
|
|
2143
2143
|
"node_type": "array",
|
|
2144
2144
|
"storage_transformers": []
|
|
2145
2145
|
},
|
|
2146
|
-
"
|
|
2146
|
+
"DOC": {
|
|
2147
2147
|
"shape": [
|
|
2148
2148
|
1,
|
|
2149
2149
|
3,
|
|
@@ -2185,7 +2185,7 @@
|
|
|
2185
2185
|
}
|
|
2186
2186
|
],
|
|
2187
2187
|
"attributes": {
|
|
2188
|
-
"long_name": "
|
|
2188
|
+
"long_name": "dissolved organic carbon",
|
|
2189
2189
|
"units": "mmol/m^3",
|
|
2190
2190
|
"coordinates": "abs_time",
|
|
2191
2191
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2200,7 +2200,7 @@
|
|
|
2200
2200
|
"node_type": "array",
|
|
2201
2201
|
"storage_transformers": []
|
|
2202
2202
|
},
|
|
2203
|
-
"
|
|
2203
|
+
"zooC": {
|
|
2204
2204
|
"shape": [
|
|
2205
2205
|
1,
|
|
2206
2206
|
3,
|
|
@@ -2242,7 +2242,7 @@
|
|
|
2242
2242
|
}
|
|
2243
2243
|
],
|
|
2244
2244
|
"attributes": {
|
|
2245
|
-
"long_name": "
|
|
2245
|
+
"long_name": "zooplankton carbon",
|
|
2246
2246
|
"units": "mmol/m^3",
|
|
2247
2247
|
"coordinates": "abs_time",
|
|
2248
2248
|
"_FillValue": "AAAAAAAA+H8="
|
|
@@ -2257,16 +2257,22 @@
|
|
|
2257
2257
|
"node_type": "array",
|
|
2258
2258
|
"storage_transformers": []
|
|
2259
2259
|
},
|
|
2260
|
-
"
|
|
2260
|
+
"NH4": {
|
|
2261
2261
|
"shape": [
|
|
2262
|
-
|
|
2262
|
+
1,
|
|
2263
|
+
3,
|
|
2264
|
+
4,
|
|
2265
|
+
4
|
|
2263
2266
|
],
|
|
2264
2267
|
"data_type": "float32",
|
|
2265
2268
|
"chunk_grid": {
|
|
2266
2269
|
"name": "regular",
|
|
2267
2270
|
"configuration": {
|
|
2268
2271
|
"chunk_shape": [
|
|
2269
|
-
|
|
2272
|
+
1,
|
|
2273
|
+
3,
|
|
2274
|
+
4,
|
|
2275
|
+
4
|
|
2270
2276
|
]
|
|
2271
2277
|
}
|
|
2272
2278
|
},
|
|
@@ -2293,22 +2299,26 @@
|
|
|
2293
2299
|
}
|
|
2294
2300
|
],
|
|
2295
2301
|
"attributes": {
|
|
2296
|
-
"long_name": "
|
|
2297
|
-
"units": "
|
|
2302
|
+
"long_name": "dissolved ammonia",
|
|
2303
|
+
"units": "mmol/m^3",
|
|
2304
|
+
"coordinates": "abs_time",
|
|
2298
2305
|
"_FillValue": "AAAAAAAA+H8="
|
|
2299
2306
|
},
|
|
2300
2307
|
"dimension_names": [
|
|
2301
|
-
"
|
|
2308
|
+
"ocean_time",
|
|
2309
|
+
"s_rho",
|
|
2310
|
+
"eta_rho",
|
|
2311
|
+
"xi_rho"
|
|
2302
2312
|
],
|
|
2303
2313
|
"zarr_format": 3,
|
|
2304
2314
|
"node_type": "array",
|
|
2305
2315
|
"storage_transformers": []
|
|
2306
2316
|
},
|
|
2307
|
-
"
|
|
2317
|
+
"w": {
|
|
2308
2318
|
"shape": [
|
|
2309
2319
|
1,
|
|
2310
|
-
|
|
2311
|
-
|
|
2320
|
+
4,
|
|
2321
|
+
4,
|
|
2312
2322
|
4
|
|
2313
2323
|
],
|
|
2314
2324
|
"data_type": "float32",
|
|
@@ -2317,8 +2327,8 @@
|
|
|
2317
2327
|
"configuration": {
|
|
2318
2328
|
"chunk_shape": [
|
|
2319
2329
|
1,
|
|
2320
|
-
|
|
2321
|
-
|
|
2330
|
+
4,
|
|
2331
|
+
4,
|
|
2322
2332
|
4
|
|
2323
2333
|
]
|
|
2324
2334
|
}
|
|
@@ -2346,37 +2356,31 @@
|
|
|
2346
2356
|
}
|
|
2347
2357
|
],
|
|
2348
2358
|
"attributes": {
|
|
2349
|
-
"long_name": "
|
|
2359
|
+
"long_name": "w-flux component",
|
|
2350
2360
|
"units": "m/s",
|
|
2351
2361
|
"coordinates": "abs_time",
|
|
2352
2362
|
"_FillValue": "AAAAAAAA+H8="
|
|
2353
2363
|
},
|
|
2354
2364
|
"dimension_names": [
|
|
2355
2365
|
"ocean_time",
|
|
2356
|
-
"
|
|
2357
|
-
"
|
|
2366
|
+
"s_w",
|
|
2367
|
+
"eta_rho",
|
|
2358
2368
|
"xi_rho"
|
|
2359
2369
|
],
|
|
2360
2370
|
"zarr_format": 3,
|
|
2361
2371
|
"node_type": "array",
|
|
2362
2372
|
"storage_transformers": []
|
|
2363
2373
|
},
|
|
2364
|
-
"
|
|
2374
|
+
"Cs_r": {
|
|
2365
2375
|
"shape": [
|
|
2366
|
-
|
|
2367
|
-
3,
|
|
2368
|
-
4,
|
|
2369
|
-
4
|
|
2376
|
+
3
|
|
2370
2377
|
],
|
|
2371
2378
|
"data_type": "float32",
|
|
2372
2379
|
"chunk_grid": {
|
|
2373
2380
|
"name": "regular",
|
|
2374
2381
|
"configuration": {
|
|
2375
2382
|
"chunk_shape": [
|
|
2376
|
-
|
|
2377
|
-
3,
|
|
2378
|
-
4,
|
|
2379
|
-
4
|
|
2383
|
+
3
|
|
2380
2384
|
]
|
|
2381
2385
|
}
|
|
2382
2386
|
},
|
|
@@ -2403,26 +2407,22 @@
|
|
|
2403
2407
|
}
|
|
2404
2408
|
],
|
|
2405
2409
|
"attributes": {
|
|
2406
|
-
"long_name": "
|
|
2407
|
-
"units": "
|
|
2408
|
-
"coordinates": "abs_time",
|
|
2410
|
+
"long_name": "Vertical stretching function at rho-points",
|
|
2411
|
+
"units": "nondimensional",
|
|
2409
2412
|
"_FillValue": "AAAAAAAA+H8="
|
|
2410
2413
|
},
|
|
2411
2414
|
"dimension_names": [
|
|
2412
|
-
"
|
|
2413
|
-
"s_rho",
|
|
2414
|
-
"eta_rho",
|
|
2415
|
-
"xi_rho"
|
|
2415
|
+
"s_rho"
|
|
2416
2416
|
],
|
|
2417
2417
|
"zarr_format": 3,
|
|
2418
2418
|
"node_type": "array",
|
|
2419
2419
|
"storage_transformers": []
|
|
2420
2420
|
},
|
|
2421
|
-
"
|
|
2421
|
+
"v": {
|
|
2422
2422
|
"shape": [
|
|
2423
2423
|
1,
|
|
2424
|
-
|
|
2425
|
-
|
|
2424
|
+
3,
|
|
2425
|
+
3,
|
|
2426
2426
|
4
|
|
2427
2427
|
],
|
|
2428
2428
|
"data_type": "float32",
|
|
@@ -2431,8 +2431,8 @@
|
|
|
2431
2431
|
"configuration": {
|
|
2432
2432
|
"chunk_shape": [
|
|
2433
2433
|
1,
|
|
2434
|
-
|
|
2435
|
-
|
|
2434
|
+
3,
|
|
2435
|
+
3,
|
|
2436
2436
|
4
|
|
2437
2437
|
]
|
|
2438
2438
|
}
|
|
@@ -2460,15 +2460,15 @@
|
|
|
2460
2460
|
}
|
|
2461
2461
|
],
|
|
2462
2462
|
"attributes": {
|
|
2463
|
-
"long_name": "
|
|
2463
|
+
"long_name": "v-flux component",
|
|
2464
2464
|
"units": "m/s",
|
|
2465
2465
|
"coordinates": "abs_time",
|
|
2466
2466
|
"_FillValue": "AAAAAAAA+H8="
|
|
2467
2467
|
},
|
|
2468
2468
|
"dimension_names": [
|
|
2469
2469
|
"ocean_time",
|
|
2470
|
-
"
|
|
2471
|
-
"
|
|
2470
|
+
"s_rho",
|
|
2471
|
+
"eta_v",
|
|
2472
2472
|
"xi_rho"
|
|
2473
2473
|
],
|
|
2474
2474
|
"zarr_format": 3,
|