Skip to content

Commit

Permalink
implement review feedback from dana
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaflott committed Oct 3, 2024
1 parent 854863b commit 0267b12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fre/app/freapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def app_cli():
help = "`begin` / `begin` (env var) ISO8601 datetime format specification for" + \
" starting date of data, part of input target file name",
required = True)
@click.option("-t", "--tmp_dir",
@click.option("-tmp", "--tmp_dir",
type = str,
help = "`TMPDIR` / `tmp_dir` (env var) temp directory for location of file " + \
"read/writes",
required = True)
@click.option("-r", "--remap_dir",
@click.option("-rd", "--remap_dir",
type = str,
help = "`fregridRemapDir` / `remap_dir` (env var) directory containing remap file" + \
" for regridding",
Expand All @@ -49,7 +49,7 @@ def app_cli():
type = str,
help = "`gridSpec` / `grid_spec` (env var) file containing mosaic for regridding",
required = True)
@click.option("-I", "--def_xy_interp",
@click.option("-xy", "--def_xy_interp",
type = str,
help = "`defaultxyInterp` / `def_xy_interp` (env var) default lat/lon resolution " + \
"for output regridding. (change me? TODO)",
Expand All @@ -70,7 +70,7 @@ def regrid(context,
type = str,
help = "Output file",
required = True)
@click.option("-p", "--psfile",
@click.option("-p", "--psfile", # surface pressure... ps? TODO
help = "Input NetCDF file containing surface pressure (ps)",
required = True)
@click.pass_context
Expand Down

0 comments on commit 0267b12

Please sign in to comment.