API reference#
API components that most users will interact with.
Attention
In echopype versions prior to 0.5.0, the API in this page focused
on the convert
and process
subpackages. See the
0.4.1 API page
if you’re using a previous release. That workflow is now removed.
Content
EchoData class#
EchoData is an object that handles interfacing raw converted data. It is used for calibration and other processing.
Classes#
|
Echo data model class for handling raw converted data, including multiple files associated with the same data set. |
Open raw and converted files#
- echopype.open_raw(raw_file: PathHint, sonar_model: SonarModelsHint, xml_path: Optional[PathHint] = None, include_bot: bool = False, include_idx: bool = False, convert_params: Optional[Dict[str, str]] = None, storage_options: Optional[Dict[str, str]] = None, use_swap: Union[bool, Literal['auto']] = False, max_chunk_size: str = '100MB') EchoData #
Create an EchoData object containing parsed data from a single raw data file.
The EchoData object can be used for adding metadata and ancillary data as well as to serialize the parsed data to zarr or netcdf.
- Parameters
- raw_filestr
path to raw data file
- sonar_modelstr
model of the sonar instrument
EK60
: Kongsberg Simrad EK60 echosounderES70
: Kongsberg Simrad ES70 echosounderEK80
: Kongsberg Simrad EK80 echosounderEA640
: Kongsberg EA640 echosounderAZFP
: ASL Environmental Sciences AZFP echosounderAZFP6
: ASL Environmental Sciences AZFP echosounder (ULS6)AD2CP
: Nortek Signature series ADCP (tested with Signature 500 and Signature 1000)
- xml_pathstr
path to XML config file used by AZFP
- include_botbool, default False
Include bottom depth file in parsing. Only used by EK60/EK80.
- include_indexbool, default False
Include index file in parsing. Only used by EK60/EK80.
- convert_paramsdict
parameters (metadata) that may not exist in the raw file and need to be added to the converted file
- storage_optionsdict, optional
options for cloud storage
- use_swap: bool or “auto”, default False
Flag to use disk swap in case of a large memory footprint. When set to
True
(or when set to “auto” and large memory footprint is needed, this function will create a temporary zarr store at the operating system’s temporary directory.- max_mbint
The maximum data chunk size in Megabytes (MB), when offloading variables with a large memory footprint to a temporary zarr store
- Returns
- EchoData object
- Raises
- ValueError
If
sonar_model
isNone
orsonar_model
given is unsupported.- FileNotFoundError
If
raw_file
isNone
.- TypeError
If
raw_file
input is neitherstr
orpathlib.Path
type.
Notes
In case of a large memory footprint, the program will determine if using a temporary swap space is needed. If so, it will use that space during conversion to prevent out of memory errors.
Users can override this behaviour by either passing
use_swap=True
oruse_swap=False
. If a keyword “auto” is used for theuse_swap
parameter, echopype will determine the usage of swap space automatically.This feature is only available for the following echosounders: EK60, ES70, EK80, ES80, EA640.
- echopype.open_converted(converted_raw_path: PathHint, storage_options: Dict[str, str] = None, **kwargs)#
Create an EchoData object from a single converted netcdf or zarr file.
- Parameters
- converted_raw_pathstr
path to converted data file
- storage_optionsdict
options for cloud storage
- kwargsdict
optional keyword arguments to be passed into xr.open_dataset
- Returns
- EchoData object
Combine EchoData objects#
- echopype.combine_echodata(echodata_list: List[EchoData] = None, channel_selection: Optional[Union[List, Dict[str, list]]] = None) EchoData #
Combines multiple
EchoData
objects into a singleEchoData
object.- Parameters
- echodata_listlist of EchoData object
The list of
EchoData
objects to be combined- channel_selection: list of str or dict, optional
Specifies what channels should be selected for an
EchoData
group with achannel
dimension (before combination).if a list is provided, then each
EchoData
group with achannel
dimension
will only contain the channels in the provided list - if a dictionary is provided, the dictionary should have keys specifying only beam groups (e.g. “Sonar/Beam_group1”) and values as a list of channel names to select within that beam group. The rest of the
EchoData
groups with achannel
dimension will have their selected channels chosen automatically.
- Returns
- EchoData
A lazy loaded
EchoData
object, with all data from the inputEchoData
objects combined.
- Raises
- ValueError
If the provided zarr path does not point to a zarr file
- TypeError
If a list of
EchoData
objects are not provided- ValueError
If any
EchoData
object’ssonar_model
isNone
- ValueError
If any
EchoData
object does not have a file path- ValueError
If the provided
EchoData
objects have the same filenames- RuntimeError
If the first time value of each
EchoData
group is not less than the first time value of the subsequent correspondingEchoData
group, with respect to the order inechodata_list
- RuntimeError
If the same
EchoData
groups inechodata_list
do not have the same number of channels and the same name for each of these channels.- RuntimeError
If any of the following attribute checks are not met amongst the combined
EchoData
groups:the keys are not the same
the values are not identical
the keys
date_created
orconversion_time
do not have the same types
- RuntimeError
If any
EchoData
group has achannel
dimension value with a duplicate value.- RuntimeError
If
channel_selection=None
and thechannel
dimensions are not the same across the same group under each object inechodata_list
.- NotImplementedError
If
channel_selection
is a list and the listed channels are not contained in theEchoData
group across all objects inechodata_list
.
Notes
EchoData
objects are combined by appending their groups individually.All attributes (besides attributes whose values are arrays) from all groups before the combination will be stored in the
Provenance
group.
Examples
Combine lazy loaded
EchoData
objects:>>> ed1 = echopype.open_converted("file1.zarr") >>> ed2 = echopype.open_converted("file2.zarr") >>> combined = echopype.combine_echodata(echodata_list=[ed1, ed2])
Combine in-memory
EchoData
objects:>>> ed1 = echopype.open_raw(raw_file="EK60_file1.raw", sonar_model="EK60") >>> ed2 = echopype.open_raw(raw_file="EK60_file2.raw", sonar_model="EK60") >>> combined = echopype.combine_echodata(echodata_list=[ed1, ed2])
Data processing subpackages#
calibrate#
Functions#
|
Compute volume backscattering strength (Sv) from raw data. |
|
Compute target strength (TS) from raw data. |
clean#
Functions#
|
Estimate background noise by computing mean calibrated power of a collection of pings. |
|
Locate attenuated signals and create an attenuated signal mask. |
|
Locate and create a mask for impulse noise using a ping-wise two-sided comparison. |
|
Locate and create a mask for transient noise using a pooling comparison. |
|
Remove noise by using estimates of background noise from mean calibrated power of a collection of pings. |
commongrid#
Functions#
|
Compute Mean Volume Backscattering Strength (MVBS) based on intervals of range ( |
|
Compute Nautical Areal Scattering Coefficient (NASC) from an Sv dataset. |
|
Compute Mean Volume Backscattering Strength (MVBS) based on intervals of |
consolidate#
Functions#
Use frequency_nominal in place of channel to be dataset dimension and coorindate. |
|
|
Create a depth data variable based on data in Sv dataset, Echodata object, and/or user input depth offset and tilt data. |
|
Add geographical location (latitude/longitude) to the Sv dataset. |
|
Add split-beam (alongship/athwartship) angles into the Sv dataset. |
qc#
Functions#
|
Coerce a time coordinate so that it always flows forward. |
|
Test for occurrence of time reversal in specified datetime coordinate variable. |
mask#
Functions#
|
Create a mask based on the differences of Sv values using a pair of frequencies. |
|
Applies the provided mask(s) to the Sv variable |
metrics#
Functions to compute summary statistics from echo data.
Functions#
|
Calculates the area-backscattering strength (Sa) [unit: dB re 1 m^2 m^-2]. |
|
Calculated the index of aggregation (IA) [unit: m^-1]. |
|
Calculates the mean backscatter location [unit: m]. |
|
Calculates the inertia (I) [unit: m^-2]. |
|
Calculates the equivalent area (EA) [unit: m]. |
Utilities#
Utilities for calculating seawater acoustic properties.
Functions#
|
Calculate sea water absorption in units [dB/m]. |
|
Calculate sound speed in [m/s]. |