Skip to main content

Data classes for custom xarray constructors

Project description

xarray-custom

PyPI Python Test License

:zap: Data classes for custom xarray constructors

TL;DR

xarray-custom is a Python package which helps to create custom DataArray classes in the same manner as the Python's native dataclass. Here is an introduction code of what the package provides:

from xarray_custom import coordtype, dataarrayclass


@dataarrayclass(('x', 'y'), float, 'custom')
class CustomDataArray:
    x: coordtype('x', int)
    y: coordtype('y', int)
    z: coordtype(('x', 'y'), str) = 'spam'

    def double(self):
        """Custom DataArray method which doubles values."""
        return self * 2


dataarray = CustomDataArray([[0, 1], [2, 3]], x=[2, 2], y=[3, 3])
onesarray = CustomDataArray.ones(shape=(3, 3))
doubled = dataarray.custom.double()

The key points are:

  • Custom DataArray instances with fixed dimensions and coordinates can easily be created.
  • Default values and dtype can be specified via a class decorator and class variable annotations.
  • NumPy-like special factory functions like ones() are provided as class methods.
  • Custom DataArray methods can be used via a custom accessor.

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

xarray-custom-0.2.0.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

xarray_custom-0.2.0-py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page