Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions esmvaltool/cmorizers/data/cmor_config/OSI-450-nh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Common global attributes for Cmorizer output
attributes:
dataset_id: OSI-450-nh
version: 'v2'
version: 'v3'
tier: 2
modeling_realm: reanaly
project_id: OBS
Expand All @@ -19,6 +19,6 @@ variables:

custom:
create_areacello: true
grid_cell_size: 25000.
grid_cell_size: 0.625e9
# Minimum number of days with data to generate daily files
min_days: 50
4 changes: 2 additions & 2 deletions esmvaltool/cmorizers/data/cmor_config/OSI-450-sh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Common global attributes for Cmorizer output
attributes:
dataset_id: OSI-450-sh
version: 'v2'
version: 'v3'
tier: 2
modeling_realm: reanaly
project_id: OBS
Expand All @@ -19,6 +19,6 @@ variables:

custom:
create_areacello: true
grid_cell_size: 25000.
grid_cell_size: 0.625e9
# Minimum number of days with data to generate daily files
min_days: 50
8 changes: 4 additions & 4 deletions esmvaltool/cmorizers/data/datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1178,10 +1178,10 @@ datasets:
OSI-450-nh:
tier: 2
source: http://osisaf.met.no/p/ice/
last_access: 2019-05-02
last_access: 2025-03-14
info: |
Download the desired years from the following ftp:
ftp://osisaf.met.no/reprocessed/ice/conc/v2p0
ftp://osisaf.met.no/reprocessed/ice/conc/v3p0
Please, keep folder structure.

If you want to use only the nh data download only the nh files,
Expand All @@ -1194,10 +1194,10 @@ datasets:
OSI-450-sh:
tier: 2
source: http://osisaf.met.no/p/ice/
last_access: 2019-05-02
last_access: 2025-03-14
info: |
Download the desired years from the following ftp:
ftp://osisaf.met.no/reprocessed/ice/conc/v2p0
ftp://osisaf.met.no/reprocessed/ice/conc/v3p0
Please, keep folder structure.

If you want to use only the nh data download only the nh files,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def download_dataset(
if start_date is None:
start_date = datetime(1979, 1, 1)
if end_date is None:
end_date = datetime(2015, 12, 1)
end_date = datetime(2020, 12, 1)
downloader = FTPDownloader(
config=config,
server="osisaf.met.no",
Expand All @@ -42,7 +42,7 @@ def download_dataset(

loop_date = start_date

downloader.set_cwd("/reprocessed/ice/conc/v2p0")
downloader.set_cwd("/reprocessed/ice/conc/v3p0")

while loop_date <= end_date:
year = loop_date.year
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def download_dataset(
if start_date is None:
start_date = datetime(1979, 1, 1)
if end_date is None:
end_date = datetime(2015, 12, 1)
end_date = datetime(2020, 12, 1)
downloader = FTPDownloader(
config=config,
server="osisaf.met.no",
Expand All @@ -42,7 +42,7 @@ def download_dataset(

loop_date = start_date

downloader.set_cwd("/reprocessed/ice/conc/v2p0")
downloader.set_cwd("/reprocessed/ice/conc/v3p0")

while loop_date <= end_date:
year = loop_date.year
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
http://osisaf.met.no/p/ice/

Last access
20190502
20250314

Download and processing instructions
Download the desired years from the following ftp:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
http://osisaf.met.no/p/ice/

Last access
20190502
20250314

Download and processing instructions
Download the desired years from the following ftp:
Expand Down
4 changes: 2 additions & 2 deletions esmvaltool/recipes/examples/recipe_check_obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -856,9 +856,9 @@ diagnostics:
mip: fx
additional_datasets:
- {dataset: OSI-450-nh, project: OBS, tier: 2,
type: reanaly, version: v2, start_year: 1979, end_year: 2015}
type: reanaly, version: v3, start_year: 1979, end_year: 2020}
- {dataset: OSI-450-sh, project: OBS, tier: 2,
type: reanaly, version: v2, start_year: 1979, end_year: 2015}
type: reanaly, version: v3, start_year: 1979, end_year: 2020}
scripts: null


Expand Down