[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added alpha-version code for new AZFP6 format #1323

Merged
merged 15 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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: 3 additions & 0 deletions echopype/convert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,18 @@
- Simrad EK60 echosounder ``.raw`` data
- Simrad EK80 echosounder ``.raw`` data
- ASL Environmental Sciences AZFP echosounder ``.01A`` data
- ASL Environmental Sciences AZFP (USL6) echosounder ``.azfp`` data
"""

# flake8: noqa
from .parse_ad2cp import ParseAd2cp
from .parse_azfp import ParseAZFP
from .parse_azfp6 import ParseAZFP6
from .parse_base import ParseBase
from .parse_ek60 import ParseEK60
from .parse_ek80 import ParseEK80
from .set_groups_ad2cp import SetGroupsAd2cp
from .set_groups_azfp import SetGroupsAZFP
from .set_groups_azfp6 import SetGroupsAZFP6
from .set_groups_ek60 import SetGroupsEK60
from .set_groups_ek80 import SetGroupsEK80
1 change: 1 addition & 0 deletions echopype/convert/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ def open_raw(
- ``EK80``: Kongsberg Simrad EK80 echosounder
- ``EA640``: Kongsberg EA640 echosounder
- ``AZFP``: ASL Environmental Sciences AZFP echosounder
- ``AZFP6``: ASL Environmental Sciences AZFP echosounder (ULS6)
- ``AD2CP``: Nortek Signature series ADCP
(tested with Signature 500 and Signature 1000)

Expand Down
Loading