Reading data using backends (original) (raw)

Contents

Reading data using backends#

Introduction#

You can read different types of files in xr.open_dataset by specifying the engine to be used:

Navigating Xarray backends can be confusing, so we recommend checking out this flow chartto help you figure out which engine you need and how to use it.

You can see what backends are currently available in your working environment with xarray.backends.list_engines().

Why use the Xarray backend API to write your own backend?#

More Information#

See the documentation for more details on adding and registering a new backend.

Follow the tutorials on creating a new backend for binary files.