From b4fb5a38f69db9e6a623ed7032c56e766a4e1c33 Mon Sep 17 00:00:00 2001 From: FabioDioguardi Date: Wed, 25 Sep 2024 17:57:30 +0200 Subject: [PATCH] Updated instructions to use ERA5 reanalysese --- README.md | 4 ++-- weather.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 33e9c6d..a3f20e6 100644 --- a/README.md +++ b/README.md @@ -236,8 +236,8 @@ Weather data software: - CDSAPI client key (required for ERA5 data and reanalysis mode) - The user needs to register to: https://cds.climate.copernicus.eu/cdsapp#!/home - Once the registration is approved, to get the data follow the instructions here: https://confluence.ecmwf.int/display/CKB/How+to+download+ERA5 + The user needs to register to: https://cds-beta.climate.copernicus.eu/ + Once the registration is approved, to get the data follow the instructions here: https://confluence.ecmwf.int/display/CKB/Climate+Data+Store+%28CDS%29+documentation The user needs to install the personal key in a .cdsapirc file, to save in different locations depending on the OS. Please read the instructions. diff --git a/weather.py b/weather.py index e164ea8..c876843 100644 --- a/weather.py +++ b/weather.py @@ -12,9 +12,9 @@ def read_arguments(): parser = argparse.ArgumentParser(description='Input data', formatter_class=argparse.ArgumentDefaultsHelpFormatter) - parser.add_argument('-M', '--mode', default='reanalysis', help='Possible options: reanalysis, forecast. If ' - 'reanalysis, either ERA5 or WST options should be on. \n If forecast, GFS data will be ' - 'downloaded and processed') + parser.add_argument('-M', '--mode', default='reanalysis', help='Possible options: reanalysis, forecast, inversion. ' + 'If reanalysis or inversion, either ERA5 or WST options should be on. \n If forecast, GFS data ' + 'will be downloaded and processed') # FABIO: da qui, nuova modalità "inversion" parser.add_argument('-RT', '--run_type', default='new', help='Specify if the simulation is a new one or a restart. ' 'Possible options are: new, restart') parser.add_argument('-CS', '--continuous_simulation', default='False', help='Specify if the simulation is '