Publication-quality climate science plotting utilities
Project description
climplot
Publication-quality climate science plotting utilities for Python.
Mission: Help climate science beginners make beautiful, publication-ready plots with minimal effort.
Features
- Style Modes: Switch between publication and presentation styles with one function call
- Climate Colormaps: Discrete colormaps optimized for anomaly fields, with center-on-white option
- Map Utilities: Easy map creation with Cartopy projections
- Multi-panel Figures: Consistent panel labeling and colorbars
- Area-weighted Metrics: Accurate statistics for gridded climate data
Installation
pip install climplot
Or install from source:
git clone https://github.com/jkrasting/climplot.git
cd climplot
pip install -e .
Quick Start
import climplot
import matplotlib.pyplot as plt
# Set publication style
climplot.publication()
# Create a map figure
fig, ax = climplot.map_figure()
# Plot with discrete colormap
cmap, norm, levels = climplot.anomaly_cmap(-0.3, 0.3, 0.05)
cs = ax.pcolormesh(lon, lat, data, cmap=cmap, norm=norm, transform=ccrs.PlateCarree())
# Add colorbar
climplot.add_colorbar(cs, ax, 'SSH Anomaly (m)')
# Save
climplot.save_figure('my_figure.png')
plt.close()
Style Modes
Publication Mode
For journal figures with small, dense typography:
- 3.5" width (single-column), 7.0" (two-column)
- 8-11pt fonts
- 300 DPI
climplot.publication() # Single column
climplot.publication(width=7.0) # Two-column
climplot.publication(for_pdf=True) # PDF with embedded fonts
Presentation Mode
For slides and posters with larger, readable typography:
- 7.0" width
- 12-16pt fonts
- 150 DPI
climplot.presentation()
climplot.presentation(for_pdf=True) # PDF for slides
Colormaps
Anomaly Colormap
Red-blue diverging, centered on zero:
cmap, norm, levels = climplot.anomaly_cmap(-0.3, 0.3, 0.05)
Center-on-White
For difference plots where near-zero values should appear neutral:
cmap, norm, levels = climplot.anomaly_cmap(-0.3, 0.3, 0.05, center_on_white=True)
Maps
# Robinson projection (Pacific-centered)
fig, ax = climplot.map_figure()
# Atlantic-centered
fig, ax = climplot.map_figure(central_longitude=0)
# Different projection
fig, ax = climplot.map_figure(projection='mollweide')
Multi-panel Figures
# 2x3 panel figure
fig, axes = climplot.panel_figure(2, 3)
# Add panel labels (a. b. c. etc.)
climplot.add_panel_labels(axes.flatten())
# Single colorbar below all panels
climplot.bottom_colorbar(cs, fig, axes, 'Temperature (K)')
Area-weighted Metrics
Why area weighting matters: Simple averaging over-weights polar regions. This can produce errors of ~1 cm in global sea level means.
import climplot
# Area-weighted mean (CORRECT)
gmsl = climplot.area_weighted_mean(ssh, areacello, dim=['yh', 'xh'])
# Simple mean (WRONG - ~1 cm error)
# gmsl = ssh.mean(dim=['yh', 'xh'])
# Other metrics
bias = climplot.area_weighted_bias(model, obs, areacello, dim=['yh', 'xh'])
rmse = climplot.area_weighted_rmse(model, obs, areacello, dim=['yh', 'xh'])
corr = climplot.area_weighted_corr(model, obs, areacello, dim=['yh', 'xh'])
# Comprehensive summary
metrics = climplot.metrics_summary(model, obs, areacello, dim=['yh', 'xh'])
climplot.print_metrics_summary(metrics, name='My Model')
Dependencies
- matplotlib >= 3.7
- numpy >= 1.24
- xarray >= 2023.1
- cartopy >= 0.21
License
MIT License - see LICENSE
Contributing
Contributions are welcome! Please see our contributing guide.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file climplot-0.1.0.tar.gz.
File metadata
- Download URL: climplot-0.1.0.tar.gz
- Upload date:
- Size: 18.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
170b3fd0f249fdb4125a3c380647c022a60512092a3ae28f68acd0713a4fb182
|
|
| MD5 |
402935f7b204204eafb20fee41e57144
|
|
| BLAKE2b-256 |
78ea4671241b88c7ee4f02817aba0d360ed83ce62b5436f47b89285b1a0103cb
|
Provenance
The following attestation bundles were made for climplot-0.1.0.tar.gz:
Publisher:
publish.yml on jkrasting/climplot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
climplot-0.1.0.tar.gz -
Subject digest:
170b3fd0f249fdb4125a3c380647c022a60512092a3ae28f68acd0713a4fb182 - Sigstore transparency entry: 924599692
- Sigstore integration time:
-
Permalink:
jkrasting/climplot@24f609340a9e77c83e36cde8b766edeb5e5dccab -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/jkrasting
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@24f609340a9e77c83e36cde8b766edeb5e5dccab -
Trigger Event:
release
-
Statement type:
File details
Details for the file climplot-0.1.0-py3-none-any.whl.
File metadata
- Download URL: climplot-0.1.0-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c862284fa9f8cd78db21b6f53cf7d07805ccddbe879da854b2bd651e0a7aa82
|
|
| MD5 |
98fe05b9ead999bb06b4633727759b6c
|
|
| BLAKE2b-256 |
8aab2dfa1a38edd0fe6941fad11a6c86b57561251948eac30323ae9ed8db602e
|
Provenance
The following attestation bundles were made for climplot-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on jkrasting/climplot
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
climplot-0.1.0-py3-none-any.whl -
Subject digest:
1c862284fa9f8cd78db21b6f53cf7d07805ccddbe879da854b2bd651e0a7aa82 - Sigstore transparency entry: 924599697
- Sigstore integration time:
-
Permalink:
jkrasting/climplot@24f609340a9e77c83e36cde8b766edeb5e5dccab -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/jkrasting
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@24f609340a9e77c83e36cde8b766edeb5e5dccab -
Trigger Event:
release
-
Statement type: