Skip to content

Commit

Permalink
Merge pull request #306 from NOAA-GFDL/294.CatalogToolUpdates
Browse files Browse the repository at this point in the history
Catalog tool verbose flag
  • Loading branch information
ilaflott authored Jan 10, 2025
2 parents f5d4c37 + f2b52d3 commit 70a6928
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fre/catalog/frecatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ def catalog_cli():
@click.option('--filter_realm', nargs = 1)
@click.option('--filter_freq', nargs = 1)
@click.option('--filter_chunk', nargs = 1)
@click.option('--verbose', is_flag = True, default = False)
@click.option('--overwrite', is_flag = True, default = False)
@click.option('--append', is_flag = True, default = False)
@click.option('--slow', is_flag = True, default = False,
help = "Open NetCDF files to retrieve additional vocabulary (standard_name and intrafile static variables")
@click.pass_context
def builder(context, input_path = None, output_path = None, config = None, filter_realm = None,
filter_freq = None, filter_chunk = None, overwrite = False, append = False, slow = False):
filter_freq = None, filter_chunk = None, verbose = False, overwrite = False, append = False, slow = False):
# pylint: disable=unused-argument
""" - Generate .csv and .json files for catalog """
context.forward(gen_intake_gfdl.create_catalog_cli)
Expand Down

0 comments on commit 70a6928

Please sign in to comment.