Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AossTower
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MetObs
AossTower
Commits
ce2a58b5
Unverified
Commit
ce2a58b5
authored
Mar 22, 2017
by
David Hoese
Browse files
Options
Downloads
Patches
Plain Diff
Fix argparse short argument for chunk size
parent
33e3bd4a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
aosstower/level_b1/nc.py
+1
-1
1 addition, 1 deletion
aosstower/level_b1/nc.py
with
1 addition
and
1 deletion
aosstower/level_b1/nc.py
+
1
−
1
View file @
ce2a58b5
...
@@ -467,7 +467,7 @@ def main():
...
@@ -467,7 +467,7 @@ def main():
argparser
.
add_argument
(
'
-i
'
,
'
--interval
'
,
type
=
float
,
argparser
.
add_argument
(
'
-i
'
,
'
--interval
'
,
type
=
float
,
help
=
'
Width of the interval to average input data over in minutes.
'
+
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)
"
)
"
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
S
ize for the netCDF file
'
)
argparser
.
add_argument
(
'
--chunk-size
'
,
type
=
int
,
help
=
'
chunk
s
ize for the netCDF file
'
)
argparser
.
add_argument
(
'
-z
'
,
'
--zlib
'
,
action
=
'
store_true
'
,
help
=
'
compress netCDF file with zlib
'
)
argparser
.
add_argument
(
'
-z
'
,
'
--zlib
'
,
action
=
'
store_true
'
,
help
=
'
compress netCDF file with zlib
'
)
argparser
.
add_argument
(
"
input_files
"
,
nargs
=
"
+
"
,
argparser
.
add_argument
(
"
input_files
"
,
nargs
=
"
+
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment