Skip to content

Commit f88615a

Browse files
committed
echograms: add channel name to per-day echogram title
1 parent 8593831 commit f88615a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/batch_processing/build_full_survey.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,8 +1143,9 @@ def _plot_perday_echogram(
11431143
)
11441144
ax.invert_yaxis()
11451145
ax.set_ylabel("Depth (m)", fontsize=11)
1146+
ch_name = str(ds.channel.values[0])
11461147
ax.set_title(
1147-
f"{day_key} \u2014 {data_type} {freq_label}",
1148+
f"{day_key} \u2014 {data_type} {freq_label} ({ch_name})",
11481149
fontsize=12, fontweight="bold",
11491150
)
11501151

0 commit comments

Comments
 (0)