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

#### Code Sample, a copy-pastable example if possible ```python cat = intake.open_catalog('https://raw.githubusercontent.com/USGS-python/hytest-catalogs/main/hytest_intake_catalog.yml') ds = cat['conus404-40year-cloud'].to_dask() # restrict variables to those of interest c404 = ds["PREC_ACC_NC", "TK", "ACSWDNB", "I_ACSWDNB", "ACSWDNB", "I_ACSWDNB",...

enhancement
proposal
dask

Related to #451 Community references: - [NEP-29](https://numpy.org/neps/nep-0029-deprecation_policy.html) says numpy drops support for Python 3.8 in April 2023. - [pyproj](https://github.com/pyproj4/pyproj/issues/1111)

#### Code Sample, a copy-pastable example if possible ```python In [1]: import rioxarray as rio In [2]: import numpy as np In [3]: import xarray as xr In [4]: x...

bug

```python import rasterio as rxr da1 = xr.DataArray([[0,1], [1,0]], coords=dict(y=[1,0], x=[0,1])) da1['time'] = 0 da2 = da1.copy() da2['time'] = 1 da1 = da1.rio.write_crs(32610) da2 = da2.rio.write_crs(32611) xr.concat([da1, da2], dim='time').rio.crs #...

enhancement
upstream

#### Code Sample, a copy-pastable example if possible A set of arrays are merged and than saved (the later for finding the errors). The array are from an DGM in...

bug

#### Code Sample, a copy-pastable example if possible I tried to use the matimatical methods of xarrays which than interferes with the capacity of the xarray to behave as a...

question

The typical Geotiff images that I use have a description for each band that rioxarray sets as the `long_name` attribute. By default, images are read as `xarray.DataArray` with a `band`,...

proposal

#### Code Sample, a copy-pastable example if possible A "Minimal, Complete and Verifiable Example" will make it much easier for maintainers to help you: http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports ```python import xarray as xr...

bug
upstream

rioxarray has wonderful padding function. I was wondering if you can add mode='reflect' in that padding function https://corteva.github.io/rioxarray/html/examples/pad_box.html

proposal

#### Code Sample ```python from pathlib import Path import xarray as xr REPO_DIR = Path("/data/mtoews/src/rioxarray") TEST_INPUT_DATA_DIR = REPO_DIR / "test" / "test_data" / "input" ds = xr.open_dataset(TEST_INPUT_DATA_DIR / "nonstandard_dim.nc") da...

question