Skip to content

Commit 4e094fa

Browse files
committed
echograms: cap width at 30in; relax 200kHz BGN to -110dB
1 parent 1167400 commit 4e094fa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

oceanstream/echodata/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"range_window": 15,
106106
"ping_window": 40,
107107
"SNR_threshold": "3.0dB",
108-
"background_noise_max": "-115.0dB",
108+
"background_noise_max": "-110.0dB",
109109
},
110110
"transient": {
111111
"exclude_above": 100.0,

scripts/batch_processing/build_full_survey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ def _plot_perday_echogram(
11181118
pulse_mode = ds["pulse_mode"].values[valid_pings]
11191119

11201120
has_pulse = pulse_mode is not None
1121-
width = min(60, max(12, n_pings * 0.003))
1121+
width = min(30, max(12, n_pings * 0.001))
11221122

11231123
if has_pulse:
11241124
from matplotlib.gridspec import GridSpec

0 commit comments

Comments
 (0)