We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa12fe4 commit b243fefCopy full SHA for b243fef
1 file changed
examples/tutorials/advanced/draping_on_3d_surface.py
@@ -98,7 +98,7 @@
98
99
# Download an PNG image of the flag of the EU using rasterio and load it into a
100
# xarray.DataArray
101
-url_to_image = "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/1000px-Flag_of_Europe.svg.png"
+url_to_image = "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/1024px-Flag_of_Europe.svg.png"
102
with rasterio.open(url_to_image) as dataset:
103
data = dataset.read()
104
drape_grid = xr.DataArray(data, dims=("band", "y", "x"))
0 commit comments