Skip to main content

Welcome to MARISCO

The IAEA Marine Radioactivity Information System (MARIS) provides open access to radioactivity measurements in marine environments (seawater, biota, sediment, and suspended matter) collected by national laboratories, monitoring programmes, and research institutions worldwide. Developed by the IAEA Marine Environmental Laboratories in Monaco, MARIS is the authoritative international reference for marine radioactivity data.

MARISCO is being developed as the data processing foundation of MARIS: a Python package that converts provider datasets into standardised NetCDF4 and CSV formats for ingestion into the MARIS database.

How it works

MARIS does not impose a data schema on providers. It accepts data in whatever form it arrives, and it makes the cost of that acceptance visible.

Each dataset is processed by a dedicated handler, a Jupyter notebook that documents every curation decision alongside the code that implements it. Unit conversions, nuclide nomenclature mapping, coordinate standardisation, outlier flags: every choice is visible, traceable, and auditable. Some formats need less work than others, and the handler makes that difference plain. If you are a data provider, see contributing data for what this means for your dataset.

This is deliberate. The friction a dataset creates is a signal, and surfacing it is the point. It tells the MARIS team how much work a provider’s format really requires, it gives the provider a concrete, itemised record of what to improve, and it makes the next release of the dataset cheaper to ingest. Over time, the easiest path for everyone is for providers to align with the MARIS way of organising data, not because it is imposed, but because the cost of not doing so is visible.

The payoff is a harmonised world reference: measurements of marine radioactivity from providers worldwide, stored in the MARIS database in one comparable form. That comparability is the real value, for data providers, for the scientific community, and beyond. It rests on visible curation: the process that made the data comparable is documented and auditable, so the harmonisation can be checked, questioned, and trusted.

Handlers are shared with data providers as a working document. If a conversion looks wrong, a mapping is missing, or terminology differs from your internal standards, the notebook is where we discuss and resolve it, not buried in email threads or internal comments.

For a concrete example, see the GEOTRACES handler.

The harmonised data reaches users through three channels: the explore portal for interactive visualisation, the datasets page for downloading individual NetCDF files (joined soon by INIS), and the MARIS API for programmatic access.

Available handlers

Handler Description Status
FRAM STRAIT 2025 Fram Strait 2025 iodine-129 seawater radionuclide data Active
GEOTRACES BODC GEOTRACES oceanographic radionuclide data Active
HELCOM Baltic Sea marine environment monitoring data Active
JOIS BGOS-JOIS Beaufort Sea seawater radionuclide data Active
MARIS LEGACY MARIS legacy database dump Active
OSPAR OSPAR data Under refactoring
TEPCO TEPCO data Under refactoring

Install

pip install marisco

Two environment variables may be required depending on the dataset:

  • ZOTERO_API_KEY: used to fetch bibliographic metadata from the MARIS Zotero library. Contact MARIS Administrators to obtain your key:

    export ZOTERO_API_KEY=your_api_key_here
    
  • INIS: bibliographic metadata is being progressively migrated from Zotero to the IAEA INIS database. The INISClient fetches records via curl, which must be installed separately. In the near term both systems coexist; INIS will supersede Zotero as the migration completes.

Command-line utilities

All commands accept -h for help.

[!TIP]

List available handlers

Run marisco-ingest with an invalid handler name. The command prints the available handlers.

Ingest a provider dataset

$ marisco-ingest helcom output/100-HELCOM-MORS-2024.nc

The handler name selects the provider. Each handler decides whether to download the source data or read it from a local file.

Ingest a MARIS legacy database dump

$ marisco-ingest maris_legacy ~/output --src ~/data/maris/dump.txt

To process only selected references:

$ marisco-ingest maris_legacy ~/output \
    --src ~/data/maris/dump.txt \
    --ref_ids "16,30"

If a handler produces several files, the command writes them to the destination folder. It creates the folder if it does not exist.

Export NetCDF4 to MARIS CSV

$ marisco-export ~/output/191-OSPAR-2024.nc

The command appends the sample type to the output name. For example, 191-OSPAR-2024_BIOTA.csv. It creates one CSV file for each sample type in the NetCDF4 file.

Use --dest to choose a different output stem.

Documentation

Documentation is organised into two groups.

How-to guides

Practical walkthroughs for common tasks:

Reference

Detailed specifications and reference material:

  • Reporting template: the MARIS data reporting template as documentation, with the general instructions, per-sample-type column tables, and lookup lists
  • Field Definitions: complete field-by-field reference with MARISCO column names, NetCDF variable names, CSV variable names, types, and lookup tables
  • MARIS database schema: the master database sample and measure tables, their mandatory columns, and their constraints

Development

marisco follows the nbdev workflow: all code lives in notebooks under nbs/, and the marisco/ package is generated from them.

  • Edit the notebooks in nbs/, then run nbdev-export to regenerate the modules and nbdev-readme to regenerate this README.
  • After changing pyproject.toml (entry points, dependencies), reinstall the package with pip install -e ..
  • The MARIS NetCDF template is generated from nbs/files/cdl/maris.cdl. To regenerate it locally, install NetCDF-C and run:
ncgen -4 -o nbs/files/nc/maris-template.nc nbs/files/cdl/maris.cdl
  • Contributor guidance on architecture, coding conventions, and handler documentation style lives in the CRAFTs/ notebooks at the repository root.
  • Writing a new handler walks through adding a new data provider to the pipeline.

Acknowledgements

Development of this package was supported by the Solveit platform, an interactive development environment for dialog-driven software engineering.

Download files

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

Source Distribution

marisco-1.9.1.tar.gz (3.5 MB view details)

Uploaded Source

Built Distribution

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

marisco-1.9.1-py3-none-any.whl (3.5 MB view details)

Uploaded Python 3

File details

Details for the file marisco-1.9.1.tar.gz.

File metadata

  • Download URL: marisco-1.9.1.tar.gz
  • Upload date:
  • Size: 3.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for marisco-1.9.1.tar.gz
Algorithm Hash digest
SHA256 c783593d55f52364f41e427f7b5cc0e08c3b15a3cd5e252d1a9d77f40322ae9e
MD5 6d9e5320a958775d495ba492c75f0e5a
BLAKE2b-256 ccf72893a4cf605bb8759c3ddba5093e31939e2e0eb777cadb9cdf9106a84fd5

See more details on using hashes here.

File details

Details for the file marisco-1.9.1-py3-none-any.whl.

File metadata

  • Download URL: marisco-1.9.1-py3-none-any.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for marisco-1.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dcaecaf60feea687e3e7d5e1ac60d03a6432b36650a2b894c72d43a70ee2ba43
MD5 a6256830827f42cc64e3d796d8478178
BLAKE2b-256 06f4490dba1e6802ca6f5f954fe64b0c8e24917f4c51766a75b64846b6323187

See more details on using hashes here.

Release history Release notifications | RSS feed

1.9.2

2 files

This release

1.9.1 This release

2 files

1.9.0

2 files

1.8.1

2 files

1.8.0

2 files

1.7.0

2 files

1.6.1

2 files

1.6.0

2 files

1.5.0

2 files

1.4.3

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.11

2 files

1.0.4

2 files

1.0.1

2 files

1.0.0

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.5

2 files

0.1.4

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page