Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RasterioDeprecationWarning #3964

Merged
merged 3 commits into from
Apr 11, 2020
Merged

RasterioDeprecationWarning #3964

merged 3 commits into from
Apr 11, 2020

Commits on Apr 10, 2020

  1. RasterioDeprecationWarning

    When a `vrt` is opened, a deprecation warning will be shown:
    ```python
    /home/taher/.local/apps/miniconda/envs/hydrodata/lib/python3.8/site-packages/xarray/backends/rasterio_.py:241: RasterioDeprecationWarning: dst_nodata will be removed in 1.1, use nodata
      riods = WarpedVRT(riods, **vrt_params)
    /home/taher/.local/apps/miniconda/envs/hydrodata/lib/python3.8/site-packages/xarray/backends/rasterio_.py:35: RasterioDeprecationWarning: dst_nodata will be removed in 1.1, use nodata
      riods = WarpedVRT(riods, **vrt_params)
    /home/taher/.local/apps/miniconda/envs/hydrodata/lib/python3.8/site-packages/xarray/backends/rasterio_.py:122: RasterioDeprecationWarning: dst_nodata will be removed in 1.1, use nodata
      riods = WarpedVRT(riods, **self.vrt_params)
    ```
    This change can be confirmed in `rasterio`'s documentation where `dst_nodata` is replaced with nodata.
    https://rasterio.readthedocs.io/en/latest/api/rasterio.vrt.html
    cheginit authored Apr 10, 2020
    Configuration menu
    Copy the full SHA
    89af30e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2020

  1. added changes in pydata#3964

    cheginit authored Apr 11, 2020
    Configuration menu
    Copy the full SHA
    f32d945 View commit details
    Browse the repository at this point in the history
  2. Update whats-new.rst

    cheginit authored Apr 11, 2020
    Configuration menu
    Copy the full SHA
    feb9bdb View commit details
    Browse the repository at this point in the history