rioxarray icon indicating copy to clipboard operation
rioxarray copied to clipboard

geospatial xarray extension powered by rasterio

Results 103 rioxarray issues
Sort by recently updated
recently updated
newest added

#### Update Update on March 15, 2023 based on discussion here https://github.com/pydata/xarray/issues/7621 First posted on March 13, 2023 #### Description When reading data with Xarray using a rasterio engine, the...

bug
upstream

`set_crs`: > Set the CRS value for the Dataset/DataArray without modifying the dataset/data array. `write_crs`: > Write the CRS to the dataset in a CF compliant manner. The `input_crs` and...

bug
good first issue
documentation

Dear all, I hope this description will be clear, and that I am not raising a pointless issue. I am available for any questions, Sincerely #### Code Sample, a copy-pastable...

bug

The issue is `interpolate_na` can be much slower than `rio.fill.fillnodata` Simple example: Reading B9 Landsat band ``` with rioxarray.open_rasterio(r"path/to/file/B9.tif", chunks = True, lock = True) as tif: b9 = tif.load().chunk('auto')...

proposal

When running linting process using Ruff or flake8, F401 will remove any extension lib from the file as its never called. I checked your own codebase and you are specifying:...

proposal

#### Code Sample, a copy-pastable example if possible This function ```python myfile=whatever.nc mydata = rioxarray.open_rasterio(myfile) ``` doesn't work inmy environnement that I created with the command conda install conda-forge::rasterio But,...

installation-issues

For datasets with several data variables of different datatypes, it would be helpful to set a nodata value for each data variable. **Current Behavior** The `nodata` keyword argument for `rio.reproject`...

proposal

Related: - https://github.com/rasterio/rasterio/pull/2884 - #209

proposal

## Description When trying to clip an int32 DataArray object `x` using the `x.rio.clip()` method, the following error is thrown: ``` python3.12/site-packages/xarray/core/duck_array_ops.py:201: RuntimeWarning: invalid value encountered in cast return data.astype(dtype,...

proposal

When working with rasters, it is common to encounter misaligned routers that require co-registration. I have developed a new registration algorithm for [Xdem](https://github.com/GlacioHack/xdem), which has proven to be quite effective....

proposal