Skip to content

Commit

Permalink
improve help
Browse files Browse the repository at this point in the history
  • Loading branch information
casadoj committed Feb 7, 2025
1 parent daf3a92 commit 752606b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lisfloodutilities/ncextract/ncextract.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ def main(argv=sys.argv):
prog=prog,
)
parser.add_argument("-p", "--points", required=True, help="CSV file of points of interest (id, lat, lon)")
parser.add_argument("-i", "--input", required=True, help="Input directory with .nc files")
parser.add_argument("-i", "--input", required=True, help="Input directory with NetCDF or GRIB files")
parser.add_argument("-o", "--output", required=True, help="Output directory for time series")
parser.add_argument("-f", "--format", choices=["nc", "csv"], default="nc", help="Output format: 'nc' of 'csv' (default: 'nc')")
parser.add_argument("-s", "--start", type=str, default=None, help='Start datetime (YYYY-MM-DD)')
parser.add_argument("-e", "--end", type=str, default=None, help='End datetime (YYYY-MM-DD)')
parser.add_argument("-f", "--format", choices=["nc", "csv"], default="nc", help="Output format: 'nc' or 'csv' (default: 'nc')")
parser.add_argument("-s", "--start", type=str, default=None, help='Start datetime (YYYY-MM-DD) (default: None)')
parser.add_argument("-e", "--end", type=str, default=None, help='End datetime (YYYY-MM-DD) (default: None)')

args = parser.parse_args()

Expand Down

0 comments on commit 752606b

Please sign in to comment.