update
Browse files
app.py
CHANGED
@@ -86,6 +86,7 @@ def run_gamma(picks, config, stations):
|
|
86 |
)
|
87 |
stations["z(km)"] = stations["elevation(m)"].apply(lambda x: -x / 1e3)
|
88 |
|
|
|
89 |
catalogs, assignments = association(picks, stations, config, 0, config["method"])
|
90 |
|
91 |
catalogs = pd.DataFrame(
|
|
|
86 |
)
|
87 |
stations["z(km)"] = stations["elevation(m)"].apply(lambda x: -x / 1e3)
|
88 |
|
89 |
+
print(f"{len(picks)} picks, {len(stations)} stations")
|
90 |
catalogs, assignments = association(picks, stations, config, 0, config["method"])
|
91 |
|
92 |
catalogs = pd.DataFrame(
|