From ce2a58b548e9876742e5f484ff801e89d87022dd Mon Sep 17 00:00:00 2001 From: davidh-ssec <david.hoese@ssec.wisc.edu> Date: Wed, 22 Mar 2017 16:01:55 -0500 Subject: [PATCH] Fix argparse short argument for chunk size --- aosstower/level_b1/nc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aosstower/level_b1/nc.py b/aosstower/level_b1/nc.py index 410c422..e0621d7 100644 --- a/aosstower/level_b1/nc.py +++ b/aosstower/level_b1/nc.py @@ -467,7 +467,7 @@ def main(): argparser.add_argument('-i', '--interval', type=float, help='Width of the interval to average input data over in minutes.' + " If not specified, 1 is assumed. (Use 60 for one hour and 1440 for 1 day)") - argparser.add_argument('-cs', '--chunk-size', type=int, help='chunk Size for the netCDF file') + argparser.add_argument('--chunk-size', type=int, help='chunk size for the netCDF file') argparser.add_argument('-z', '--zlib', action='store_true', help='compress netCDF file with zlib') argparser.add_argument("input_files", nargs="+", -- GitLab