Skip to main content

Python module for working with geophysical data from atmospheric and ocean models

Project description

nereus2

Nereus, fast visualization and diagnostics for unstructured climate model data

CI PyPI version Documentation Status License: MIT Python 3.10+

Nereus is a Python library for quick data exploration of unstructured atmospheric and ocean model output in Jupyter notebooks. Plot global maps, compute diagnostics, and visualize transects from models like FESOM, ICON, and others — all with minimal code.

✨ Features

  • One-line plotting — Visualize unstructured mesh data on publication-quality maps
  • Fast regridding — KD-tree based interpolation with automatic caching
  • Multiple projections — Robinson, Mollweide, stereographic, orthographic, and more
  • Ocean & sea ice diagnostics — Ice area/volume/extent, heat content, volume-weighted means
  • Vertical transects — Cross-section plots along great circle paths
  • Hovmöller diagrams — Time-depth and time-latitude visualizations
  • Region masking — Built-in support for ocean basins, NINO regions, MOC basins

Installation

pip install nereus

Quick Start

import nereus as nr
import xarray as xr

# Load your unstructured model output
ds = xr.open_dataset("model_output.nc")
mesh = xr.open_dataset('model_grid.nc')

# Plot sea surface temperature in one line
fig, ax, interp = nr.plot(
    ds.temp.isel(time=0, nz1=0),
    mesh.lon, mesh.lat,
    projection="rob",
    cmap="RdBu_r",
    vmin=-2, vmax=30
)

# Reuse interpolator for another variable
fig, ax, _ = nr.plot(ds.salt.isel(time=0, nz1=0), ds.lon, ds.lat, interpolator=interp)

Regridding

# Regrid to a regular 0.5° grid
regridded, interp = nr.regrid(data, lon, lat, resolution=0.5)

# Reuse interpolator for efficiency
regridded_salt, _ = nr.regrid(salinity, lon, lat, interpolator=interp)

Working with FESOM

# Load mesh once, reuse for multiple operations
mesh = nr.fesom.load_mesh("/path/to/mesh/")

# Compute sea ice extent
extent = nr.ice_extent(ds.a_ice, mesh.area, threshold=0.15)

# Ocean heat content (total in Joules)
ohc = nr.heat_content(ds.temp, mesh.area, mesh.layer_thickness)

# Ocean heat content map (J/m² at each point)
ohc_map = nr.heat_content(ds.temp, mesh.area, mesh.layer_thickness, output="map")

# Volume-weighted mean temperature
mean_temp = nr.volume_mean(ds.temp, mesh.area, mesh.layer_thickness)

Vertical Transects

# Plot a transect from point A to point B
nr.transect(
    ds.temp,
    mesh.lon, mesh.lat, mesh.depth,
    start=(-30, -60),  # (lon, lat)
    end=(30, 60),
    cmap="thermal"
)

Supported Models

Model/mesh Status
FESOM2 ✅ Full support
IFS TCO ✅ Full support
HEALPix 🔧 In development
ICON-O 📋 Planned
ICON-A 📋 Planned
NEMO 📋 Planned

Documentation

📖 Full documentation: nereus.readthedocs.io

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

# Clone and install in development mode
git clone https://github.com/koldunovn/nereus.git
cd nereus
pip install -e ".[dev]"

# Run tests
pytest tests/

License

MIT License — see LICENSE for details.


Named after the Greek god of the sea, the "Old Man of the Sea."

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

nereus-0.3.0.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

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

nereus-0.3.0-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file nereus-0.3.0.tar.gz.

File metadata

  • Download URL: nereus-0.3.0.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for nereus-0.3.0.tar.gz
Algorithm Hash digest
SHA256 ca7162a7924f91c53a514b74ae2b0bb708aab0128705bb0028a8581513883886
MD5 ad4f9b6731cbb929140b2fa341754ff4
BLAKE2b-256 f1c8dc8aa1adda394f0a699a759fc3bc90f76d343f6a6d296407cf1e72f93732

See more details on using hashes here.

File details

Details for the file nereus-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: nereus-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for nereus-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3687e6c2bc32a414467ee5af7905ed3d4d410a169e07133baa500c98b0f6b2c7
MD5 52f608d5e1d05cfc597f93f4a117fbbd
BLAKE2b-256 255b2d34a14b45476c74e9e4379d1776878502de9bfbff689fbe2a973cbb4f78

See more details on using hashes here.

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