Skip to main content

ctdam

image image image image image image

ctdam is a Python package designed to standardize and simplify the parsing, processing, and visualization of Conductivity-Temperature-Depth (CTD) data from diverse file formats. By converting raw CTD data into a CF-compliant xarray Dataset, the package enables seamless integration with the scientific Python ecosystem, leveraging the power of xarray accessors for data handling, analysis, and plotting.

Key Features

1. Multi-Format Support

Parse CTD data from a variety of file formats (e.g., .hex, .cnv, .TOB, .nc) into a consistent, CF-compliant xarray Dataset. The package abstracts away format-specific quirks, so you can focus on the data.

2. CF-Compliant Structure

Outputs are structured as xarray Datasets with:

  • Standardized variable names (e.g., temperature, salinity, pressure).
  • Metadata (units, long names, coordinates) following CF (Climate and Forecast) conventions (e.g. sea_water_temperature, sea_water_practical_salinity, sea_water_pressure).
  • Automatic handling of coordinate systems (e.g., depth, scan, time).

3. xarray Accessors for CTD Data

Extend xarray’s functionality with custom accessors for CTD-specific operations:

  • Processing: Smoothing, binning, spike removal, or unit conversion. Using enhanced Sea-Bird processing logic for compatibility.
  • Plotting: Quick visualization of profiles, sections, or maps using Matplotlib or bokeh.
  • Data Handling: Subsetting, merging, or exporting to NetCDF/CSV.

4. Modular and Extensible

  • Add support for new file formats via pluggable parsers.
  • Customize processing pipelines with built-in or user-defined functions.

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
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.


Usage Examples

1. Parse a CTD File

from ctdam import read_ctd_data

# Parse a .hex file into an xarray Dataset
ds = read_ctd_data("sbs_data/hex/EMB356_11-1.hex")

This assumes that the corresponding sensor metadata file (.XMLCON) resides in the same directory as the .hex and is also using a similar name.

from ctdam import read_ctd_data

# Parse a .cnv file into an xarray Dataset
ds = read_ctd_data("sbs_data/cnv/EMB356_11-1.cnv")

# Parse a .TOB file into an xarray Dataset
ds = read_ctd_data("sbs_data/other/IB051044.TOB")

# Parse a NetCDF file
ds = ctd.parse("path/to/ctd_data.nc")

You can also add bottle information to the existing data:

ds = read_ctd_data("sbs_data/cnv/EMB295_14-1.cnv")
ds.add.bottles("sbs_data/btl/EMB295_14-1.bl")
btl_ds = ds.access.btl_info()

2. Access Data and Metadata

# Print the Dataset
print(ds)

# Access a variable (e.g., temperature)
temperature = ds["temperature"]

# Check metadata (CF-compliant)
print(ds["temperature"].attrs)

3. Use xarray Accessors

# Plot a temperature profile
ds.vis.profile("temperature")

# Bin data by depth
ds.proc.module("binavg", {"bin_size": 1})

# Or apply a full processing workflow
ds.proc.workflow(modules=["loop_removal", "wfilter", "alignctd", "celltm"])

Workflows can be defined in the form of .toml configuration files or as plain python dictionaries:

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 original Sea-Bird processing modules can be mixed with custom ones (airpressure) and all gsw functions (SA_from_SP_Baltic). Its also possible to use the original Sea-Bird processing binaries, as long as they are installed on your machine.

4. Export to NetCDF

ds.to_netcdf("processed_ctd_data.nc")

Supported File Formats

Format Description Notes
.hex Seabird HEX format Raw data
.cnv Seabird CNV format Default for many CTD systems
.nc NetCDF CF-compliant or raw
.TOB Sea&Sun CTD format Small handheld-CTDs
.bl Seabird bottle format Bottle closing information

Contributing

Contributions are welcome! To add support for a new file format or feature:

  1. Fork the repository.
  2. Implement your changes in a new branch.
  3. Submit a pull request with tests and documentation.

Details can be found inside Contributing.


Context

This software is developed for the German Marine Research Alliance (DAM) in the context of the Underway Data: Marine Data - Research Vessels 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.


Download files

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

Source Distribution

ctdam-2.1.0.tar.gz (302.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-2.1.0-py3-none-any.whl (113.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ctdam-2.1.0.tar.gz
  • Upload date:
  • Size: 302.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ctdam-2.1.0.tar.gz
Algorithm Hash digest
SHA256 67f782161784087131014aa2810e8f9bffaf15b27da38cc82797fc4241e22b1a
MD5 179e4a9a3820841851c229145343a116
BLAKE2b-256 639c0441250413e9fda67a1542a5453f4fccb8b76456fcd647429ea5daeba056

See more details on using hashes here.

Provenance

The following attestation bundles were made for ctdam-2.1.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-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: ctdam-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 113.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ctdam-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 65c2c7b9f564c7dbbf3da3f5b1695242c35b4301791f3ac6a5da96816aa744d6
MD5 2a61f8a3deba9002288dd227b992fc78
BLAKE2b-256 67713d34a76780f9fed88e75267efeaaad8c0d60ce6626a279a20f91c258ac02

See more details on using hashes here.

Provenance

The following attestation bundles were made for ctdam-2.1.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.

Release history Release notifications | RSS feed

2.3.0

2 files

2.2.0

2 files

This release

2.1.0 This release

2 files

2.0.1

2 files

2.0.0

2 files

1.13.2

2 files

1.13.1

2 files

1.13.0

2 files

1.12.0

2 files

1.11.0

2 files

1.10.0

2 files

1.9.0

2 files

1.8.0

2 files

1.7.0

2 files

1.6.4

2 files

1.6.3

2 files

1.6.2

2 files

1.6.1

2 files

1.6.0

2 files

1.5.3

2 files

1.5.2

2 files

1.5.1

2 files

1.5.0

2 files

1.4.1

2 files

1.4.0

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.0

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Supported by

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