Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update target grid help in parser #974

Merged
merged 9 commits into from
Nov 30, 2023
2 changes: 1 addition & 1 deletion docs/metrics_mean-clim.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ where the list of variables (vars) to run the analysis on includes 'rlut' (outgo
* **test_data_path**: the path/template where the test_data resides, e.g.:
* **reference_data_set**: a python list that specifies 'default', 'alternate1', 'alternate2' or 'all', e.g., ['default']
* **reference_data_path**: the root path to the observational climatology database, e.g., '~/demo_data/PCMDIobs2_clims/'
* **target_grid**: '2.5x2.5' or an actual cdms2 grid object
* **target_grid**: a string giving the desired horizontal resolution in degrees following the form 'LATxLON', e.g. '2.5x2.5'
* **regrid_tool**: options include 'esmf' and 'regrid2'
* **metric_output_path**: the full path to the metrics output in JSON files, e.g., '~/demo_data/PMP_metrics/'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def create_mean_climate_parser():
parser.add_argument(
"--target_grid",
dest="target_grid",
help='Options are "2.5x2.5" or an actual cdms2 grid object',
help='Set to "LATxLON" resolution in degrees. Default is "2.5x2.5"',
required=False,
default="2.5x2.5",
)
Expand Down
Loading