pyvista-xarray icon indicating copy to clipboard operation
pyvista-xarray copied to clipboard

xarray DataArray accessors for PyVista

Results 17 pyvista-xarray issues
Sort by recently updated
recently updated
newest added

https://www.ncei.noaa.gov/products/optimum-interpolation-sst [oisst-avhrr-v02r01.19810901.nc.zip](https://github.com/pyvista/pyvista-xarray/files/9007268/oisst-avhrr-v02r01.19810901.nc.zip) ```py import xarray ds = xarray.open_dataset('oisst-avhrr-v02r01.19810901.nc') ds.err.plot() ``` ![download](https://user-images.githubusercontent.com/22067021/176353011-cec4735d-0c83-4681-8780-bfe1334aade5.png)

documentation
enhancement

I am trying to display an [elevation dataset](https://drive.google.com/file/d/1OY3kP4o5_OoBn66nnSg6pjJmaA25A03_/view?usp=sharing), but it seems pyvista-xarray somehow uses the nodata value as the minimum value to render the data, making it look like a...

bug

Potential solution to #34 It's a bit dirty as it modifies the data in place or creates a copy of the integer data to float dtype (potentially expensive). This is...

Resolves #15 I feel this should be double-checked by someone more familiar with CF conventions and how that accessor works. Also, this should be tested against more datasets cc @rabernat,...

Can this library scale? What are some good rules of thumb for how much data this can handle?

documentation

One of the Binder examples is not working as expected. ```python import rioxarray da = rioxarray.open_rasterio("bahamas_rgb.tif") da = da.rio.reproject("EPSG:3857") # Grab the mesh object for use with PyVista mesh =...

bug
stale

Make sure data are being generated efficiently and not copy data unnecessarily

the dataset backend here uses `pyvista.read()` to load files supported by PyVista/VTK. Currently these are limited to `vti`, `vts`, and `vtr` files but *any* formats the generate a `vtkRectilinearGrid`, `vtkImageData`,...

enhancement
stale

https://cf-xarray.readthedocs.io/en/latest/ Utilize this for auto-discovery of coordinate names

enhancement