Skip to main content

Library for conversion, processing and plotting of CTD data.

Project description

ctdam

image image image image image image

Intro

Welcome to the ctdam software package, a library to help with all the different stages in working with CTD data. For now, it focuses only on Sea-Bird CTD data, but we are open to extend to other CTD data types in the future. At the moment, the focus remains on fast and reliable conversion and processing of Sea-Birds .hex files. Data and metadata are stored inside python objects, with the possibility to export native .cnv files, as well as NetCDFs. In general, there are parsers for all the different Sea-Bird file formats: .hex, .xmlcon, .bl, .btl and .cnv .

Conversion

For conversion of raw CTD data, only a .hex file and its corresponding .xmlcon file are needed. Then, you can simply do:

from ctdam.conv import decode_hex

converted_ctd_data = decode_hex('sbs_data/hex/EMB356_11-1.hex')

This assumes that the .xmlcon resides in the same directory as the .hex and is also using a similar name. The code snippet would yield you a CTDData object, a very general representation of CTD data and metadata of a single cast. You could for example do some processing on this data.

Processing

To process CTD data, one needs to define workflow files, called 'procedures', .toml files which correspond to python dictionaries and e.g. look like this:

processing_config = {
    "output_type": "cnv",
    "output_dir": ".",
    "modules": {
        "airpressure": {},
        "wildedit_geomar": {'std2': 7},
        "wfilter": {},
        "celltm": {},
        "alignctd": {'Oxygen': 3},
        "SA_from_SP_Baltic": {},
        "binavg": {},
    },

}

All processing module behaviour can be modified via key-values, as seen for 'wildedit_geomar' and 'alignctd'. In the example config you can also see, that the native Sea-Bird processing modules can be mixed with custom ones (airpressure) and all gsw functions (SA_from_SP_Baltic). The Sea-Bird ones are either taken from seabirdscientific or are more efficient rewrites that stick to the same core logic. Its also possible to use the original Sea-Bird processing binaries, as long as they are installed on your machine.

In order to process the converted data from above, you would go ahead and do:

from ctdam.proc import Procedure

processed_ctd_data = Procedure(processing_config).run(converted_ctd_data)

This again results in a CTDData instance, which you now could plot.

Plotting

This library uses bokeh for generating interactive plots, that can be viewed inside your webbrowser:

from ctdam.vis import basic_bokeh_plot

basic_bokeh_plot(processed_ctd_data)

The resulting plot of this operation can be seen here.

The .html files generated like this, are self-contained and can be shared easily without the need of the original data or external tooling.

Data export

To write the data back to disk, two output methods are currently supported, Sea-Bird-like .cnv and NetCDF. In order to write the converted and processed 'EMB356[11-1.hex]{#hex}' as .cnv to disk, just do:

processed_ctd_data.to_cnv('processed_EMB356_11-1.cnv')

CLI

Instead of working inside a python environment, the same results can also be obtained by using a command line interface, also called 'ctdam':

ctdam run sbs_data/hex/EMB356_11-1.hex proc_workflow.toml
ctdam plot EMB356_11-1.cnv -d '' -sm

With the first command, a processing workflow is used on a .hex file, which also means, that its converted automatically. The second command does plot the new .cnv file and save it in the same directory. Meaning that we have literaly done the exact steps like above.

Installation

The ctdam python package is distributed via PyPi, that means that you can install it inside your python environment using your favorite package manager:

uv add ctdam
poetry add ctdam

Or just plain old pip:

pip install ctdam

This installs only the functionalities. To use features like the CLI, plotting or a GUI to edit processing workflow files, you need to install ctdam with extra optional dependencies. That looks differently dependending on installation type:

uv add ctdam --extra cli
poetry add ctdam[gui]
pip install ctdam[vis]

If you don't care about find-grained dependency management, you can also just install all of them with the 'all' group.

The CLI program can be installed similarly:

$ uv tool install --from 'ctdam[all]' ctdam

$ uv run ctdam check
All set, you are ready to go.
$ pipx install ctdam

$ ctdam check
All set, you are ready to go.

Context

This software is developed for the German Marine Research Alliance (DAM) in the context of the Underway Research Data Project. The converter and parser are tested against a variety of data, acquired on different German research vessels. Because of the ongoing efforts to harmonise these infrastructures, the diversity of the test data may be smaller than thought and your data may pose problems to converter, parser or processing. Please feel free to contribute to this project in order to develop a toolkit, that is as general as possible.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ctdam-1.3.0.tar.gz (279.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ctdam-1.3.0-py3-none-any.whl (118.7 kB view details)

Uploaded Python 3

File details

Details for the file ctdam-1.3.0.tar.gz.

File metadata

  • Download URL: ctdam-1.3.0.tar.gz
  • Upload date:
  • Size: 279.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ctdam-1.3.0.tar.gz
Algorithm Hash digest
SHA256 bfb5fb7c1a0dcbcffd70e6e983a1b150ade16ff0d898abecdb949433f63737da
MD5 ebc6315d0dd4322eb7d1db4c76d5fc95
BLAKE2b-256 1e6fa60798be1e7c878390d8469c0427b7d434b214982e05f1f14dbd7d95ea7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ctdam-1.3.0.tar.gz:

Publisher: main_push.yaml on DAM-CTD-Software/ctdam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ctdam-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: ctdam-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ctdam-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f3cd874a9a4cd5ef525f8b00f309062e314ffb7f28638d56a4a2692bcd83b96d
MD5 f409b019204f561b12938f6212f58a0f
BLAKE2b-256 3f5e70706a567c7fa7aed5bdd46f895c775852f750b78e1e8a643321c76b813f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ctdam-1.3.0-py3-none-any.whl:

Publisher: main_push.yaml on DAM-CTD-Software/ctdam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page