Skip to content

Commit

Permalink
Minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
geojunky committed Jul 21, 2023
1 parent 70533a5 commit bd2bb95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion seismic/ASDFdatabase/asdf2salvus.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import pyasdf
from mpi4py import MPI
from seismic.ASDFdatabase.FederatedASDFDataSet import FederatedASDFDataSet
from seismic.ASDFdatabase._FederatedASDFDataSetImpl import split_list
from seismic.misc import split_list
import click
from shapely.geometry.polygon import Polygon, Point
from tqdm import tqdm
Expand Down
6 changes: 3 additions & 3 deletions seismic/pick_harvester/local/pick_eqt.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,13 @@ def generate_plots():
@click.argument('output-path', required=True,
type=click.Path(exists=True))
@click.option('--picking-params', type=(float, float, float),
default=(0.3, 0.3, 0.5),
default=(0.5, 0.3, 0.3),
show_default=True,
help="Detection threshold, P-threshold and S-threshold, specified as three "
"space-separated floating point values. The default is (0.3, 0.3, 0.5), "
"space-separated floating point values. The default is (0.5, 0.3, 0.3), "
"which are the recommended values for the original EQTransformer model. "
"The corresponding recommended values for the conservative EQTransformer "
"model are: (0.03, 0.03, 0.5)")
"model are: (0.2, 0.03, 0.03)")
@click.option('--station-names', default='*', type=str,
show_default=True,
help="Either station name(s) (space-delimited) or a text file containing NET.STA entries in each line to "
Expand Down

0 comments on commit bd2bb95

Please sign in to comment.