Skip to content
Snippets Groups Projects
Commit 0cae1fd7 authored by Matthew Westphall's avatar Matthew Westphall
Browse files

updated nc.py

parent d3f7a9ca
No related branches found
No related tags found
No related merge requests found
......@@ -465,7 +465,8 @@ def main():
import argparse
#argparse description
argparser = argparse.ArgumentParser(description="Convert level_00 aoss tower data to level_a0")
argparser = argparse.ArgumentParser(description="Convert level_00 aoss tower data to level_a0",
fromfile_prefix_chars='@')
#argparse verbosity info
argparser.add_argument('-v', '--verbose', action="count", default=int(os.environ.get("VERBOSITY", 2)),
......@@ -485,7 +486,7 @@ def main():
argparser.add_argument('-z', '--zlib', action='store_true', help='compress netCDF file with zlib')
argparser.add_argument("input_files", nargs="+",
help="aoss_tower level_00 paths")
help="aoss_tower level_00 paths. Use @filename to red a list of paths from that file.")
argparser.add_argument('-o', '--output', required=True, nargs="+", help="filename pattern or filename. " +
"Should be along the lines of <filepath>/aoss_tower.YYYY-MM-DD.nc")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment