roms-tools 3.3.0__py3-none-any.whl → 3.4.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 +76 -64
- roms_tools/{setup → datasets}/river_datasets.py +9 -4
- roms_tools/datasets/roms_dataset.py +767 -0
- roms_tools/datasets/utils.py +475 -0
- roms_tools/{setup/fill.py → fill.py} +110 -13
- roms_tools/plot.py +4 -4
- roms_tools/setup/boundary_forcing.py +51 -43
- roms_tools/setup/cdr_release.py +2 -4
- roms_tools/setup/grid.py +29 -12
- roms_tools/setup/initial_conditions.py +19 -19
- roms_tools/setup/nesting.py +8 -4
- roms_tools/setup/river_forcing.py +4 -4
- roms_tools/setup/surface_forcing.py +14 -9
- roms_tools/setup/tides.py +1 -1
- roms_tools/setup/topography.py +10 -2
- roms_tools/setup/utils.py +72 -524
- 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 +539 -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_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_grid.py +42 -1
- roms_tools/tests/test_setup/test_initial_conditions.py +3 -94
- 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_tiling/test_partition.py +63 -15
- roms_tools/tests/test_utils.py +78 -0
- roms_tools/tiling/partition.py +81 -211
- roms_tools/utils.py +193 -0
- {roms_tools-3.3.0.dist-info → roms_tools-3.4.0.dist-info}/METADATA +1 -1
- {roms_tools-3.3.0.dist-info → roms_tools-3.4.0.dist-info}/RECORD +46 -170
- {roms_tools-3.3.0.dist-info → roms_tools-3.4.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_ALT_CO2_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/zarr.json +0 -54
- 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/DOP_west/zarr.json +0 -54
- 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/Fe_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/zarr.json +0 -54
- 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/O2_west/zarr.json +0 -54
- 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/diatC_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/zarr.json +0 -54
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/c/0/0/0 +0 -0
- roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/zarr.json +0 -54
- 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/diazChl_west/zarr.json +0 -54
- 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/spChl_west/zarr.json +0 -54
- 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/ALK_west/zarr.json +0 -54
- 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/diatFe_west/zarr.json +0 -54
- 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.4.0.dist-info}/licenses/LICENSE +0 -0
- {roms_tools-3.3.0.dist-info → roms_tools-3.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,192 +1,162 @@
|
|
|
1
1
|
ci/environment-with-xesmf.yml,sha256=1QF0gdRsjisydUNCCZTrsrybh3cCuHrwnLAT0Z1bqmk,234
|
|
2
2
|
ci/environment.yml,sha256=jAi1xo_ZoFNrWevxDRkiKIjMGm1FxzPKocTZwqToT9Y,224
|
|
3
|
-
roms_tools/__init__.py,sha256=
|
|
3
|
+
roms_tools/__init__.py,sha256=69jWGFt-5pXoXJto5xnwROpQQ2suWbuJdoau4FCo5dI,1486
|
|
4
4
|
roms_tools/constants.py,sha256=VxhoT2dE_Urqgp7bBdxIfdFDgR7WR83hY2IE7oqIYDE,371
|
|
5
|
-
roms_tools/
|
|
6
|
-
roms_tools/plot.py,sha256=
|
|
5
|
+
roms_tools/fill.py,sha256=f0_4TWpBWAZYvbTwR3NAwrsdfKv-8rJI3RdEFHoxW3c,14719
|
|
6
|
+
roms_tools/plot.py,sha256=nvc5-lt90D3k0-3kfVl015wTufMOB6Awy0IkERUM9-c,43125
|
|
7
7
|
roms_tools/regrid.py,sha256=_Ytjo7wZc8DUWT8j5d0j7duBHj4sf3epTjRFqjb-NHI,10556
|
|
8
|
-
roms_tools/utils.py,sha256=
|
|
8
|
+
roms_tools/utils.py,sha256=1sNXXwCdS26molLftXtZ4RRNumi8zylH5SMUM9Hg5Hs,43289
|
|
9
9
|
roms_tools/vertical_coordinate.py,sha256=081LONzUSe8tL9H6XniAmY1tIyehc87rMnRZ-kYQ0FI,7417
|
|
10
10
|
roms_tools/analysis/cdr_analysis.py,sha256=l1s2z_BqL-2KsucEv1O6SmyrkX4ov4-CJgiRgyZgOSc,6192
|
|
11
|
-
roms_tools/analysis/cdr_ensemble.py,sha256=
|
|
12
|
-
roms_tools/analysis/roms_output.py,sha256=
|
|
11
|
+
roms_tools/analysis/cdr_ensemble.py,sha256=RrnApKR1qGlNRiqjhF-iWzC0iymcAB17EpoumzRPRs8,6432
|
|
12
|
+
roms_tools/analysis/roms_output.py,sha256=zo7a5sRNQX5yR8ALKyMCvxwMUMxRJ1yosGh8FwIvLmI,14635
|
|
13
13
|
roms_tools/data/grids/GLORYS_global_grid.nc,sha256=XFizF2ayu9VSbM0NCSrOzGa7kFFUvJW6BiRn0Y9XSZY,35140
|
|
14
|
+
roms_tools/datasets/download.py,sha256=9KqN0mNMF64ExCrLma4EZxm6J_6F4HRmYwhHor3dbQE,8851
|
|
15
|
+
roms_tools/datasets/lat_lon_datasets.py,sha256=1Fz0xWXk_UNJD9c2VmdiGhbOKtAP6CRd1puyKeggtjg,91903
|
|
16
|
+
roms_tools/datasets/river_datasets.py,sha256=-CdIZ0Uca0QexRX-EM-fZyheOWQexoHTVNtPBJlXWm0,19541
|
|
17
|
+
roms_tools/datasets/roms_dataset.py,sha256=CBeSWIVWLfcqZUAiLB6fDvZ2bds-9e84nwOLKA6MLhk,29829
|
|
18
|
+
roms_tools/datasets/utils.py,sha256=kbxbEVIOX65UsRZNXG7vcHZAIc5UaYfaPo0hu1VYOjI,16013
|
|
14
19
|
roms_tools/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
roms_tools/setup/boundary_forcing.py,sha256=
|
|
20
|
+
roms_tools/setup/boundary_forcing.py,sha256=44xuTqHgMRm2r6wU-WRgKoCFPTUIPnwQYYaQc_-x6qM,46779
|
|
16
21
|
roms_tools/setup/cdr_forcing.py,sha256=ekPjaCmb1wvE9kaOpEkCwK7sMlPBEPJ42rd6E5IKdr0,40210
|
|
17
|
-
roms_tools/setup/cdr_release.py,sha256=
|
|
18
|
-
roms_tools/setup/
|
|
19
|
-
roms_tools/setup/
|
|
20
|
-
roms_tools/setup/initial_conditions.py,sha256=eaaJzQpqSxFuwwtEIwY1HM0uY3dekYZ4HmV2ZBxI9y0,34366
|
|
21
|
-
roms_tools/setup/lat_lon_datasets.py,sha256=JPIJIWWIoWYFTkgN2Tg7fb7wkc-uYZyUmLugNAIeYvw,91726
|
|
22
|
+
roms_tools/setup/cdr_release.py,sha256=q5SmJZ1wSWuf-_ZQEslm0UHjZ7_Nje6jQ4Z0OJvxagk,25495
|
|
23
|
+
roms_tools/setup/grid.py,sha256=nJluaHqUY7UrXptTuBt2RBDr8fzS4hmkae196uaZmxs,56838
|
|
24
|
+
roms_tools/setup/initial_conditions.py,sha256=b-hJGawx_Gd_rDRnzYdiqFhtfjrosMYDjULAVe2MVWs,34230
|
|
22
25
|
roms_tools/setup/mask.py,sha256=ypHg7dea5lqXbmr99trhgIUwv3hbiFX_04u2tR8ftTo,5423
|
|
23
|
-
roms_tools/setup/nesting.py,sha256=
|
|
24
|
-
roms_tools/setup/
|
|
25
|
-
roms_tools/setup/
|
|
26
|
-
roms_tools/setup/
|
|
27
|
-
roms_tools/setup/
|
|
28
|
-
roms_tools/setup/
|
|
29
|
-
roms_tools/setup/utils.py,sha256=7Oz7iM9yfmBTQ3tU2l2wH9ufmOBnu6llOQdfefIsVxg,75624
|
|
26
|
+
roms_tools/setup/nesting.py,sha256=BWcXk9MqTzOxL5q199CieQdpL8Z49hVpRAPCo4MqvM0,34317
|
|
27
|
+
roms_tools/setup/river_forcing.py,sha256=XeMolmwjbx21EjAXqDtdVdog3u-RabfVrL5DlvU_WDg,42446
|
|
28
|
+
roms_tools/setup/surface_forcing.py,sha256=I-NffeOq-fyLKG9RMd2ChZrM_L8opIw772JAa0z3CUs,29764
|
|
29
|
+
roms_tools/setup/tides.py,sha256=l6P6Ie3PCm1Ig-GGcP7jIBcQ7h4I7wP8f57pEuoeD9M,16265
|
|
30
|
+
roms_tools/setup/topography.py,sha256=6lfDq_-jw1j0KVIId0zKvTAOkQ_3-iq8Q37T1FNnkWo,14459
|
|
31
|
+
roms_tools/setup/utils.py,sha256=YBHZgaisSYaWaUlUvInc6uBuRVEWRDBIMDSY0Qi6hFU,58770
|
|
30
32
|
roms_tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
roms_tools/tests/test_fill.py,sha256=KLFY4E7lggost8IJghOOFQbGqreTuUwNWvRHOSomAco,6133
|
|
31
34
|
roms_tools/tests/test_regrid.py,sha256=EUeFXcsIUZ3Z1usH5hPEQdkIX4b2XSiBM5zPGG3HXFo,4686
|
|
32
|
-
roms_tools/tests/test_utils.py,sha256=
|
|
35
|
+
roms_tools/tests/test_utils.py,sha256=i3wktaSXD1dJtWcOdbGLU9I38KuN3tAXg6Hb6fyL5cA,11064
|
|
33
36
|
roms_tools/tests/test_vertical_coordinate.py,sha256=_L4FGDJGhnDbMhV7g3fc3SGoRt_1Ps82Vx_x2kTxP70,2546
|
|
34
37
|
roms_tools/tests/test_analysis/test_cdr_analysis.py,sha256=_o2-CGN1FVyRkN4IWDVjzG8s0ElD4y9oqT_D9N-LI3c,4222
|
|
35
|
-
roms_tools/tests/test_analysis/test_cdr_ensemble.py,sha256=
|
|
36
|
-
roms_tools/tests/test_analysis/test_roms_output.py,sha256
|
|
38
|
+
roms_tools/tests/test_analysis/test_cdr_ensemble.py,sha256=0pQhGE02-pAxIiTKQUREuONt4i5stEckZKa7_-TYMr4,6834
|
|
39
|
+
roms_tools/tests/test_analysis/test_roms_output.py,sha256=-vmUi6z2ULbaNw7myHiHLV_dRZ8SVi40AKqqwrP-YWw,16059
|
|
40
|
+
roms_tools/tests/test_datasets/test_lat_lon_datasets.py,sha256=53gMqdACkieBkodCYQRIX2J57pmC3dOQKIUmCE8DXq8,33753
|
|
41
|
+
roms_tools/tests/test_datasets/test_river_datasets.py,sha256=Z-D00FFtAmrEiIO-s2ZhPqJSdT8RsO-1SulunOdyUaw,1611
|
|
42
|
+
roms_tools/tests/test_datasets/test_roms_dataset.py,sha256=NVvsGo-DJ8U4eZLmjgYHqZ11AIXHdaMNFeJBjTTgp2M,16733
|
|
43
|
+
roms_tools/tests/test_datasets/test_utils.py,sha256=aqB1abIa6jwBC5ETqIfeMVqpEThw2EglDGbzYjQc7zg,13363
|
|
37
44
|
roms_tools/tests/test_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
roms_tools/tests/test_setup/test_boundary_forcing.py,sha256=
|
|
45
|
+
roms_tools/tests/test_setup/test_boundary_forcing.py,sha256=YdyqvtlRYGr-0XaYv6UdICdEJ5kKOX_wer16UL-ldZ0,25049
|
|
39
46
|
roms_tools/tests/test_setup/test_cdr_forcing.py,sha256=pzaRdMMGfVNp0cHURqGwNU-9HZmxAYH9fjPut0BQr04,38477
|
|
40
|
-
roms_tools/tests/test_setup/test_cdr_release.py,sha256=
|
|
41
|
-
roms_tools/tests/test_setup/
|
|
42
|
-
roms_tools/tests/test_setup/
|
|
43
|
-
roms_tools/tests/test_setup/
|
|
44
|
-
roms_tools/tests/test_setup/test_lat_lon_datasets.py,sha256=8kxU5SbUTJ7w0Dh-fwVTgLv6lHSbKwfSVrunEacR81w,33737
|
|
45
|
-
roms_tools/tests/test_setup/test_nesting.py,sha256=8j9QS8lhkXMvjL6USP-IEDMJKTXltOMgJ9TeqZrpxmc,21592
|
|
46
|
-
roms_tools/tests/test_setup/test_river_datasets.py,sha256=QVE5slCaWnv9jT5JrQvgyHc10Npu-9O7BCqUgaG5PFo,1608
|
|
47
|
+
roms_tools/tests/test_setup/test_cdr_release.py,sha256=pTLDDcaQwTQNXv5jIqM29uFKtyUknrY90GkiriYC8Q4,18927
|
|
48
|
+
roms_tools/tests/test_setup/test_grid.py,sha256=q8PeyzSRwg7NzqaAxvwsLJtScDwxNAncR-Qe1fQPe4A,26496
|
|
49
|
+
roms_tools/tests/test_setup/test_initial_conditions.py,sha256=NSwNIs7_5HzieWW0YjvOLAyRygQXqa7VdXS3EuF0X8U,18931
|
|
50
|
+
roms_tools/tests/test_setup/test_nesting.py,sha256=fpn0MIH3mdCsWjfMaKf-ZqU0u8LTmPz0eoN_wWXWRfY,21620
|
|
47
51
|
roms_tools/tests/test_setup/test_river_forcing.py,sha256=Egj1BzRwk4_o4651p6v2ENNX1kQolZVXgReAZ0Yo7ic,34620
|
|
48
|
-
roms_tools/tests/test_setup/test_surface_forcing.py,sha256=
|
|
49
|
-
roms_tools/tests/test_setup/test_tides.py,sha256=
|
|
50
|
-
roms_tools/tests/test_setup/test_utils.py,sha256=
|
|
52
|
+
roms_tools/tests/test_setup/test_surface_forcing.py,sha256=l2SVvfyk2txpWQAD1fDtSdwT3uL8i0_p5yRje32Y1OI,32409
|
|
53
|
+
roms_tools/tests/test_setup/test_tides.py,sha256=N-cPgLfsFbrW7AnGx6OD8NDd_Eujo-QDJXVjKVa-MhQ,10546
|
|
54
|
+
roms_tools/tests/test_setup/test_utils.py,sha256=TAsEt-6h3pR3MiLLw51Ynm4TI_Hdb-brHkM_KOBq2fQ,9439
|
|
51
55
|
roms_tools/tests/test_setup/test_validation.py,sha256=QpTkGKLFgYTy4WD3mMhZMP6RDABmiFvkwEIk88zRm-k,3954
|
|
52
56
|
roms_tools/tests/test_setup/utils.py,sha256=yft8YHmJOmc8Vv8YSXKYOaEzqcDsD-sAFXZhNVhhLc4,1962
|
|
53
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json,sha256=
|
|
57
|
+
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json,sha256=Dv1zBcP8GQ8rryYMkHco5XNrDOpT-PS-2aIR71yvdD4,121468
|
|
54
58
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/zarr.json,sha256=KSNZ-MO2SPQq_XFwju_mKbmEiVMFHBMf-uw063Ow4gc,888
|
|
55
59
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/c/0/0/0,sha256=2IUorFxLcq1H3SsbEHcijvqrGcOAvvf4ULOEhTWtak8,296
|
|
56
60
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/zarr.json,sha256=bJX2VqKuFUCPupVintBUuo7API1mbiyxp5DEX6ghD6c,888
|
|
57
61
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_north/c/0/0/0,sha256=Y9U1w4a7ewDPCe1TBeNBfdRG1nE7oQJNsjsz-oaoKwI,350
|
|
58
62
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/zarr.json,sha256=_286j0H_oBnrjlqbSIZ9z6cWPlq8NFdSOQp0ympsZEs,888
|
|
59
63
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_south/c/0/0/0,sha256=OsGIq3rEmiNrx9EVUDL_RR9icvfMvppu34KFqwCmigo,213
|
|
60
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/zarr.json,sha256=rKYZW09PZgL-mbwBlMC_g2VLFutl__nMsLYkeoiOUGs,888
|
|
61
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_west/c/0/0/0,sha256=wJr7eNbU7udzoqIPkttQMEMtvZO7r6g5J54TTBkmI-M,291
|
|
62
64
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/zarr.json,sha256=udn5_b2mPd8Jd6tFy6gCZG3PO81JGDOJSJrKSlnkroU,871
|
|
63
65
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_east/c/0/0/0,sha256=ej43w-zqQm4zqv9XHJVrNoa3eDdAQsmPALTUGECFZtw,297
|
|
64
66
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/zarr.json,sha256=vhabJ7X0JbO5OCbQLlUIxKlA91VBXaIVLYeIzwd9JOY,871
|
|
65
67
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_north/c/0/0/0,sha256=z665eD6NnkIYMjIqJPISBTad1eLUziZ4k0TttZtjHtA,361
|
|
66
68
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/zarr.json,sha256=nSYAXrasclKIHENvawUeMGwfZS-uYjAG06SdCku4P1A,871
|
|
67
69
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_south/c/0/0/0,sha256=7-zmU-S1y90kCsA9t5DlreikkRs_HDtSC2floMa6aUA,213
|
|
68
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/zarr.json,sha256=P7VjmTu6650ftNxSVmxPNivlWxJe-h0Du_58DnZpdv0,871
|
|
69
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_west/c/0/0/0,sha256=JpPPx4rT0cqXN3DxUYOE8Lt_RRlIEeNfTZ6BOfBjvjk,292
|
|
70
70
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/zarr.json,sha256=V0GO3efRzHmWdL-mgED8Sb4PLjUyYqkC0lUh3L6zcDU,905
|
|
71
71
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_east/c/0/0/0,sha256=N9jrgW7Xx2yAMLpsSqrkB294TYBsVOOUuGMv1uCFP3E,319
|
|
72
72
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/zarr.json,sha256=aC36vkpDHlBwABJlI3LHKH-b3pYxz7FFpDjRmkTtm5U,905
|
|
73
73
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_north/c/0/0/0,sha256=eVyRXBSzO3Ew3oOZebNuc57l0FDgMa2mCvIgAA5ECSI,381
|
|
74
74
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/zarr.json,sha256=c3Z1kDGObRR2AN-HyGr-RiQb4NONj6OoRXvAnYb1IXk,905
|
|
75
75
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_south/c/0/0/0,sha256=lIYakE8VsGFWQC5i9rkl0IAtR0MWf2sYMBwo7w2dufQ,216
|
|
76
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/zarr.json,sha256=MJ5GMKccQUhVxv_YnHjY0TB3WlTRGDd602MmbTVylng,905
|
|
77
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_ALT_CO2_west/c/0/0/0,sha256=y5-9Q1P3nbYV_xvFUeIy72bL1P4TQdENln0EJ3SuBik,314
|
|
78
76
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/zarr.json,sha256=79j3kJ6IzQx1b8XYmlgFhGxy13n1I5Q0y6s2g6SQ6Mg,888
|
|
79
77
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_east/c/0/0/0,sha256=rp2O9nKaudE3-5NIxD3OpKwNTcdoBALMMwC5EqBWfL8,312
|
|
80
78
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/zarr.json,sha256=f36-iztWhFMmekU1L_zUCbmGVelpEzQvszt691PoLHM,888
|
|
81
79
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_north/c/0/0/0,sha256=Bd8pmKFC9lWhKDjLcTw7X3cYvvOSG-2Xs0LscIM2dhQ,373
|
|
82
80
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/zarr.json,sha256=pjxFL0fD-aB-A4ITFjsvTwS5SStaVls-JMABEMmAnS4,888
|
|
83
81
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_south/c/0/0/0,sha256=nom8e8egggZT-iTD_mslVG7g252EUC1R16evRc4m4ow,218
|
|
84
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/zarr.json,sha256=V93WkLFWiPCUwKYcazbWsHsc26w5GhF_33L8PLi9zn4,888
|
|
85
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DIC_west/c/0/0/0,sha256=byLwUdPRnuOSsWNvr1LUf72ZSku4YNfiibWx4cMGmJs,303
|
|
86
82
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/zarr.json,sha256=nYTThSxIGLw--8UVHnEiD79zgRRvctv4yVd2GJwm4tI,886
|
|
87
83
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_east/c/0/0/0,sha256=r2pjUMWDagVA73UYn1Qtic-MgjQo4nwgL6r4ZQX9vSE,321
|
|
88
84
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/zarr.json,sha256=PhaNfD4GPpBZfR5lIqVDI_BCWAaWTSG1riOFFBovcfk,886
|
|
89
85
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_north/c/0/0/0,sha256=8WuqG9DRN74KbufTf7eXOYA62A-VES47lqa5mLDuXnY,403
|
|
90
86
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/zarr.json,sha256=s5f3o6UGXU-svWtR0hzCkVVfEh4gMYrYxoUQyNwDk7I,886
|
|
91
87
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_south/c/0/0/0,sha256=BCZUpURnoEhazI9WwFoUbW9lkbBCkjO7SFNmGOme6k8,222
|
|
92
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/zarr.json,sha256=FtgTclEk_35IS-8-zHS_pgcS9UNojR_Nppf6gRGYiW8,886
|
|
93
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOC_west/c/0/0/0,sha256=1Q0G85TjGVssydInDbKtz3hfkoFqvkY_5YEsxDp8uZk,322
|
|
94
88
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/zarr.json,sha256=E-HjE9ZdVrG9PSlIFxTqbt0OLitiY54YKza_3p2ZI-8,897
|
|
95
89
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_east/c/0/0/0,sha256=P6HpRNSlC-_yQ0oqKBK3Ont7PdAc5uXnb9y6RloL1R0,302
|
|
96
90
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/zarr.json,sha256=xToEZSilupnDV0LwMU5cEf3iT8Z6T1HDMKmwgH36VhE,897
|
|
97
91
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_north/c/0/0/0,sha256=6bJJGP-1xEI5Qtrulbw8fVKUmvJifAKjiTAQqAHzlJY,356
|
|
98
92
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/zarr.json,sha256=v6MmYNaor_wwCO0IPATh1LV52KFAzI6i1pBoBqE93e4,897
|
|
99
93
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_south/c/0/0/0,sha256=j3UYTmk8Ed_1M-q4hKsAsms4tiv0Z3dojDkq9_IaslQ,211
|
|
100
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/zarr.json,sha256=lSC3Sh702CTpcqrW_8-bQ29TeX7y7M_FO13uJsyYhw8,897
|
|
101
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOCr_west/c/0/0/0,sha256=J_bkS9rbDpgUTJO3nihqC5VIGlLBZdI37Y3UkFQ-CK4,297
|
|
102
94
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/zarr.json,sha256=irGRzgPQn0Gjcix73Erec9nX6h5TSNG1Bjy0uIs1IkI,888
|
|
103
95
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_east/c/0/0/0,sha256=WVQis4mp1ztBVJw8bqIkWK3T68h-1Bn0rnJwpp810NA,325
|
|
104
96
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/zarr.json,sha256=NrLcSfM6Wz711REsli7hKfqvW-Ob6DBZCxTsMVF5B_U,888
|
|
105
97
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_north/c/0/0/0,sha256=8M6zy86pwh8_SEY7zZ-5ah_SghpzVh1QoiVjF4Jlk8o,410
|
|
106
98
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/zarr.json,sha256=Sa1OvxAuoc7D8j-XR4KA0xRi0xS43Hn8Di79dE1f0pA,888
|
|
107
99
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_south/c/0/0/0,sha256=qRyyJhDWl1pm1azcuaTLAQJFl-HghZKmi6Faf7dmXgM,222
|
|
108
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/zarr.json,sha256=j018qBsMEHHpY2BcEzccAkjoDZ4us3r3iQhy1-mLEfU,888
|
|
109
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DON_west/c/0/0/0,sha256=1Ai8guW8McXD4m4_FTSjq_vUVAb2F--ewhIcXbTmHQA,323
|
|
110
100
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/zarr.json,sha256=qoa-JMBO3SdApCy65L38CKTTKKFXlAM1N6kUt9oTClM,899
|
|
111
101
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_east/c/0/0/0,sha256=hH8fpTvWJibIIDZpKxBOvcuvQufZ-JvHo8rEGVVlDgk,309
|
|
112
102
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/zarr.json,sha256=33k67fK6FmCCIYLQCXv25GADBRuPqLjKJMn7VhwLgL0,899
|
|
113
103
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_north/c/0/0/0,sha256=2Sl_MPsj_uKizKBQjWMcSrU-B5rhNhCIwZU44nvg-10,361
|
|
114
104
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/zarr.json,sha256=6wpWqCxtYYHvYFf3xA_1qzEIkO_3mJ7DWLUumSiTAvc,899
|
|
115
105
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_south/c/0/0/0,sha256=246WE_Nn-mYyazpv_qKU0dgio9jsfMWn8xJkGnNY4Zw,212
|
|
116
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/zarr.json,sha256=4ECgUCSWsn8HdkrxspGte-ggv7qTVIryJXliCbWB3nA,899
|
|
117
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DONr_west/c/0/0/0,sha256=MyfnDCTwqQDICflDz6fIGItKd_OGJU6z1dhMCqZsBUw,294
|
|
118
106
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/zarr.json,sha256=oS-R2FBZq_yVQ7np8D2U70Q9cxIkdrVHvWqiva_FkNM,890
|
|
119
107
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_east/c/0/0/0,sha256=3PerGK9Bc3g6FX3KHXKsUg7TkMt-2Fjov6DoqOCnb7w,325
|
|
120
108
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/zarr.json,sha256=nfFIkJke_CCc9RExlijN7losle2H6cp0jSdvr_gu9Fc,890
|
|
121
109
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_north/c/0/0/0,sha256=_4eB2v67yWO1nUupvfsQoRG1jM-LP4bi18CCPYVDpew,406
|
|
122
110
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/zarr.json,sha256=0nSbczc8_6NODhi3U2R6s20Y-3DEEaN_xBLuFWqXnZI,890
|
|
123
111
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_south/c/0/0/0,sha256=4gVaECdEqeXjcoBAwV4TgNvqqjRBrv-1YlmDvkYAt0A,221
|
|
124
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/zarr.json,sha256=ERfkFPHhofFts5AEJA_l81Vnjg4ze_wjtkRNflpWUDM,890
|
|
125
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOP_west/c/0/0/0,sha256=u8O2uBy7kDzDaO6g4eNDW34zXmpIRueMKB39VwHHevc,321
|
|
126
112
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/zarr.json,sha256=cUSx8qOcSGPiM0K8fCC6O0T2sTH0U03ou2mBzGpjTxM,901
|
|
127
113
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_east/c/0/0/0,sha256=n2DvBFks_QE1asRjl9Q8zeiginsK7BHaL6zDvLt67tg,292
|
|
128
114
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/zarr.json,sha256=gbMhYfu10EbriStOhnAiC9jw6ZCHw4nYx5LkWw0d-3M,901
|
|
129
115
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_north/c/0/0/0,sha256=c-JXCyk_V4RmdGT54JYEB492Eu48qBTpCNBwlVmZ3ps,358
|
|
130
116
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/zarr.json,sha256=SRnqlPWc58VTDJjiO88NFhlO8ibu51ngToR-5wJg7Ms,901
|
|
131
117
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_south/c/0/0/0,sha256=rTyZNi18LMttzYrka_TdngkoYUOWjsvgY_yblyfqNi8,208
|
|
132
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/zarr.json,sha256=76KOtUQVwiWoHDtqflRIaM_IckK-gl5UAloFHkelOXs,901
|
|
133
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/DOPr_west/c/0/0/0,sha256=EacXQXHRs-Q6EaTRqvSc3fHls93UN3f5om4XwhhG0Wc,291
|
|
134
118
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/zarr.json,sha256=fq6peK7ePPKcWqukBh63HztYk8V6rdfqe_i16AfT3yI,886
|
|
135
119
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_east/c/0/0/0,sha256=qPqGAune9qz5MF6NQX_l_-FHWHfPkhPgYly42UgCr30,324
|
|
136
120
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/zarr.json,sha256=Mu4QvEctjlbAMwDkf1nOUSZltHcslPNINcEx7zKAA6U,886
|
|
137
121
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_north/c/0/0/0,sha256=3vaklRcsacMpXZEA-chog8sAmqUqLZLg3kikCaII-1g,404
|
|
138
122
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/zarr.json,sha256=fw7PsEsUQqX3mQH76vtBY5wDr7bDYxifkY6Nzs7TJuE,886
|
|
139
123
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_south/c/0/0/0,sha256=1aofs5Np4dvr5LcvMhc37EjsVOcIqQapXdwE2LvT4Xs,221
|
|
140
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/zarr.json,sha256=vroDAYw4xA5xhkHV4pkiFXdhKAl6hw7-rad_x-PDQes,886
|
|
141
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Fe_west/c/0/0/0,sha256=a2_cu81H0wt0SqtR5Z5tFQIbyLnXa7pLA7SGjFOY0po,325
|
|
142
124
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/zarr.json,sha256=6A45u9KXARFO6u9W4bb-Awf5AWK9H-3EawtrjD9M0IY,881
|
|
143
125
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_east/c/0/0/0,sha256=j1EqNDCpRZW4raOT-PuSpW1yrM18SqB7fotUJ4rKbBs,322
|
|
144
126
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/zarr.json,sha256=05dcr49Oq-cKeTHV7NmfIxw5yzLaonvm4tebmM4r22A,881
|
|
145
127
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_north/c/0/0/0,sha256=JfDaNFNgNKBCzw-d9KdLelYHJoE7NgqnFhnJ9EKz3DA,404
|
|
146
128
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/zarr.json,sha256=_Gs238mzE4xbAY7gblHcsnp9lAh-qeWFMSBlB0B0sPg,881
|
|
147
129
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_south/c/0/0/0,sha256=q_mAz3hY3JjTddjJvTIFA-LhoTp4LImthk3knZe3IDI,220
|
|
148
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/zarr.json,sha256=rtfFpm6p1AGmYeeQXrW7sLviaxELXzjC1rOOCi13ACA,881
|
|
149
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/Lig_west/c/0/0/0,sha256=Df3aJtmqGMnAAnKdKBkV6ji-gxTrnoFV3HnLYZcV0TI,320
|
|
150
130
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/zarr.json,sha256=xTCfiT3TpctA4tQTdipbigLgf71XFlLSosirFtzdMy8,879
|
|
151
131
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_east/c/0/0/0,sha256=RBlyG0W-opKwZ6QXm4sH2ohlz-VoapAUOgZldBz5RLQ,331
|
|
152
132
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/zarr.json,sha256=tchtm0sbvLs7iniU-PaEzDu7SVAzzz4dCpEdrKPy_v8,879
|
|
153
133
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_north/c/0/0/0,sha256=YO3IIFu_WQiZKBlG0N76asrHBjMu5RYNReewWmrZ888,414
|
|
154
134
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/zarr.json,sha256=amL4tGBuicYoKA4z3vPLpJq6UqzRsYdBvk-dBcw_bkk,879
|
|
155
135
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_south/c/0/0/0,sha256=SbUzIqyae1cqTb3F2nhxeJ0T-Io4JkG3-zgBSe3Vifw,223
|
|
156
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/zarr.json,sha256=CaWqo3Gqgoh_O3VdpkFcp74jrl8Z9yfegtmFkGRfdZ0,879
|
|
157
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NH4_west/c/0/0/0,sha256=RwZDEHyFPtKM4MPf8c9XtLskLNeUZUJLhpqvQkSRloM,330
|
|
158
136
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/zarr.json,sha256=6ig0BoVcnc90wJpoGgTaYm5z4mQohQtQn_65J36nBxM,889
|
|
159
137
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_east/c/0/0/0,sha256=UyQapeXqI5Xd5T7reVJhE8YfDQEGkTYvjXRh9ORFlnQ,335
|
|
160
138
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/zarr.json,sha256=UOHlxByIGyDoE2pGHVjSpTEjch-nK6R41_AtOtIySuc,889
|
|
161
139
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_north/c/0/0/0,sha256=cFchF-ASwf9tXFyk0BlFox_a_nyrE9TJwCAvc4ZDlZk,416
|
|
162
140
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/zarr.json,sha256=XhHA_lzAJMC1zCKghQaMyDM1GICkVCftxHWA_sQ5WVQ,889
|
|
163
141
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_south/c/0/0/0,sha256=bZQ2BZUHU_Apm-ycCXXCa98Aek2qMOpCZeHGmme5RFU,226
|
|
164
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/zarr.json,sha256=qGrRDU0YwWsmTS5noyEUDTb5k9VWS7OD0amniDfY2l0,889
|
|
165
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/NO3_west/c/0/0/0,sha256=Gfkbc4cSrZzyE57nRm9HFkHO-Fb1FHnvaivx_hZO1iE,324
|
|
166
142
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/zarr.json,sha256=x12zDEIC3y_UVJB7CCpn2IA2r7p-yy_9EUZl1jxH2uc,878
|
|
167
143
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_east/c/0/0/0,sha256=LClG2ZvABoB8FUaLzdjly4MdsleehiT52PapTPk1kPU,319
|
|
168
144
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/zarr.json,sha256=mBCBsRTy5dQV_CzkIlbtEUBOuMMV0FczWOdavFU0KIk,878
|
|
169
145
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_north/c/0/0/0,sha256=Si9SXsA0c1xQnmwAtU1f32mexm1WSPf2-NFr_7lW5t0,400
|
|
170
146
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/zarr.json,sha256=L_VaqKuvhix1rIphukYOz1a0OKSqCxUpZlVmw9g0vW0,878
|
|
171
147
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_south/c/0/0/0,sha256=O58zsWXTd5wtOS5iZ87DQyW-_0V4KEqHx9dGzw2qXaM,222
|
|
172
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/zarr.json,sha256=RGlC7soB-cbpcmRMIN16WmCXrPGNxw4JXWJxek8bgGA,878
|
|
173
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/O2_west/c/0/0/0,sha256=jSxbJMzm1JUPQokMwSu5MMTOMJC4v4yJ_CitfUsG4k0,323
|
|
174
148
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/zarr.json,sha256=PlIgxZMJuR-CnaSWaroqHi0XCGIjJmKTyoqjw7LaQY8,891
|
|
175
149
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_east/c/0/0/0,sha256=UVjyMEtPNmyEI-WEa1xAHL1z4VWDSnuAkLgjC4RLlMk,326
|
|
176
150
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/zarr.json,sha256=zcB9XChUok4Xc2YhSh4NK1_W3AKVCEsw-31ySG2KmR4,891
|
|
177
151
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_north/c/0/0/0,sha256=FnU9uZLwE9OAMsqsNr98DUGDn8XgPmyvzldl5bSBx1Y,404
|
|
178
152
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/zarr.json,sha256=22T0WrznbuM3aKMDCGOxuNsJ8JhnBpkXjWvuBDfFQdw,891
|
|
179
153
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_south/c/0/0/0,sha256=-gfMM_XxiD-vdI-SXVptWSAERzR9F32RgzMEutrp0q8,224
|
|
180
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/zarr.json,sha256=0YzymvNAeMqRBFzeOFHfiSWDG8OxoPY8cFxISffvY1w,891
|
|
181
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/PO4_west/c/0/0/0,sha256=8Y-acpJo5U7L4IQtzZAnzg8XW0FA1qdGPh04dWdQHNs,324
|
|
182
154
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/zarr.json,sha256=5-IMRP4Yi9n5SyD1sL7PEdzJ184MKd-yGPUByG3Goxs,890
|
|
183
155
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_east/c/0/0/0,sha256=U_bgq4vNr2-3E7DJOwokmgM73p--j32wxhJvBGcbv8E,323
|
|
184
156
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/zarr.json,sha256=g4xZOlVWg4cLHHsOZS6AFFFDxeI3wJIlWMWbV2tIcpY,890
|
|
185
157
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_north/c/0/0/0,sha256=0O3D6HeWQxE6fw3SZ38Vk0MrVtUhPWLOCcKsWmcgy_s,404
|
|
186
158
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/zarr.json,sha256=dlGPk8ZZkIMTR5nX6r2q7r8m-QTLYtf-7--79y7MGuE,890
|
|
187
159
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_south/c/0/0/0,sha256=9r1hyAQeURPv4DLZVaDEPzrlKWpTRnz7IiwgOpTQfvQ,222
|
|
188
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/zarr.json,sha256=F2zUzZ6E9y6lDSFXrrID8agK1ZZAo330YmfuxkGiltw,890
|
|
189
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/SiO3_west/c/0/0/0,sha256=0k-LmnegkttC2xcTkxAx0em-OVolF5nUJ89vYOiy1ZI,322
|
|
190
160
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/zarr.json,sha256=RWoL-Y3C4o31sv8PFwlL-8zSYK_yn0w3tEJOE3wCs7c,780
|
|
191
161
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/abs_time/c/0,sha256=Vm3172r-eOrTXpbBW2ekYxb9eO1ykcmCYIa6PnydqNE,64
|
|
192
162
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/bry_time/zarr.json,sha256=V9cEjqPbQBSxXQp5J14L8L56rEF5Q57HQnz_VxvQ2yE,813
|
|
@@ -197,72 +167,54 @@ roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr
|
|
|
197
167
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_north/c/0/0/0,sha256=ClAZM5_PNGLbTM6Fou5lVkJ0gYrntByx7wAKczxznqQ,417
|
|
198
168
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/zarr.json,sha256=dAkBDuu13wiclaItLQu3KfeBXfOnHkeULsqNfNVyBDw,875
|
|
199
169
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_south/c/0/0/0,sha256=0NEWjbcivliCGtnsDoZR8ABS4X1WIU6fgabBgR7_rBY,230
|
|
200
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/zarr.json,sha256=zNrVvGpP-Ai2p507xLy-kcKmOqOEnZ3FkQ45t6sK14c,875
|
|
201
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatC_west/c/0/0/0,sha256=sxvkT6ZOH28rBWQIrs0wzZtLQAD_rdCS7XwaYDIqDeM,336
|
|
202
170
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/zarr.json,sha256=cMYVXa2jHv6aGrzEE3wpkmFfQkrvQpLlb8-qL-tTrYQ,877
|
|
203
171
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_east/c/0/0/0,sha256=ANBtcu6IwzQd7puBLtALUzM81dIVPP1bgA2bDBbz644,335
|
|
204
172
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/zarr.json,sha256=c8Ac09aQu_L-zL95rNpq7bwHYR54EMvqBoS4DS1MRWo,877
|
|
205
173
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_north/c/0/0/0,sha256=bC_4FzpYSH_FCVr02O4UfcRFfDne2nqiWB8ZqkRCWuE,407
|
|
206
174
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/zarr.json,sha256=_ZJH_kHxYksIokbDDaaMwlLrotJmW7eBweZir6W4s54,877
|
|
207
175
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_south/c/0/0/0,sha256=s7TEq7Gar2s99vHsR0AyhDzmz0mEaj7epzZh9PPi0Y4,229
|
|
208
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/zarr.json,sha256=ZECIegCEuxgj-u8hinN2fvQzOexk8BuCPLTYhybW1_g,877
|
|
209
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatChl_west/c/0/0/0,sha256=ux8TBIh65D55CmoU5LfbtyjRdQJV6SBluJtlaupv8mE,336
|
|
210
176
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/zarr.json,sha256=oXbbrZre9EMYuuyNr029-7X1I7bs3Z2eQ2yQDE7wbZ8,873
|
|
211
177
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_east/c/0/0/0,sha256=L37C1cOdrTy5-CAPZY_vLU2_hKAqYZYGlEtSrZ6lr18,338
|
|
212
178
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/zarr.json,sha256=ypOlXVAZeLKNlMS0-khI1u-kMUccVvGdt6FnMspi73E,873
|
|
213
179
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_north/c/0/0/0,sha256=25dmurPGix3o8s5msA13opyBUd_J8nSdJ6pqKs1jvL0,415
|
|
214
180
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/zarr.json,sha256=cQkCp_Jw2CLwbRvTcp4tHAMak_6lg_lP5sKA3saCMKM,873
|
|
215
181
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_south/c/0/0/0,sha256=axvjICzjvDHwP4r-FG0uS7pzLl5v25RbTgAZbvKqP5o,229
|
|
216
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/zarr.json,sha256=KLZchKkOXA1O0FpCxJZGQ98Fh0WNukcyn8staRewu5Y,873
|
|
217
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatFe_west/c/0/0/0,sha256=0F4CbESugqtSovvnRcReQpEa_EVldq1jd8O_XmlAUMI,338
|
|
218
182
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/zarr.json,sha256=ZWC-Tzi8f9sjGBS9gc9BQkM9DE4EeEfWz07gQXg3Lvk,879
|
|
219
183
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_east/c/0/0/0,sha256=lmkJbKJEXD_5y5exR-N3g4FbtdilXVOrqKn-IgTC9O8,336
|
|
220
184
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/zarr.json,sha256=tzvRBCc6vzEPajF5SGAOv2y0E7pJobfey_82QeOVf10,879
|
|
221
185
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_north/c/0/0/0,sha256=DdA1URUK44b3cvTiMhpvlZN4UkMCvt5tcXToQtQBpkY,400
|
|
222
186
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/zarr.json,sha256=8_kJK2LTuknIuRY6KyLjv_PA4IeNNhSx9Hg1u9MKc7s,879
|
|
223
187
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_south/c/0/0/0,sha256=yh0EQJNg8XXZquQN8y2vPdB0Td_gSmjVo4DzqnXjYn0,229
|
|
224
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/zarr.json,sha256=P-Y4Xq8h8y7bq3HkOlyvl9esUCNU2E8YuUNSan73BQw,879
|
|
225
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatP_west/c/0/0/0,sha256=fI02U7aV0j_-nkuhYnwPNV0UwKnxKmWwD48tLVGzAs0,337
|
|
226
188
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/zarr.json,sha256=e4pM3bQ8ucnuq9Aw_GX-AiJzI7u7Wom7QOnEwiNVDJw,877
|
|
227
189
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_east/c/0/0/0,sha256=UlSveH0hunVVKok9xdCmO182Y6ZDRWOSYpB40C0Eqyk,337
|
|
228
190
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/zarr.json,sha256=gxn3QNf6QM0dBapGHgd3gkGoeXyjwdT_95RFlNnF5ZY,877
|
|
229
191
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_north/c/0/0/0,sha256=yNTy29BHZru9wxmuK2WIzkjSUzsFcKwv18i2AkVfxOk,415
|
|
230
192
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/zarr.json,sha256=nyrZu5aON4Qw_s4aqkJz2jM06pR2i0PZNnVT3f-WykA,877
|
|
231
193
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_south/c/0/0/0,sha256=5aq-hAOwkjb2zmXePK35ZWrcYeWux0XAlUHhxe7QOM0,230
|
|
232
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/zarr.json,sha256=Kjlo_X9rD5GVGOCfP32TjktYCMc6UkpqV9FHEGqZ4ig,877
|
|
233
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diatSi_west/c/0/0/0,sha256=wB2EVGE1y1XiRP2EoIrT0gw2Y9XdTUX-v58Nrb9WdKg,335
|
|
234
194
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/zarr.json,sha256=m8GKSHcHhtHyqjTvh_Pc_IfuOU9fRRzXYaNWXrcbVqs,879
|
|
235
195
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_east/c/0/0/0,sha256=Sfbd4WkIkDXZCjnvBk4WeQ8lCIcqCFg08cgxHINqwYo,331
|
|
236
196
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/zarr.json,sha256=MjSzFvh_03TuBOGes6JxaufdZ8NHHGKEEw2O8S7kAuA,879
|
|
237
197
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_north/c/0/0/0,sha256=P9i1U9HvgH-Ya63jDjV5boXOFT4Otg-Dj5z1jph7m_Q,414
|
|
238
198
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/zarr.json,sha256=m0xNcyO1KgXOv67eMyY-ib9MvkzOzHHHTxaLL8diVFw,879
|
|
239
199
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_south/c/0/0/0,sha256=dEGcYNoZFEJQ5GKRBbJKJo8Ctsxzmgf5KUZbVnfoRTI,227
|
|
240
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/zarr.json,sha256=W7SJjTm6jmr7xb0wqQxA305lx8hiPaMWJEgCYJ3XcDs,879
|
|
241
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazC_west/c/0/0/0,sha256=1jldxVdyHY2ocuKVemB0hJL05Oxkmhd5n2JR3Z0lhDw,327
|
|
242
200
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/zarr.json,sha256=68DgmhBkPjC-RE2uv2Qz1k4PQO9YnkEMRD45J5XM2g0,881
|
|
243
201
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_east/c/0/0/0,sha256=gW4UrK9ujBKnSGR5MRznZwDM5xPZDF93uO--Mju3mL4,334
|
|
244
202
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/zarr.json,sha256=Fr3DKjkl1DBNWykdHy_RKLnNwtwAhO0FtsqWtKK1R-k,881
|
|
245
203
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_north/c/0/0/0,sha256=LM5rHEDn4tdvGBsm-KdpOQ3zodMImFLB2nuoRYdkJ-w,416
|
|
246
204
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/zarr.json,sha256=OGSycztbZqYMxHPXJaBHw_Kp44tOTFmOTq1cVm7x4Ro,881
|
|
247
205
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_south/c/0/0/0,sha256=ZrPzRBo9vCHcPyZ9y874TzfVXsx5go__2rjwyRegT38,225
|
|
248
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/zarr.json,sha256=MxqW1iVZ3A25JtibSZphEUuMkZH-6DLufNhpMGQoKT0,881
|
|
249
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazChl_west/c/0/0/0,sha256=rG3X57kDXtJwK4tsM5UmhUES_ugYN0dgxTe2EbcQmmY,322
|
|
250
206
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/zarr.json,sha256=6aGES4UyBY6Lzyjlh1Ob0rizskSP8DckMOoBZ-7lClA,877
|
|
251
207
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_east/c/0/0/0,sha256=1IFJZft_4AKrqR0P-Uv-BH3QCIehtOs5TKH85P3N4BM,331
|
|
252
208
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/zarr.json,sha256=gZhhhj4JrmKahrovDejkhOYy1BVImKW1iJxYcoHBTo0,877
|
|
253
209
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_north/c/0/0/0,sha256=TP4f2Lr4__LXDTPahGLQQPMCnI9xoKmjqsmgn61hJDE,414
|
|
254
210
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/zarr.json,sha256=-2x-ltFdhyyvkefZEkZWf_2uBTVCAC-EoC_osw672Rs,877
|
|
255
211
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_south/c/0/0/0,sha256=rLE_HNOcq_IedOU8aIVxpwAlxRak4nLGG6PHH3X9KWA,227
|
|
256
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/zarr.json,sha256=1OVX1pJzC45qEQ-ggXd15Rzrntb28d_m4drNdqTQGSU,877
|
|
257
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazFe_west/c/0/0/0,sha256=ImdufKEEWDkl377pXFFYRgAghlhbCZVY81gdOZU0xvQ,321
|
|
258
212
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/zarr.json,sha256=iRgy7MPEjsoBr0Diki6DIKSpj3c-T2mkFru0bGkSAp4,883
|
|
259
213
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_east/c/0/0/0,sha256=2Qw0WN-RNYb-H-HN9fPrWy_cD-5jvKv_6CNQwmvP5YI,330
|
|
260
214
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/zarr.json,sha256=2_LLwUnyjgezofNuG7rW5JpV9P-WLKBYqEHQIl0lu5g,883
|
|
261
215
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_north/c/0/0/0,sha256=jZFWgvAG3KTkuaFYaTshWlKzjQ5iySbU9-Kvfq5dIWE,400
|
|
262
216
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/zarr.json,sha256=X-dFKwxVE4g8pIDMiDc1w-JrArlq6oc3iXpt9sMG1lI,883
|
|
263
217
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_south/c/0/0/0,sha256=BHhYY21uoIeRUON5x_9Vb7HOnT2_-GNQJJJVLWb_yok,226
|
|
264
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/zarr.json,sha256=vI-onIgDmSVoTD754XJUosAqhGz121rSH-Eg8Nl0mX0,883
|
|
265
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/diazP_west/c/0/0/0,sha256=IgjoTk9ac7f7j_720uPWlR8C8aoernCSiWnLDaLT6u4,324
|
|
266
218
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/zarr.json,sha256=nD74FpQhA_TAMlQB7G-bwlOgtM5zrd99rJvWW77uVzw,699
|
|
267
219
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/month/c/0,sha256=VzA4G-xMki8K3RffLgnKgwB3MiJHrqEX1FEPmAslJdU,46
|
|
268
220
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_east/zarr.json,sha256=xezClPouz5Z1-NAXaCNuhe2Qr9_gYrxPPhw467_FwM4,888
|
|
@@ -271,185 +223,139 @@ roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr
|
|
|
271
223
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_north/c/0/0/0,sha256=O0WcTCRqqm7V7xsP1tF4pKgJUbSJcdmXHpM7YTgynb8,411
|
|
272
224
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/zarr.json,sha256=NAOnOy1HyeAycVUBrBFQi9Qnl-d2ZF-JULrbWT_YhX0,888
|
|
273
225
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_south/c/0/0/0,sha256=0wp5XVTnxEc5MucfZPvo_VN6s74MIP_VQlxWr6BiHO8,226
|
|
274
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/zarr.json,sha256=sKHmaAw25KoekElu0EpztJ0A8juerNNzx1zFV3oSpsU,888
|
|
275
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spC_west/c/0/0/0,sha256=CdF-PO3DDh2KPExSB-NI9TTwaQYuau2Pux_p8phqPoQ,332
|
|
276
226
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/zarr.json,sha256=33r3z0YOu2eSptJb1sf63nJNr-EF3bvgBRjbT-T3_Q4,887
|
|
277
227
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_east/c/0/0/0,sha256=z181Da0MJTIQaabQAFT-JhPyt9vnzJU7ZUR2fg4Fgn0,337
|
|
278
228
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/zarr.json,sha256=lND0rywHtImVThLLbCoUxvmJm_3qZuupz3SFPXi0qek,887
|
|
279
229
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_north/c/0/0/0,sha256=I5Cz4WxeMLeejUBfm1cBkXA6H68MxBVP09SgfLUVhsg,415
|
|
280
230
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/zarr.json,sha256=vY_zXBWvIJQbjrgNKKhyx1oXIrQlTJhurmon501A5UM,887
|
|
281
231
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_south/c/0/0/0,sha256=RmXQvK5cRuhtdA5SUY6tXrWi6_npVTR353zvJYWw9zw,226
|
|
282
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/zarr.json,sha256=HeWKJtS4nzzIoOqQHO7HEXA_rK-Eb6ZX1quoPrNa158,887
|
|
283
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spCaCO3_west/c/0/0/0,sha256=l14TjxqikltWIHi-cpTxd9qoha-wNCdoJK9ZKHOoHtI,336
|
|
284
232
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/zarr.json,sha256=7LUk_W5ti05d1hP0zLu4ytXjHl2K7KPnqSeUEbForXI,891
|
|
285
233
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_east/c/0/0/0,sha256=i4SHICczgD3u_ll6hypBZaqRiz78sdpU-36ZGCJL4k8,334
|
|
286
234
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/zarr.json,sha256=_o0ajzDCHqfbwMWKXD6GCKQfZNQQ23yKYQI4paeMFVM,891
|
|
287
235
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_north/c/0/0/0,sha256=5cVFRD8e_hXIT2ZMYl3Mk59aWT09VuVxI2kwrBT_Xr0,416
|
|
288
236
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/zarr.json,sha256=S-Pgcrc1LP1flhq5tZAtIWh4TbbJd2gAsmGyhCUR-g8,891
|
|
289
237
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_south/c/0/0/0,sha256=QSjbuPbYxgU3i3r3a4N3DxmnvFnE1CqLd6Qih_iAcbE,224
|
|
290
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/zarr.json,sha256=Ho_Io5ed3pFj0AZnIinetHGIvQ05AY9fR4nggkW27OE,891
|
|
291
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spChl_west/c/0/0/0,sha256=EPlq2UuKinmoRyGh1ktOxiX5I1yuPZVJrkVbymhdR-Q,333
|
|
292
238
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/zarr.json,sha256=QOFrgeOSHd_ndaTGt2h3qVifIDjPKuQPsuifoMooo-w,886
|
|
293
239
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_east/c/0/0/0,sha256=FRQcFXBrPjaZevAjFQECGLNWgz8YkIQ_L7xJNBlt1Zs,330
|
|
294
240
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/zarr.json,sha256=qqjD8KCazU5ZDglxvHjPxLqfNxYPYAAz8TjwX_FSt7c,886
|
|
295
241
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_north/c/0/0/0,sha256=d9IgnX-8jJBZpi7xIL0aglQ10Dcp_1vNcf_h4vJA6T8,407
|
|
296
242
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/zarr.json,sha256=aCv_809cIuSZZ5SBh46uAyYxHYeGcx1siHbY4ln3bY4,886
|
|
297
243
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_south/c/0/0/0,sha256=RONgEG5DIhGSP_87qZY2FRWUyO12wxUFqLo_AoHAS_E,223
|
|
298
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/zarr.json,sha256=ONIvNYjDjZ4smpfhAt5nW80twyWQpsRdHMJqhb6ixng,886
|
|
299
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spFe_west/c/0/0/0,sha256=bEVrVaHBNSu_vaKSovRIYy_bmuq2LaXBADeMtq6TlDw,334
|
|
300
244
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/zarr.json,sha256=m2lYW3FT4YzNsLmCbyK_S3pP7GrBczizVy9UrrZA2gI,893
|
|
301
245
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_east/c/0/0/0,sha256=SWtLJaKXNH7_JNDmtjy5XRorbtBt0xxdveGhAncsuUk,331
|
|
302
246
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/zarr.json,sha256=0f7VNxkcBewoCptZBpLGztlgfwS-IBimInDC5Zc6F5s,893
|
|
303
247
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_north/c/0/0/0,sha256=OxZB7thNmD-q398IGNcwZfxQx0laLYZm7SGOPpcrxr0,400
|
|
304
248
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/zarr.json,sha256=ITfsg02gAsYynYMe2KlmlpwUgqboEBvqBQdoodJPk24,893
|
|
305
249
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_south/c/0/0/0,sha256=3nmQpH5aIhgUXbZpNVw52tM6IGFM2aggnY9a-GOwAgk,223
|
|
306
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/zarr.json,sha256=dQZHxSzlToTflp3-fwnbTIMB8A_oaU6QOJYK-_zkAw4,893
|
|
307
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/spP_west/c/0/0/0,sha256=Lnq2N1CzngqR0tju3wNPljaTgJQISI1YbgrJqu8hc2s,333
|
|
308
250
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/zarr.json,sha256=RIw9LGFS6GgXGsPI2-UKeiOp3AT04632-kuUgF8dSA4,880
|
|
309
251
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_east/c/0/0/0,sha256=uYbH9iFIenLBaZySe6w240dBudIh4pPK8Wyu98A_k5Q,329
|
|
310
252
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/zarr.json,sha256=l-cV3m1alus9EYsmUJC2PP3MRyIdvcBijyQ03gawOLY,880
|
|
311
253
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_north/c/0/0/0,sha256=xSkiPsOxhN9xTUhsopZTh1jy17TY989vDbvbRP7ZO88,405
|
|
312
254
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/zarr.json,sha256=CbHlnDsbsotUZmz9Ges2Sc3-NeNKLPQE3t8M1J0XON0,880
|
|
313
255
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_south/c/0/0/0,sha256=gDcUpQDbccSUJE1p8_xc9lhBkoVWUEzEIawWYZf1MBk,226
|
|
314
|
-
roms_tools/tests/test_setup/test_data/
|
|
315
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zooC_west/c/0/0/0,sha256=LUfcWOPYpII4eIliFQG98FXkwiYUQvxfuNhTk-MDXPM,329
|
|
316
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zarr.json,sha256=SFkRQ4EM4tHcO8J9rJXWH2kNPYbtaMJ5E0WmmR8xqQc,160661
|
|
256
|
+
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zarr.json,sha256=SD2RcwZqTFWUc7-RosWasW6PbzZCm-VmDW_UxUnAjK8,121462
|
|
317
257
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/zarr.json,sha256=KSNZ-MO2SPQq_XFwju_mKbmEiVMFHBMf-uw063Ow4gc,888
|
|
318
258
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_east/c/0/0/0,sha256=WC-cO2Srp6cSQhzGPeash1Nkt6DopP53tXde63c8uUc,211
|
|
319
259
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/zarr.json,sha256=bJX2VqKuFUCPupVintBUuo7API1mbiyxp5DEX6ghD6c,888
|
|
320
260
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_north/c/0/0/0,sha256=s-u09xK2geBZ4ahlV62dRhkqEx5fotEf4DLtmzSknus,203
|
|
321
261
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/zarr.json,sha256=_286j0H_oBnrjlqbSIZ9z6cWPlq8NFdSOQp0ympsZEs,888
|
|
322
262
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_south/c/0/0/0,sha256=Dinr_pKEgzbBgDfct8p5hH-koQZxmkSWGpcIUUwhciY,211
|
|
323
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/zarr.json,sha256=rKYZW09PZgL-mbwBlMC_g2VLFutl__nMsLYkeoiOUGs,888
|
|
324
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_ALT_CO2_west/c/0/0/0,sha256=p0fnBIuaHiFJj78M_ZsaUjChdyOJPWLqxuSpYSgmuHg,213
|
|
325
263
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/zarr.json,sha256=udn5_b2mPd8Jd6tFy6gCZG3PO81JGDOJSJrKSlnkroU,871
|
|
326
264
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_east/c/0/0/0,sha256=WC-cO2Srp6cSQhzGPeash1Nkt6DopP53tXde63c8uUc,211
|
|
327
265
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/zarr.json,sha256=vhabJ7X0JbO5OCbQLlUIxKlA91VBXaIVLYeIzwd9JOY,871
|
|
328
266
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_north/c/0/0/0,sha256=s-u09xK2geBZ4ahlV62dRhkqEx5fotEf4DLtmzSknus,203
|
|
329
267
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/zarr.json,sha256=nSYAXrasclKIHENvawUeMGwfZS-uYjAG06SdCku4P1A,871
|
|
330
268
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_south/c/0/0/0,sha256=Dinr_pKEgzbBgDfct8p5hH-koQZxmkSWGpcIUUwhciY,211
|
|
331
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/zarr.json,sha256=P7VjmTu6650ftNxSVmxPNivlWxJe-h0Du_58DnZpdv0,871
|
|
332
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/ALK_west/c/0/0/0,sha256=p0fnBIuaHiFJj78M_ZsaUjChdyOJPWLqxuSpYSgmuHg,213
|
|
333
269
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/zarr.json,sha256=V0GO3efRzHmWdL-mgED8Sb4PLjUyYqkC0lUh3L6zcDU,905
|
|
334
270
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_east/c/0/0/0,sha256=lNApb6jk2Km1tK7cqg9SXgkIuGLPR3TMdjeCA51vOtw,212
|
|
335
271
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/zarr.json,sha256=aC36vkpDHlBwABJlI3LHKH-b3pYxz7FFpDjRmkTtm5U,905
|
|
336
272
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_north/c/0/0/0,sha256=2rP9MizYeaIBr3DnZyDiYWf6o3gHapyjsLvlwP9Gmao,203
|
|
337
273
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/zarr.json,sha256=c3Z1kDGObRR2AN-HyGr-RiQb4NONj6OoRXvAnYb1IXk,905
|
|
338
274
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_south/c/0/0/0,sha256=ADQuNl5b0VO0JXYYPUyoXnsePpsrl69XSpgBQODUCqA,211
|
|
339
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/zarr.json,sha256=MJ5GMKccQUhVxv_YnHjY0TB3WlTRGDd602MmbTVylng,905
|
|
340
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_ALT_CO2_west/c/0/0/0,sha256=uIvFmrLyclwINC39HqMo7O5bIi8GQc2G1u5_1yaalvA,213
|
|
341
275
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/zarr.json,sha256=79j3kJ6IzQx1b8XYmlgFhGxy13n1I5Q0y6s2g6SQ6Mg,888
|
|
342
276
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_east/c/0/0/0,sha256=lNApb6jk2Km1tK7cqg9SXgkIuGLPR3TMdjeCA51vOtw,212
|
|
343
277
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/zarr.json,sha256=f36-iztWhFMmekU1L_zUCbmGVelpEzQvszt691PoLHM,888
|
|
344
278
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_north/c/0/0/0,sha256=2rP9MizYeaIBr3DnZyDiYWf6o3gHapyjsLvlwP9Gmao,203
|
|
345
279
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/zarr.json,sha256=pjxFL0fD-aB-A4ITFjsvTwS5SStaVls-JMABEMmAnS4,888
|
|
346
280
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_south/c/0/0/0,sha256=ADQuNl5b0VO0JXYYPUyoXnsePpsrl69XSpgBQODUCqA,211
|
|
347
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/zarr.json,sha256=V93WkLFWiPCUwKYcazbWsHsc26w5GhF_33L8PLi9zn4,888
|
|
348
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DIC_west/c/0/0/0,sha256=uIvFmrLyclwINC39HqMo7O5bIi8GQc2G1u5_1yaalvA,213
|
|
349
281
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/zarr.json,sha256=nYTThSxIGLw--8UVHnEiD79zgRRvctv4yVd2GJwm4tI,886
|
|
350
282
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_east/c/0/0/0,sha256=Je4CwDcxhrpJi1BbjWHGMAzVqz7APcFrRlLWCP_AslY,221
|
|
351
283
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/zarr.json,sha256=PhaNfD4GPpBZfR5lIqVDI_BCWAaWTSG1riOFFBovcfk,886
|
|
352
284
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_north/c/0/0/0,sha256=hOqH0_7AJke9g-h_eNbzoRrYqg2yUk-lKge6kAOBqDY,221
|
|
353
285
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/zarr.json,sha256=s5f3o6UGXU-svWtR0hzCkVVfEh4gMYrYxoUQyNwDk7I,886
|
|
354
286
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_south/c/0/0/0,sha256=NBMlpQ_tBrzlZuiW8NMLwj4aCblouGISBF2aCX0AVd0,222
|
|
355
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/zarr.json,sha256=FtgTclEk_35IS-8-zHS_pgcS9UNojR_Nppf6gRGYiW8,886
|
|
356
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOC_west/c/0/0/0,sha256=s0HL848TlqAu0yUj5CuELrXZFaJp1SMoKEM86t07wf4,222
|
|
357
287
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_east/zarr.json,sha256=E-HjE9ZdVrG9PSlIFxTqbt0OLitiY54YKza_3p2ZI-8,897
|
|
358
288
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_east/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
359
289
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_north/zarr.json,sha256=xToEZSilupnDV0LwMU5cEf3iT8Z6T1HDMKmwgH36VhE,897
|
|
360
290
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_north/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
361
291
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_south/zarr.json,sha256=v6MmYNaor_wwCO0IPATh1LV52KFAzI6i1pBoBqE93e4,897
|
|
362
292
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_south/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
363
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/zarr.json,sha256=lSC3Sh702CTpcqrW_8-bQ29TeX7y7M_FO13uJsyYhw8,897
|
|
364
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOCr_west/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
365
293
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_east/zarr.json,sha256=irGRzgPQn0Gjcix73Erec9nX6h5TSNG1Bjy0uIs1IkI,888
|
|
366
294
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_east/c/0/0/0,sha256=cpGuZY8R2_Ffp_EfEvHua5o_inyT1UMkg2OGMHzTntQ,21
|
|
367
295
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_north/zarr.json,sha256=NrLcSfM6Wz711REsli7hKfqvW-Ob6DBZCxTsMVF5B_U,888
|
|
368
296
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_north/c/0/0/0,sha256=cpGuZY8R2_Ffp_EfEvHua5o_inyT1UMkg2OGMHzTntQ,21
|
|
369
297
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_south/zarr.json,sha256=Sa1OvxAuoc7D8j-XR4KA0xRi0xS43Hn8Di79dE1f0pA,888
|
|
370
298
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_south/c/0/0/0,sha256=cpGuZY8R2_Ffp_EfEvHua5o_inyT1UMkg2OGMHzTntQ,21
|
|
371
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/zarr.json,sha256=j018qBsMEHHpY2BcEzccAkjoDZ4us3r3iQhy1-mLEfU,888
|
|
372
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DON_west/c/0/0/0,sha256=cpGuZY8R2_Ffp_EfEvHua5o_inyT1UMkg2OGMHzTntQ,21
|
|
373
299
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_east/zarr.json,sha256=qoa-JMBO3SdApCy65L38CKTTKKFXlAM1N6kUt9oTClM,899
|
|
374
300
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_east/c/0/0/0,sha256=6XAiNG-YpUXbFxNHkPAoeUxBsxhiAGBZSMwJCOdaO0Y,21
|
|
375
301
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_north/zarr.json,sha256=33k67fK6FmCCIYLQCXv25GADBRuPqLjKJMn7VhwLgL0,899
|
|
376
302
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_north/c/0/0/0,sha256=6XAiNG-YpUXbFxNHkPAoeUxBsxhiAGBZSMwJCOdaO0Y,21
|
|
377
303
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_south/zarr.json,sha256=6wpWqCxtYYHvYFf3xA_1qzEIkO_3mJ7DWLUumSiTAvc,899
|
|
378
304
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_south/c/0/0/0,sha256=6XAiNG-YpUXbFxNHkPAoeUxBsxhiAGBZSMwJCOdaO0Y,21
|
|
379
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/zarr.json,sha256=4ECgUCSWsn8HdkrxspGte-ggv7qTVIryJXliCbWB3nA,899
|
|
380
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DONr_west/c/0/0/0,sha256=6XAiNG-YpUXbFxNHkPAoeUxBsxhiAGBZSMwJCOdaO0Y,21
|
|
381
305
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_east/zarr.json,sha256=oS-R2FBZq_yVQ7np8D2U70Q9cxIkdrVHvWqiva_FkNM,890
|
|
382
306
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_east/c/0/0/0,sha256=ON4zO2V2mCXeIKKO5RGczf7Jnqg6n7vVhKDe6xzRBVc,21
|
|
383
307
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_north/zarr.json,sha256=nfFIkJke_CCc9RExlijN7losle2H6cp0jSdvr_gu9Fc,890
|
|
384
308
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_north/c/0/0/0,sha256=ON4zO2V2mCXeIKKO5RGczf7Jnqg6n7vVhKDe6xzRBVc,21
|
|
385
309
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_south/zarr.json,sha256=0nSbczc8_6NODhi3U2R6s20Y-3DEEaN_xBLuFWqXnZI,890
|
|
386
310
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_south/c/0/0/0,sha256=ON4zO2V2mCXeIKKO5RGczf7Jnqg6n7vVhKDe6xzRBVc,21
|
|
387
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/zarr.json,sha256=ERfkFPHhofFts5AEJA_l81Vnjg4ze_wjtkRNflpWUDM,890
|
|
388
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOP_west/c/0/0/0,sha256=ON4zO2V2mCXeIKKO5RGczf7Jnqg6n7vVhKDe6xzRBVc,21
|
|
389
311
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_east/zarr.json,sha256=cUSx8qOcSGPiM0K8fCC6O0T2sTH0U03ou2mBzGpjTxM,901
|
|
390
312
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_east/c/0/0/0,sha256=K97kl5lM1jWmSxIJGAVoW7wG_UxeNV-_GIouPqtruvE,21
|
|
391
313
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_north/zarr.json,sha256=gbMhYfu10EbriStOhnAiC9jw6ZCHw4nYx5LkWw0d-3M,901
|
|
392
314
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_north/c/0/0/0,sha256=K97kl5lM1jWmSxIJGAVoW7wG_UxeNV-_GIouPqtruvE,21
|
|
393
315
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_south/zarr.json,sha256=SRnqlPWc58VTDJjiO88NFhlO8ibu51ngToR-5wJg7Ms,901
|
|
394
316
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_south/c/0/0/0,sha256=K97kl5lM1jWmSxIJGAVoW7wG_UxeNV-_GIouPqtruvE,21
|
|
395
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/zarr.json,sha256=76KOtUQVwiWoHDtqflRIaM_IckK-gl5UAloFHkelOXs,901
|
|
396
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/DOPr_west/c/0/0/0,sha256=K97kl5lM1jWmSxIJGAVoW7wG_UxeNV-_GIouPqtruvE,21
|
|
397
317
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/zarr.json,sha256=fq6peK7ePPKcWqukBh63HztYk8V6rdfqe_i16AfT3yI,886
|
|
398
318
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_east/c/0/0/0,sha256=yxZZ8SxpikGiy4QN_zyA7OL9rQNP2QLGEInKXu4vmWs,222
|
|
399
319
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/zarr.json,sha256=Mu4QvEctjlbAMwDkf1nOUSZltHcslPNINcEx7zKAA6U,886
|
|
400
320
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_north/c/0/0/0,sha256=QM12LOld-yOu-X2jxoLbHcGK7Q4DNQrX0eWW1G_SImo,222
|
|
401
321
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/zarr.json,sha256=fw7PsEsUQqX3mQH76vtBY5wDr7bDYxifkY6Nzs7TJuE,886
|
|
402
322
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_south/c/0/0/0,sha256=HVzxoiojnNpqHI_LeGrmE7yIxc2-LAnoxMbFBHxxDsw,224
|
|
403
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/zarr.json,sha256=vroDAYw4xA5xhkHV4pkiFXdhKAl6hw7-rad_x-PDQes,886
|
|
404
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Fe_west/c/0/0/0,sha256=yIdDCbzJBaBZZLiEokc8MBXDHsvOMngyHoZebToIoOM,221
|
|
405
323
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/zarr.json,sha256=6A45u9KXARFO6u9W4bb-Awf5AWK9H-3EawtrjD9M0IY,881
|
|
406
324
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_east/c/0/0/0,sha256=Zzl1JnbaWbu8A6DXylhBYZmbvA-lemxNVLGOewrH6Ls,222
|
|
407
325
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/zarr.json,sha256=05dcr49Oq-cKeTHV7NmfIxw5yzLaonvm4tebmM4r22A,881
|
|
408
326
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_north/c/0/0/0,sha256=ZaiPo_I-5gYtxZQmxbMd9ILzevY95ZNCPZnx9fYNm2M,222
|
|
409
327
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/zarr.json,sha256=_Gs238mzE4xbAY7gblHcsnp9lAh-qeWFMSBlB0B0sPg,881
|
|
410
328
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_south/c/0/0/0,sha256=c6v7H-8pMEit6x1WxyGO-OEV8sxbp1BXsTubpfJfcT8,222
|
|
411
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/zarr.json,sha256=rtfFpm6p1AGmYeeQXrW7sLviaxELXzjC1rOOCi13ACA,881
|
|
412
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/Lig_west/c/0/0/0,sha256=W0NgHwHFg4vNwvs4y2Eoph01igKqe-RdRYHcQTcMdHE,220
|
|
413
329
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_east/zarr.json,sha256=xTCfiT3TpctA4tQTdipbigLgf71XFlLSosirFtzdMy8,879
|
|
414
330
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_east/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
415
331
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_north/zarr.json,sha256=tchtm0sbvLs7iniU-PaEzDu7SVAzzz4dCpEdrKPy_v8,879
|
|
416
332
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_north/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
417
333
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_south/zarr.json,sha256=amL4tGBuicYoKA4z3vPLpJq6UqzRsYdBvk-dBcw_bkk,879
|
|
418
334
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_south/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
419
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/zarr.json,sha256=CaWqo3Gqgoh_O3VdpkFcp74jrl8Z9yfegtmFkGRfdZ0,879
|
|
420
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NH4_west/c/0/0/0,sha256=xpkRV5nmZ9zQteZk2iNV9vX-lSfUyoOX9Jp6w8ezfwQ,21
|
|
421
335
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/zarr.json,sha256=6ig0BoVcnc90wJpoGgTaYm5z4mQohQtQn_65J36nBxM,889
|
|
422
336
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_east/c/0/0/0,sha256=_vvjXfisxhEXeGMaWlt8PsfMa3wuCMjc1_vAtjCfpuc,222
|
|
423
337
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/zarr.json,sha256=UOHlxByIGyDoE2pGHVjSpTEjch-nK6R41_AtOtIySuc,889
|
|
424
338
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_north/c/0/0/0,sha256=sw1IDQa_GxEvUcX_EKvsLfRlfrv0QFDFJovJTcYPp60,222
|
|
425
339
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/zarr.json,sha256=XhHA_lzAJMC1zCKghQaMyDM1GICkVCftxHWA_sQ5WVQ,889
|
|
426
340
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_south/c/0/0/0,sha256=uUlkqSRGGYb9K8m0tNjKUXDT00oLikx1jzDyfDAfqW0,224
|
|
427
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/zarr.json,sha256=qGrRDU0YwWsmTS5noyEUDTb5k9VWS7OD0amniDfY2l0,889
|
|
428
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/NO3_west/c/0/0/0,sha256=IWSEJ79JO_SIl3GjuGBGSl6pGyJJwAgN6vgqPBEPFBY,222
|
|
429
341
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/zarr.json,sha256=x12zDEIC3y_UVJB7CCpn2IA2r7p-yy_9EUZl1jxH2uc,878
|
|
430
342
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_east/c/0/0/0,sha256=zo9d0-GdruqVYIu5Xqz367nVJjzoSnykz1WkiAQAuLs,219
|
|
431
343
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/zarr.json,sha256=mBCBsRTy5dQV_CzkIlbtEUBOuMMV0FczWOdavFU0KIk,878
|
|
432
344
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_north/c/0/0/0,sha256=kMEHUSwRAAEdMAfY81t8P8MgTDJ9zN89c9HB2Kg_6dg,219
|
|
433
345
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/zarr.json,sha256=L_VaqKuvhix1rIphukYOz1a0OKSqCxUpZlVmw9g0vW0,878
|
|
434
346
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_south/c/0/0/0,sha256=nwa0NulcdBigX8MJuBae-DPB7CmB6Mo8gudKLBImehk,221
|
|
435
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/zarr.json,sha256=RGlC7soB-cbpcmRMIN16WmCXrPGNxw4JXWJxek8bgGA,878
|
|
436
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/O2_west/c/0/0/0,sha256=DYNK8WT50dIC0JvIHiDDajjumxHz0wogEjaoCU5Gcck,220
|
|
437
347
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/zarr.json,sha256=PlIgxZMJuR-CnaSWaroqHi0XCGIjJmKTyoqjw7LaQY8,891
|
|
438
348
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_east/c/0/0/0,sha256=D14ifHdmr7AFuWmWotSO9KqMiRZAepn2U9EOf2THDKo,222
|
|
439
349
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/zarr.json,sha256=zcB9XChUok4Xc2YhSh4NK1_W3AKVCEsw-31ySG2KmR4,891
|
|
440
350
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_north/c/0/0/0,sha256=8SPyNtun5BNXMhsJeVjhId-tgLf0HhkIzowIFhP9Twg,222
|
|
441
351
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/zarr.json,sha256=22T0WrznbuM3aKMDCGOxuNsJ8JhnBpkXjWvuBDfFQdw,891
|
|
442
352
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_south/c/0/0/0,sha256=FbrVzenKBCenQINOCObt031sMoA3Kby2msbgmBpMjMA,222
|
|
443
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/zarr.json,sha256=0YzymvNAeMqRBFzeOFHfiSWDG8OxoPY8cFxISffvY1w,891
|
|
444
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/PO4_west/c/0/0/0,sha256=osDV9KMvFo6lQe1zufrt2OIH678ueX6h4T2TcPHWH3M,222
|
|
445
353
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/zarr.json,sha256=5-IMRP4Yi9n5SyD1sL7PEdzJ184MKd-yGPUByG3Goxs,890
|
|
446
354
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_east/c/0/0/0,sha256=Gdk83mrLZBZraigo-6TD14A9PGJfp6WTi8TkIE-DRFM,222
|
|
447
355
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/zarr.json,sha256=g4xZOlVWg4cLHHsOZS6AFFFDxeI3wJIlWMWbV2tIcpY,890
|
|
448
356
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_north/c/0/0/0,sha256=7okV9Y8WW2pl4I0tSRXFP1gWgD6gWh3oKnS8WCse8kg,222
|
|
449
357
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/zarr.json,sha256=dlGPk8ZZkIMTR5nX6r2q7r8m-QTLYtf-7--79y7MGuE,890
|
|
450
358
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_south/c/0/0/0,sha256=PCzyTHw9zKcT-9vyKX8cesdZkkSPE-jSox5BfeHnzrg,222
|
|
451
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/zarr.json,sha256=F2zUzZ6E9y6lDSFXrrID8agK1ZZAo330YmfuxkGiltw,890
|
|
452
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/SiO3_west/c/0/0/0,sha256=Fdvyo8_RLaILiEexu1eLPIEfnj0IRcehFUeDgX6BZQE,222
|
|
453
359
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/abs_time/zarr.json,sha256=-H0lhseiVPvuzysrUD8RIrH1VknbuKW0zGV_qNbAWwg,781
|
|
454
360
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/abs_time/c/0,sha256=sMbOuPewYPpxcIdzg_idVI6vjRAzkHmL_AwrHAzx7RE,68
|
|
455
361
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/bry_time/zarr.json,sha256=V9cEjqPbQBSxXQp5J14L8L56rEF5Q57HQnz_VxvQ2yE,813
|
|
@@ -460,72 +366,54 @@ roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatol
|
|
|
460
366
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_north/c/0/0/0,sha256=y_tMUqfkXC5PkJHoRZpuZxeZfXtPg8L9IGE1ZbjMIjY,224
|
|
461
367
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/zarr.json,sha256=dAkBDuu13wiclaItLQu3KfeBXfOnHkeULsqNfNVyBDw,875
|
|
462
368
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_south/c/0/0/0,sha256=TEJr13bmIAlYHlnglNNjjnMKWKP4iKNjDGm6gcHEuk0,222
|
|
463
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/zarr.json,sha256=zNrVvGpP-Ai2p507xLy-kcKmOqOEnZ3FkQ45t6sK14c,875
|
|
464
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatC_west/c/0/0/0,sha256=M0hRnb4O1um6aTN4EajhL_mrYU3GcVmwg7cikrTHmy4,224
|
|
465
369
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/zarr.json,sha256=cMYVXa2jHv6aGrzEE3wpkmFfQkrvQpLlb8-qL-tTrYQ,877
|
|
466
370
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_east/c/0/0/0,sha256=RYAoQF1Z1dEtsO7juxFzY6emmEDZxQ_KYvXx4IcYAzc,222
|
|
467
371
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/zarr.json,sha256=c8Ac09aQu_L-zL95rNpq7bwHYR54EMvqBoS4DS1MRWo,877
|
|
468
372
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_north/c/0/0/0,sha256=jZF4Gk1joS0uu23srx1Ijwq_SmRH2I0xXjdMqmNt62U,222
|
|
469
373
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/zarr.json,sha256=_ZJH_kHxYksIokbDDaaMwlLrotJmW7eBweZir6W4s54,877
|
|
470
374
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_south/c/0/0/0,sha256=G-Dns0KA-sHQUCnlWuM4NOufWsJRKRu6paVgpZhgUpM,224
|
|
471
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/zarr.json,sha256=ZECIegCEuxgj-u8hinN2fvQzOexk8BuCPLTYhybW1_g,877
|
|
472
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatChl_west/c/0/0/0,sha256=vM1dDHsDOGzFpdcOa1E9OKoquGJaqzsBFpRqnTLPvU0,224
|
|
473
375
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/zarr.json,sha256=oXbbrZre9EMYuuyNr029-7X1I7bs3Z2eQ2yQDE7wbZ8,873
|
|
474
376
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_east/c/0/0/0,sha256=Mk4xjRbQfg4H2aJ2DA1QF4r9yBsJkHg4K-vzZkqc2vI,224
|
|
475
377
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/zarr.json,sha256=ypOlXVAZeLKNlMS0-khI1u-kMUccVvGdt6FnMspi73E,873
|
|
476
378
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_north/c/0/0/0,sha256=peUrp4MZQWUIR738_zNgWz6pJ0ztCHU_gAROpz3xMps,224
|
|
477
379
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/zarr.json,sha256=cQkCp_Jw2CLwbRvTcp4tHAMak_6lg_lP5sKA3saCMKM,873
|
|
478
380
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_south/c/0/0/0,sha256=NoA6lO2kOGTlWKRR-G0BKTAulSn0tScmmbnBLVqtmdU,225
|
|
479
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/zarr.json,sha256=KLZchKkOXA1O0FpCxJZGQ98Fh0WNukcyn8staRewu5Y,873
|
|
480
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatFe_west/c/0/0/0,sha256=SSY5os1fR5f67__8_Z02RVvTL6HouIbNcRr2Z2-ita0,226
|
|
481
381
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/zarr.json,sha256=ZWC-Tzi8f9sjGBS9gc9BQkM9DE4EeEfWz07gQXg3Lvk,879
|
|
482
382
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_east/c/0/0/0,sha256=lwfM8yTm_580If1miBJx05SFtOgqgkD2lAjjI_EkrUU,222
|
|
483
383
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/zarr.json,sha256=tzvRBCc6vzEPajF5SGAOv2y0E7pJobfey_82QeOVf10,879
|
|
484
384
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_north/c/0/0/0,sha256=c1IO7QGxb32b0pTERzwKKNfMv340f0YqSgBz6j-u1fs,222
|
|
485
385
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/zarr.json,sha256=8_kJK2LTuknIuRY6KyLjv_PA4IeNNhSx9Hg1u9MKc7s,879
|
|
486
386
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_south/c/0/0/0,sha256=0RPVVxm64uxE3jaGIJEhUYO-8Fq9LrOf40HjFf8dPj4,226
|
|
487
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/zarr.json,sha256=P-Y4Xq8h8y7bq3HkOlyvl9esUCNU2E8YuUNSan73BQw,879
|
|
488
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatP_west/c/0/0/0,sha256=d-AalK8BATR1bYS32D_6tFPDhl7Qo0OPRBREK1zZ8VE,226
|
|
489
387
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/zarr.json,sha256=e4pM3bQ8ucnuq9Aw_GX-AiJzI7u7Wom7QOnEwiNVDJw,877
|
|
490
388
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_east/c/0/0/0,sha256=RYAoQF1Z1dEtsO7juxFzY6emmEDZxQ_KYvXx4IcYAzc,222
|
|
491
389
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/zarr.json,sha256=gxn3QNf6QM0dBapGHgd3gkGoeXyjwdT_95RFlNnF5ZY,877
|
|
492
390
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_north/c/0/0/0,sha256=jZF4Gk1joS0uu23srx1Ijwq_SmRH2I0xXjdMqmNt62U,222
|
|
493
391
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/zarr.json,sha256=nyrZu5aON4Qw_s4aqkJz2jM06pR2i0PZNnVT3f-WykA,877
|
|
494
392
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_south/c/0/0/0,sha256=G-Dns0KA-sHQUCnlWuM4NOufWsJRKRu6paVgpZhgUpM,224
|
|
495
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/zarr.json,sha256=Kjlo_X9rD5GVGOCfP32TjktYCMc6UkpqV9FHEGqZ4ig,877
|
|
496
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diatSi_west/c/0/0/0,sha256=vM1dDHsDOGzFpdcOa1E9OKoquGJaqzsBFpRqnTLPvU0,224
|
|
497
393
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/zarr.json,sha256=m8GKSHcHhtHyqjTvh_Pc_IfuOU9fRRzXYaNWXrcbVqs,879
|
|
498
394
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_east/c/0/0/0,sha256=D4w39OYyh1NliXrRTB_FPO8IlB64cR0rOk-0vBB4Puo,224
|
|
499
395
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/zarr.json,sha256=MjSzFvh_03TuBOGes6JxaufdZ8NHHGKEEw2O8S7kAuA,879
|
|
500
396
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_north/c/0/0/0,sha256=JncQCi-SvEFAALAJIBzNQ2jRXReYyydWPD21pu7L9HI,224
|
|
501
397
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/zarr.json,sha256=m0xNcyO1KgXOv67eMyY-ib9MvkzOzHHHTxaLL8diVFw,879
|
|
502
398
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_south/c/0/0/0,sha256=T7emIzgPxS7cXAbIQI3chfbcofYbx9AaSzmxMRNb_dk,222
|
|
503
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/zarr.json,sha256=W7SJjTm6jmr7xb0wqQxA305lx8hiPaMWJEgCYJ3XcDs,879
|
|
504
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazC_west/c/0/0/0,sha256=lR5pQN7HtffdYs91IjkjKKQ1mpqNMiPg8-yDW4yyzhY,224
|
|
505
399
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/zarr.json,sha256=68DgmhBkPjC-RE2uv2Qz1k4PQO9YnkEMRD45J5XM2g0,881
|
|
506
400
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_east/c/0/0/0,sha256=YphEBhhbw9owg9hlMPupdbJ9108dXncFWDr4mx2_Oys,224
|
|
507
401
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/zarr.json,sha256=Fr3DKjkl1DBNWykdHy_RKLnNwtwAhO0FtsqWtKK1R-k,881
|
|
508
402
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_north/c/0/0/0,sha256=pybg_Ss9ACrjsKcnQDfpN1QpD65wCPugVBOpCSvNrSg,224
|
|
509
403
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/zarr.json,sha256=OGSycztbZqYMxHPXJaBHw_Kp44tOTFmOTq1cVm7x4Ro,881
|
|
510
404
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_south/c/0/0/0,sha256=XOyMcP_gicwc4_sUwqvZjrM9rDCKW7GGnPSqwIeOvks,222
|
|
511
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/zarr.json,sha256=MxqW1iVZ3A25JtibSZphEUuMkZH-6DLufNhpMGQoKT0,881
|
|
512
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazChl_west/c/0/0/0,sha256=RFMEsf8z18nAuXxv3TN_Oj9FH2shz-VEx27PisiW6gQ,225
|
|
513
405
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/zarr.json,sha256=6aGES4UyBY6Lzyjlh1Ob0rizskSP8DckMOoBZ-7lClA,877
|
|
514
406
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_east/c/0/0/0,sha256=07XRBYXpIdmFhsJOQ-Qka3fMetUKFgZ7RhkeFw_1VcM,224
|
|
515
407
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/zarr.json,sha256=gZhhhj4JrmKahrovDejkhOYy1BVImKW1iJxYcoHBTo0,877
|
|
516
408
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_north/c/0/0/0,sha256=7z2K1xPn_tVdPe7n1Rp_pSoIrC77pHqIKDS5hs6gyYU,224
|
|
517
409
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/zarr.json,sha256=-2x-ltFdhyyvkefZEkZWf_2uBTVCAC-EoC_osw672Rs,877
|
|
518
410
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_south/c/0/0/0,sha256=cbHi2keU_yhZZ72OD1bFMyigXa8ZfZrcZg-MuPUgKqs,222
|
|
519
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/zarr.json,sha256=1OVX1pJzC45qEQ-ggXd15Rzrntb28d_m4drNdqTQGSU,877
|
|
520
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazFe_west/c/0/0/0,sha256=eeHiED3jh3-Yp0YEbO0QIgs-JxJfcSHzO5EgTRojo4s,224
|
|
521
411
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/zarr.json,sha256=iRgy7MPEjsoBr0Diki6DIKSpj3c-T2mkFru0bGkSAp4,883
|
|
522
412
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_east/c/0/0/0,sha256=pIS4Gl8oL9SSkNiL8M4ogKS3f9QtE9-tU4FLaQWtUtc,224
|
|
523
413
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/zarr.json,sha256=2_LLwUnyjgezofNuG7rW5JpV9P-WLKBYqEHQIl0lu5g,883
|
|
524
414
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_north/c/0/0/0,sha256=DHUuuGUvVO-XNLjvjQdO1GMlruyVy_SBPxzGtyqCUxY,224
|
|
525
415
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/zarr.json,sha256=X-dFKwxVE4g8pIDMiDc1w-JrArlq6oc3iXpt9sMG1lI,883
|
|
526
416
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_south/c/0/0/0,sha256=L3s6EAbgCboQ-WTbMmH9PuTsOYbpWNXAPoUMp8b4LPQ,222
|
|
527
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/zarr.json,sha256=vI-onIgDmSVoTD754XJUosAqhGz121rSH-Eg8Nl0mX0,883
|
|
528
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/diazP_west/c/0/0/0,sha256=2ZWEfXEwZCdK_3BOxVxVV6B3hZTi4HVdOufTjYyuEHw,224
|
|
529
417
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/month/zarr.json,sha256=nD74FpQhA_TAMlQB7G-bwlOgtM5zrd99rJvWW77uVzw,699
|
|
530
418
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/month/c/0,sha256=VzA4G-xMki8K3RffLgnKgwB3MiJHrqEX1FEPmAslJdU,46
|
|
531
419
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_east/zarr.json,sha256=xezClPouz5Z1-NAXaCNuhe2Qr9_gYrxPPhw467_FwM4,888
|
|
@@ -534,48 +422,36 @@ roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatol
|
|
|
534
422
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_north/c/0/0/0,sha256=VYzWAe1bi20TC8XFX1xUk0-FuGG6Je8c7zRLyK0UMCA,223
|
|
535
423
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/zarr.json,sha256=NAOnOy1HyeAycVUBrBFQi9Qnl-d2ZF-JULrbWT_YhX0,888
|
|
536
424
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_south/c/0/0/0,sha256=rd6E9w7NZ1CVvlzHRqol2V38ZqoSQMasrqVFE-T8Vgw,222
|
|
537
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/zarr.json,sha256=sKHmaAw25KoekElu0EpztJ0A8juerNNzx1zFV3oSpsU,888
|
|
538
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spC_west/c/0/0/0,sha256=kPYaq_lPG-3t42hSDoFqlXZRY8U-eERqkU_jDV7r8mE,224
|
|
539
425
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/zarr.json,sha256=33r3z0YOu2eSptJb1sf63nJNr-EF3bvgBRjbT-T3_Q4,887
|
|
540
426
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_east/c/0/0/0,sha256=RYAoQF1Z1dEtsO7juxFzY6emmEDZxQ_KYvXx4IcYAzc,222
|
|
541
427
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/zarr.json,sha256=lND0rywHtImVThLLbCoUxvmJm_3qZuupz3SFPXi0qek,887
|
|
542
428
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_north/c/0/0/0,sha256=jZF4Gk1joS0uu23srx1Ijwq_SmRH2I0xXjdMqmNt62U,222
|
|
543
429
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/zarr.json,sha256=vY_zXBWvIJQbjrgNKKhyx1oXIrQlTJhurmon501A5UM,887
|
|
544
430
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_south/c/0/0/0,sha256=G-Dns0KA-sHQUCnlWuM4NOufWsJRKRu6paVgpZhgUpM,224
|
|
545
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/zarr.json,sha256=HeWKJtS4nzzIoOqQHO7HEXA_rK-Eb6ZX1quoPrNa158,887
|
|
546
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spCaCO3_west/c/0/0/0,sha256=vM1dDHsDOGzFpdcOa1E9OKoquGJaqzsBFpRqnTLPvU0,224
|
|
547
431
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/zarr.json,sha256=7LUk_W5ti05d1hP0zLu4ytXjHl2K7KPnqSeUEbForXI,891
|
|
548
432
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_east/c/0/0/0,sha256=MGC8svh8SciQC0V6skMEFaAd3rIWSfnNP76E7kjJrWM,224
|
|
549
433
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/zarr.json,sha256=_o0ajzDCHqfbwMWKXD6GCKQfZNQQ23yKYQI4paeMFVM,891
|
|
550
434
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_north/c/0/0/0,sha256=EUBzIlgQC13NHcDqu3TqdgE-sSoR9hWfRFILex2lF9E,223
|
|
551
435
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/zarr.json,sha256=S-Pgcrc1LP1flhq5tZAtIWh4TbbJd2gAsmGyhCUR-g8,891
|
|
552
436
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_south/c/0/0/0,sha256=_QyOe_WVqeQwPqrNaauVT6YZGxMS4LvDiDjlmiJLWUw,222
|
|
553
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/zarr.json,sha256=Ho_Io5ed3pFj0AZnIinetHGIvQ05AY9fR4nggkW27OE,891
|
|
554
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spChl_west/c/0/0/0,sha256=Dk_gBJY1T2uRF-GkRc8bRcbzrOljQaDql8zDksQyr18,224
|
|
555
437
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/zarr.json,sha256=QOFrgeOSHd_ndaTGt2h3qVifIDjPKuQPsuifoMooo-w,886
|
|
556
438
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_east/c/0/0/0,sha256=KQoic92b1F2hjww3FVNnS09Ls1mtORrdKXeW_K9jSyM,223
|
|
557
439
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/zarr.json,sha256=qqjD8KCazU5ZDglxvHjPxLqfNxYPYAAz8TjwX_FSt7c,886
|
|
558
440
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_north/c/0/0/0,sha256=9PhyAUD-UmdU6SAiFZsYI15aI3jMchGxIA_dEN0ajk8,223
|
|
559
441
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/zarr.json,sha256=aCv_809cIuSZZ5SBh46uAyYxHYeGcx1siHbY4ln3bY4,886
|
|
560
442
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_south/c/0/0/0,sha256=kH-YZKXI729zGs6OR-Dc5zw_VHGN0wyk1Nwt3on6Gec,224
|
|
561
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/zarr.json,sha256=ONIvNYjDjZ4smpfhAt5nW80twyWQpsRdHMJqhb6ixng,886
|
|
562
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spFe_west/c/0/0/0,sha256=FWgnmt0MTAbTrgMlslf4kcp7KwnvyUwd3KCp6tvsjQA,224
|
|
563
443
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/zarr.json,sha256=m2lYW3FT4YzNsLmCbyK_S3pP7GrBczizVy9UrrZA2gI,893
|
|
564
444
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_east/c/0/0/0,sha256=BPa8vp0oG2tE4VHloMAEqvkaHWZJOC7SqmqvMGmfdLI,224
|
|
565
445
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/zarr.json,sha256=0f7VNxkcBewoCptZBpLGztlgfwS-IBimInDC5Zc6F5s,893
|
|
566
446
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_north/c/0/0/0,sha256=NdLz2ZNPsUL87Ve1XhIBlHmWXVtAXK4XVqRmLg6wVbw,224
|
|
567
447
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/zarr.json,sha256=ITfsg02gAsYynYMe2KlmlpwUgqboEBvqBQdoodJPk24,893
|
|
568
448
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_south/c/0/0/0,sha256=u6K0dDlYoDbx_Jw6q6tYGHpzFhoCO28dpmlcO9It250,222
|
|
569
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/zarr.json,sha256=dQZHxSzlToTflp3-fwnbTIMB8A_oaU6QOJYK-_zkAw4,893
|
|
570
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/spP_west/c/0/0/0,sha256=4viRQzaTJ4cZaQhrmx-FWO19FPQv3OYlkRT-HwjxQZs,225
|
|
571
449
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/zarr.json,sha256=RIw9LGFS6GgXGsPI2-UKeiOp3AT04632-kuUgF8dSA4,880
|
|
572
450
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_east/c/0/0/0,sha256=QulRcKMewYslqKekTjJg9hloEZxrPODBPvgF56LjTh4,224
|
|
573
451
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/zarr.json,sha256=l-cV3m1alus9EYsmUJC2PP3MRyIdvcBijyQ03gawOLY,880
|
|
574
452
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_north/c/0/0/0,sha256=AqOtak6eZqsr6OO7TNID5V4ctMDmOGeMqrDYbYCEBKQ,223
|
|
575
453
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/zarr.json,sha256=CbHlnDsbsotUZmz9Ges2Sc3-NeNKLPQE3t8M1J0XON0,880
|
|
576
454
|
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_south/c/0/0/0,sha256=-icHHRtfCtvMB-dptk3CE4XwsBr4mT5tzpVrraUzGfY,226
|
|
577
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/zarr.json,sha256=xvrPnUDoI-HAAGxkjtklNqny19Jdo3pXA5XKKSS7Ru8,880
|
|
578
|
-
roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_unified_climatology.zarr/zooC_west/c/0/0/0,sha256=3LzDh0P5EMyvkf0n-bIzyMbVVoeKg0kuikEBWlIbuLs,226
|
|
579
455
|
roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/zarr.json,sha256=zW-a-1gGvRN_jTcH9fYcacbMZm_ZXgowhJ-fvWjxsbE,14436
|
|
580
456
|
roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/abs_time/zarr.json,sha256=2M4SHlaV7W9ARTKH8YwXMStBHFfW3_Vg0nAYyHHvG0o,774
|
|
581
457
|
roms_tools/tests/test_setup/test_data/bgc_surface_forcing.zarr/dust/zarr.json,sha256=Y9o3HCY4UezK1FbBI5QrebCt3dM8FQW_-Ubss1ja8CM,900
|
|
@@ -1108,11 +984,11 @@ roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Im/c/0/0/0,sha256=yeK
|
|
|
1108
984
|
roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/zarr.json,sha256=ijjuKvl2IFLqKJoXOdhimnydipaY-l_W7-8xNjRRVjA,866
|
|
1109
985
|
roms_tools/tests/test_setup/test_data/tidal_forcing.zarr/v_Re/c/0/0/0,sha256=XObFjHy1AqXnN7omeuK2xoAw888YPLPX-sjgcK3-5NU,89
|
|
1110
986
|
roms_tools/tests/test_tiling/test_join.py,sha256=2z8VbXL7que-BNTDdNM4Ddd-Dwtr0ggee-QfKipnkv4,10018
|
|
1111
|
-
roms_tools/tests/test_tiling/test_partition.py,sha256=
|
|
987
|
+
roms_tools/tests/test_tiling/test_partition.py,sha256=h971QTGr0ArGUDby5X2UDpBBVnqBpgB9ld3vwg0nAI0,11749
|
|
1112
988
|
roms_tools/tiling/join.py,sha256=GgDcl3-BROTAekqtkpWKL1Mm2zWdnHB_mX_1hLGp4Mk,5984
|
|
1113
|
-
roms_tools/tiling/partition.py,sha256=
|
|
1114
|
-
roms_tools-3.
|
|
1115
|
-
roms_tools-3.
|
|
1116
|
-
roms_tools-3.
|
|
1117
|
-
roms_tools-3.
|
|
1118
|
-
roms_tools-3.
|
|
989
|
+
roms_tools/tiling/partition.py,sha256=aw4uFdiVaMcSUpPB0w3vB_j9HAM9yL8GYrTE0ROxRwo,7754
|
|
990
|
+
roms_tools-3.4.0.dist-info/licenses/LICENSE,sha256=yiff76E4xRioW2bHhlPpyYpstmePQBx2bF8HhgQhSsg,11318
|
|
991
|
+
roms_tools-3.4.0.dist-info/METADATA,sha256=sVqk3BzEsAL7ls00WAkjObvATj3Q7-eYxfcTjJ7XeOM,5681
|
|
992
|
+
roms_tools-3.4.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
993
|
+
roms_tools-3.4.0.dist-info/top_level.txt,sha256=aAf4T4nYQSkay5iKJ9kmTjlDgd4ETdp9OSlB4sJdt8Y,19
|
|
994
|
+
roms_tools-3.4.0.dist-info/RECORD,,
|