An open API service indexing awesome lists of open source software.

https://github.com/cedadev/cfapyx

Xarray CFA Engine module for accessing CFA-netCDF files with Xarray
https://github.com/cedadev/cfapyx

cfa dask kerchunk netcdf4 python xarray

Last synced: about 1 year ago
JSON representation

Xarray CFA Engine module for accessing CFA-netCDF files with Xarray

Awesome Lists containing this project

README

          

![CFAPyX long logo: Blue, Green and White squares arranged in Diamond formation](https://github.com/cedadev/CFAPyX/blob/main/docs/source/_images/CFAPyX_long.jpg)

![Static Badge](https://img.shields.io/badge/Xarray%20Engine%20Component-1E4B23)
[![PyPI version](https://badge.fury.io/py/cfapyx.svg)](https://pypi.python.org/pypi/cfapyx/)

CFA python Xarray module for using CFA files with xarray.

See the [Documentation](https://cedadev.github.io/CFAPyX/) for more details.
cfapyx on [Github](https://github.com/cedadev/CFAPyX)

For use with the Xarray module as an additional backend.

> **_NOTE:_** The `create` functionality was added to version 2024.10.11 and is currently in alpha release. Please report any unexpected errors or issues using the GitHub Issues tab for this repository.

# Installation

```
pip install cfapyx
```

# Usage as Xarray Engine

```
import xarray as xr

ds = xr.open_dataset('cfa_file.nca', engine='CFA')
# Continue as normal

```