You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: advanced/backends/backends.md
+45-1Lines changed: 45 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,51 @@
2
2
3
3
## Introduction
4
4
5
-
You can [read different type of files](https://docs.xarray.dev/en/stable/user-guide/io.html)) in `xr.open_dataset` by specifying the engine to be used:
5
+
6
+
```mermaid
7
+
---
8
+
title: "Xarray Engines: Opening Your Data with xr.open_dataset()"
9
+
---
10
+
11
+
12
+
flowchart TD
13
+
built-in-eng([Is your data stored in one of these formats?
14
+
netCDF4
15
+
netCDF3
16
+
Zarr
17
+
DAP
18
+
])
19
+
20
+
built-in("`You're in luck! Xarray bundles a backend for this format.
21
+
Open data using *xr.open_dataset()* as normal.`")
22
+
23
+
installed-eng(["`One of these formats?
24
+
GRIB (**cfgrib**)
25
+
TileDB (**tiledb**)
26
+
GeoTIFF, JPEG-2000, ESRI-hdf (**rioxarray**, via GDAL)
27
+
Sentinel-1 SAFE (**xarray-sentinel**)
28
+
`"])
29
+
30
+
installed("`Install the package indicated in parentheses
31
+
to your Python environment. Restart the kernel
32
+
and use *xr.open_dataset(files, engine='rioxarray')*`")
33
+
34
+
other("`You can't use *open_dataset()* with an engine.
35
+
This page shows how to open your data with Xarray.`")
0 commit comments