Skip to main content

A Python package to read, analyse and visualise cGENIE Earth System Model output

Project description

cgeniepy is an Python interface to the output of cGENIE Earth System Model. It is an alternative to the exisiting MATLAB libraries. It aims to do three things:

  • Read model output
  • Data analysis
  • Data visualisation

Installation

cgeniepy is still under active development. But welcome to try the features after downloading cgeniep from testpypi.

python3 -m pip install -i https://test.pypi.org/simple/ cgeniepy==0.7.5

Usage

0. initialise a model instance

from cgeniepy.model import GenieModel

## single model
model = GenieModel('path_a')

## model ensemble
multi_dirs = ['/path_a/', '/path_b/']
model = GenieModel(path_to_model_output)

1. Read data

  • netCDF (*.nc)
  • time series (*.res)
## time slice data
model.get_var("XXXXX").array

## timeseries data
model.get_ts("biogem_series_ocn_temp.res")

2. Data analysis

  • Data subsetting and statistics
  • Model performance
  • Unit-changing operation (e.g., rate to magnitude)
## get zonal average SST of the last model year
zonal_sst = model.get_var("ocn_sur_temp").isel(time=-1).mean(dim='lat')

## North Pacific SST
npac_sst = model.get_var("ocn_sur_temp").select_basin(47).isel(time=-1)

3. Visualisation

  • 1D line (time series, zonal average)
  • 2D map (including various projections like polar map)
  • 2D cross section
  • 3D (facet)
  • Add a layer of observational data
## simply call `plot` after accessing the data

## map
model.get_var("ocn_sur_temp").isel(time=-1).plot()

4. Others

  • ECOGEM shortcuts
from cgeniepy.ecology import EcoModel
model = EcoModel(path_to_model_path)
## get all phytoplankton carbon biomass and plot as map
model.get_pft("Phyto", "Biomass", "C").isel(time=-1).plot()

Gallery

A global biomass map of modelled picophytoplankton (0.6 μm)

## initialise a EcoModel instance before running this

model.get_pft(1, "Biomass", "C").isel(time=-1).plot(contour=True)

map

A global distribution of basin-level nutrient (PO4)

## initialise a GenieModel instance before running this

import matplotlib.pyplot as plt

fig, axs=plt.subplots(nrows=1, ncols=3, figsize=(15, 3), tight_layout=True)        

basins = ['Atlantic', 'Pacific', 'Indian']

for i in range(3):
	basin_data = model.get_var('ocn_PO4').isel(time=-1).mask_basin(base='worjh2',basin=basins[i], subbasin='')
	basin_data.array.values = basin_data.array.values * 1E6
	basin_data.mean(dim='lon').plot(ax=axs[i], contour=True)
	axs[i].title.set_text(basins[i])

modern_po4

Additional Colour Palettes

import numpy as np
import matplotlib.pyplot as plt
from cgeniepy.plot import community_palette, avail_palette

def plot_colormaps(cmaps):
    ncols = 4
    nrows = int(np.ceil(len(cmaps) / ncols))
    fig, axes = plt.subplots(nrows, ncols, figsize=(15, nrows))

    for i, cmap_name in enumerate(cmaps):
        row = i // ncols
        col = i % ncols
        ax = axes[row, col] if nrows > 1 else axes[col]

        # Create a gradient image using the colormap
        gradient = np.linspace(0, 1, 256).reshape(1, -1)
        ax.imshow(gradient, aspect='auto', cmap=community_palette(cmap_name))
        ax.set_title(cmap_name, fontsize=14, fontweight='bold')
        ax.axis('off')

    ## remove the unused axes
    for i in range(len(cmaps), ncols * nrows):
        row = i // ncols
        col = i % ncols
        fig.delaxes(axes[row, col])
        
    plt.tight_layout()

# List of colormaps from cgeniepy
cmaps_list = avail_palette()
plot_colormaps(cmaps_list)

color_map

Project Roadmap 🚩

  • Publish the first stable version to pypi
  • Examples and Documentation
  • plot.py 3D facet subplots
  • plot.py more dependency of data.dimension
  • plot.py scatter data overlay
  • ignore NAs when searching grid
  • use lat/lon/zt from GENIE output
  • Move the computation functions in ecology.py and foram.py to array.py
  • Show one colorbar in transect plot
  • figsize influences colorbar length
  • create a simple logo
  • allow reading an ensemble of models (netcdf & timeseries)
  • formatting the ugly unit string

Citation

@software{cgeniepy,
  author = {Rui Ying},
  title = {A Python interface to analyse and visualise cGENIE model output},
  url = {https://github.com/ruiying-ocean/cgeniepy/},
  version = {0.7.5},
  date = {2023-11-12},
}

Logo

Logo is generated by simple logo generator using free righteous font.

Alternative

Alex Phol's genie_basicdiags

Raise a bug

Please use GitHub's Issues to raise a bug. This makes the issues traceable so that future users having the same problem can find the answer in the public domain.

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

cgeniepy-0.7.5.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

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

cgeniepy-0.7.5-py3-none-any.whl (49.3 kB view details)

Uploaded Python 3

File details

Details for the file cgeniepy-0.7.5.tar.gz.

File metadata

  • Download URL: cgeniepy-0.7.5.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for cgeniepy-0.7.5.tar.gz
Algorithm Hash digest
SHA256 b1b9d0e5885da63a35fdd232527759d32c82875ef24ecd0952e9704e7fd8b07f
MD5 d323d8afac2826e636a2513912ce7602
BLAKE2b-256 5cd21553518c6b08d35659a6888c610de0d6f8979893c79d4729d7c29eb3a25d

See more details on using hashes here.

File details

Details for the file cgeniepy-0.7.5-py3-none-any.whl.

File metadata

  • Download URL: cgeniepy-0.7.5-py3-none-any.whl
  • Upload date:
  • Size: 49.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for cgeniepy-0.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 82d491b9eb5fb728276c88c9d50602f33f6bf50b1594aba1b8198d5a0b5fc5ed
MD5 3c753889f3da0499fe060a77a6dff514
BLAKE2b-256 2c67828440101024e9085f82ef562c8a79f44785b0797736b0b5c8e3e99d1f89

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