Skip to content

Commit

Permalink
#183 Add optional fre catalog builder --slow option (default off)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Blanton authored and Chris Blanton committed Sep 12, 2024
1 parent 257736c commit 08e1d3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fre/catalog/frecatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ def catalog_cli():
@click.option('--filter_chunk', nargs = 1)
@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):
filter_freq = None, filter_chunk = None, 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 08e1d3c

Please sign in to comment.