Command line utility for merging Sound Velocity Profiles (SVP) into single file format supported by Teledyne CARIS
Merge SVP was written for Python 3.8, earlier versions may work but have not been tested.
Note: The process outlined below will provide a Python environment suitable to only part of the Merge SVP capability. Generation of synthetic SVPs requires Sound Speed Manager and all its dependencies be installed. Detailed instructions outlining this process are provided here.
Clone the repository
git clone https://github.com/ausseabed/merge-svp.git
cd merge-svp
Install Python dependencies
pip install -r requirements.txt
Install merge-svp (omit -e
for non-developer install)
pip install -e .
Once installed the inputs to the command line tool can be shown with
mergesvp --help
The complete user guide for Merge SVP can be found here docs/user-guide.md.
Unit tests are included in ./tests
these use the pytest framework and can be run using the following command.
pytest