Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/requirements/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies:
- pooch
- pip
- pydata-sphinx-theme>=0.4.3
- pyproj
- rasterio>=1.1
- seaborn
- setuptools
Expand Down
25 changes: 11 additions & 14 deletions doc/examples/visualization_gallery.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@
},
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"jp-MarkdownHeadingCollapsed": true,
"tags": []
},
"source": [
"## `imshow()` and rasterio map projections\n",
"\n",
Expand All @@ -213,7 +216,7 @@
"\n",
"# The data is in UTM projection. We have to set it manually until\n",
"# https://github.com/SciTools/cartopy/issues/813 is implemented\n",
"crs = ccrs.UTM('18N')\n",
"crs = ccrs.UTM('18')\n",
"\n",
"# Plot on a map\n",
"ax = plt.subplot(projection=crs)\n",
Expand Down Expand Up @@ -242,20 +245,14 @@
"metadata": {},
"outputs": [],
"source": [
"from rasterio.warp import transform\n",
"from pyproj import Transformer\n",
"import numpy as np\n",
"\n",
"da = xr.tutorial.open_rasterio(\"RGB.byte\")\n",
"\n",
"# Compute the lon/lat coordinates with rasterio.warp.transform\n",
"ny, nx = len(da['y']), len(da['x'])\n",
"x, y = np.meshgrid(da['x'], da['y'])\n",
"\n",
"# Rasterio works with 1D arrays\n",
"lon, lat = transform(da.crs, {'init': 'EPSG:4326'},\n",
" x.flatten(), y.flatten())\n",
"lon = np.asarray(lon).reshape((ny, nx))\n",
"lat = np.asarray(lat).reshape((ny, nx))\n",
"transformer = Transformer.from_crs(da.crs, \"EPSG:4326\", always_xy=True)\n",
"lon, lat = transformer.transform(x, y)\n",
"da.coords['lon'] = (('y', 'x'), lon)\n",
"da.coords['lat'] = (('y', 'x'), lat)\n",
"\n",
Expand All @@ -265,14 +262,14 @@
"# Plot on a map\n",
"ax = plt.subplot(projection=ccrs.PlateCarree())\n",
"greyscale.plot(ax=ax, x='lon', y='lat', transform=ccrs.PlateCarree(),\n",
" cmap='Greys_r', add_colorbar=False)\n",
" cmap='Greys_r', shading=\"auto\",add_colorbar=False)\n",
"ax.coastlines('10m', color='r')"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -286,7 +283,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
13 changes: 4 additions & 9 deletions doc/gallery/plot_rasterio.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,17 @@
import cartopy.crs as ccrs
import matplotlib.pyplot as plt
import numpy as np
from rasterio.warp import transform
from pyproj import Transformer

import xarray as xr

# Read the data
url = "https://github.com/mapbox/rasterio/raw/master/tests/data/RGB.byte.tif"
da = xr.open_rasterio(url)

# Compute the lon/lat coordinates with rasterio.warp.transform
ny, nx = len(da["y"]), len(da["x"])
x, y = np.meshgrid(da["x"], da["y"])

# Rasterio works with 1D arrays
lon, lat = transform(da.crs, {"init": "EPSG:4326"}, x.flatten(), y.flatten())
lon = np.asarray(lon).reshape((ny, nx))
lat = np.asarray(lat).reshape((ny, nx))
# Compute the lon/lat coordinates with pyproj
transformer = Transformer.from_crs(da.crs, "EPSG:4326", always_xy=True)
lon, lat = transformer.transform(*np.meshgrid(da["x"], da["y"]))
da.coords["lon"] = (("y", "x"), lon)
da.coords["lat"] = (("y", "x"), lat)

Expand Down