Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion echopype/calibrate/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"EK60": CalibrateEK60,
"EK80": CalibrateEK80,
"AZFP": CalibrateAZFP,
"AZFP6": CalibrateAZFP,
"ES70": CalibrateEK60,
"ES80": CalibrateEK80,
"EA640": CalibrateEK80,
Expand All @@ -36,7 +37,7 @@ def _compute_cal(
if waveform_mode is None or encode_mode is None:
raise ValueError("waveform_mode and encode_mode must be specified for EK80 calibration")
check_input_args_combination(waveform_mode=waveform_mode, encode_mode=encode_mode)
elif echodata.sonar_model in ("EK60", "AZFP"):
elif echodata.sonar_model in ("EK60", "AZFP", "AZFP6"):
if waveform_mode is not None and waveform_mode != "CW":
logger.warning(
"This sonar model transmits only narrowband signals (waveform_mode='CW'). "
Expand Down
4 changes: 2 additions & 2 deletions echopype/convert/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,13 +371,13 @@ def open_raw(
- ``ES70``: Kongsberg Simrad ES70 echosounder
- ``EK80``: Kongsberg Simrad EK80 echosounder
- ``EA640``: Kongsberg EA640 echosounder
- ``AZFP``: ASL Environmental Sciences AZFP echosounder
- ``AZFP``: ASL Environmental Sciences AZFP echosounder (ULS5)
- ``AZFP6``: ASL Environmental Sciences AZFP echosounder (ULS6)
- ``AD2CP``: Nortek Signature series ADCP
(tested with Signature 500 and Signature 1000)

xml_path : str
path to XML config file used by AZFP
path to XML config file used by AZFP (ULS5 only)
include_bot : bool, default `False`
Include bottom depth file in parsing. Only used by EK60/EK80.
include_index : bool, default `False`
Expand Down
Loading
Loading