Skip to main content

Similar to ``xmovie``, make animations from xarray objects.

Project description

xrframes

Version on PyPI Project Status: Concept – Minimal or no implementation has been done yet, or the repository is only intended to be a limited example, demo, or proof-of-concept.

Similar to (and inspired by) jbusecke/xmovie, make animations from xarray objects by applying your plotting function along a dimension.

Install

pip install xrframes

Install and use Dask[^a] or joblib[^b] to parallelize the frame creation step.

.to_gif() uses ImageMagick (magick or convert required on PATH); .to_mp4() uses FFmpeg (ffmpeg required on PATH). Both are available via conda-forge[^c], as well as other package managers.

Example

Basic example, using just the xarray object's plot method:

import xarray as xr
from xrframes import Frames

# Note: `pooch` required
ta = xr.tutorial.open_dataset("air_temperature").air.isel(time=slice(0, 10))

frames = Frames(ta, lambda da: da.plot(size=2.5, aspect=1.7), dim="time")
frames.write(dpi=120)  # serial
frames.to_gif("./ta_basic.gif", fps=5)

A bit fancier example with the same data, using Cartopy:

import cartopy.crs as ccrs
import cartopy.feature as cfeature
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import xarray as xr
from xrframes import Frames

# Note: `pooch` required
ta = xr.tutorial.open_dataset("air_temperature").air.isel(time=slice(0, 10))

proj = ccrs.Mercator()
tran = ccrs.PlateCarree()

def plot(da, **kwargs):
    fig, ax = plt.subplots(figsize=(6, 3), layout="constrained", subplot_kw=dict(projection=proj))

    ax.coastlines()
    ax.add_feature(cfeature.BORDERS)
    ax.add_feature(cfeature.STATES)
    ax.gridlines(draw_labels=True)

    da.plot.contourf(**kwargs, levels=np.arange(230, 305, 5), extend="both", ax=ax, transform=tran)

    ax.set_title("")
    ax.set_title(pd.Timestamp(da.time.item()).strftime(r"%Y-%m-%d %H:%M"), loc="left", size=10)

    return fig

frames = Frames(ta, plot, dim="time")
frames.write()  # serial
frames.to_mp4("./ta_cartopy.mp4", fps=5)

[^a]: dask on PyPI, dask-core on conda-forge, more info here [^b]: joblib on PyPI and on conda-forge [^c]: conda install -c conda-forge imagemagick ffmpeg

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

xrframes-0.0.1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

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

xrframes-0.0.1-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file xrframes-0.0.1.tar.gz.

File metadata

  • Download URL: xrframes-0.0.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for xrframes-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6d5c7b6bf905bb7febe5d9a415c4be2028ef3fcd6451b14b2e69b1130d544e93
MD5 97bc5a01340b3a0f7a371b938d604e3b
BLAKE2b-256 c18908e3257b18dada5451b1f9e23ad182d84ce991821f6b09fc3bf77a3b1956

See more details on using hashes here.

File details

Details for the file xrframes-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: xrframes-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for xrframes-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 94988c494ab975e6fd09e0dddb150eb55ca29b09ef1c34e1ffe15b9895142399
MD5 4bb665f6db8ab762c1d3f6bee7755948
BLAKE2b-256 c2998da1eb647bc8328fa0aca6102ae44aa2b295f1eb20802a5f19fd07bef8a2

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