echopype is an open-source toolkit for analyzing active sonar data for biological information in the ocean.
Project description
echopype is an open-source toolkit for analyzing active sonar data for biological information in the ocean.
The goal of echopype is to improve the interoperability and scalability in processing water column sonar data.
Functionality
Convert different manufacturer-specifc data files into an interoperable netCDF format.
Leverage Python distributed computing libraries in processing large volumes of sonar data in local or cloud storage.
The current version supports converting .raw data files collected by the SimRad EK60 echosounder. Conversion for other types of data files, including the .01A files from AZFP echosounder and the .raw files from the SimRad broadband echosounder, will be added in future releases.
Details of the above can be found here.
Installation
To install echopype, do the following in your terminal:
$ pip install echopype
Using echopype
To batch convert whole bunch of .raw files in the terminal:
$ echopype_converter -s ek60 data/*.raw
This will generate whole bunch of .nc files with the same leading filename in the same directory as the .raw files.
To use the EK60 data converter in a Python session, you can do:
# import as part of a submodule
from echopype.convert import ConvertEK60
data_tmp = ConvertEK60('FILENAME.raw')
data_tmp.raw2nc()
Or:
# import the full module
import echopype as ep
data_tmp = ep.convert.ConvertEK60('FILENAME.raw')
data_tmp.raw2nc()
Same as in the command line case, this will generate a FILENAME.nc in the same directory as FILENAME.raw.
The ConvertEK60 instance contains all the data unpacked from the .raw file, so it is a good idea to clear it from memory once done with conversion.
License
echopype is licensed under the terms of the Apache 2.0 license. See the file “LICENSE” for information on the history of this software, terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.
All trademarks referenced herein are property of their respective holders.
Copyright (c) 2018–, Wu-Jung Lee, Applied Physics Laboratory, University of Washington.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file echopype-0.1.1.tar.gz
.
File metadata
- Download URL: echopype-0.1.1.tar.gz
- Upload date:
- Size: 9.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 051e2f90fcf4a68fb0964e2b509ef802ea0dc67078fd2ac5f55f68e775584d6a |
|
MD5 | 0b27a78e3b26687c058c0575618264f3 |
|
BLAKE2b-256 | 8a863de3ad94f75e90ddf087dbee039ac72e28095af9f257cd4f6818684251a0 |