Skip to content
Snippets Groups Projects
Commit 9f6e446e authored by Max Drexler's avatar Max Drexler
Browse files

remove todo file

parent be34945d
No related branches found
No related tags found
1 merge request!3remove todo file
Pipeline #56299 failed
......@@ -123,7 +123,12 @@ def setup() -> tuple[Iterable[GribPayload], Callable[[GribPayload], None]]:
"--output",
choices=["amqp", "json"],
default="json",
help="Where to output processed grib messages to. Default is %(default)s.",
help="How to output processed grib messages to. Default is %(default)s.",
)
parser.add_argument(
'--no-xcd',
action='store_true',
help="Don't load XCD information when processing grib files such as model names."
)
mq_group = parser.add_argument_group(
......@@ -160,7 +165,11 @@ def setup() -> tuple[Iterable[GribPayload], Callable[[GribPayload], None]]:
if args.verbosity < 0:
parser.error("--verbosity cannot be negative!")
initialize_logging(args.verbosity, args.log_dir)
load_xcd_models()
if args.no_xcd:
"""Don't load those models"""
else:
load_xcd_models()
# Get an iterator over grib files to process
file_iter: Iterable[str]
......
Not in any particular order:
* TESTING!!!
* packaging
* Automatically bundle with grib2io
* Add support for GRIB1 processing
* DID I MENTION TESTING!!!
* Documentation for the package.
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