Skip to content

Commit

Permalink
Minor fix to asdf2salvus.py
Browse files Browse the repository at this point in the history
  • Loading branch information
geojunky committed Feb 20, 2023
1 parent 95760ab commit df888c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seismic/ASDFdatabase/asdf2salvus.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ def extract_data_for_event(fds:FederatedASDFDataSet,
type=click.Path(exists=True))
@click.argument('output-folder', required=True,
type=click.Path(exists=True))
@click.option('--seconds-before', type=float, default=240, show_default=True,
@click.option('--seconds-before', type=float, default=240.0, show_default=True,
help="Start of data-window before origin-time")
@click.option('--seconds-after', type=float, default=240, show_default=True,
@click.option('--seconds-after', type=float, default=3600.0, show_default=True,
help="End of data-window after origin-time")
@click.option('--data-name', type=str, default='raw_data', show_default=True,
help="Name of data folder within Salvus' expected folder hierarchy")
Expand Down

0 comments on commit df888c7

Please sign in to comment.