Re: Representing many raster files as one big file
Dion Häfner
Hey Sean,
toggle quoted messageShow quoted text
as far as I know, this is not possible with "just" rasterio. But there is one thing you can do. GDAL (the library rasterio is built upon) supports building virtual datasets (https://gdal.org/programs/gdalbuildvrt.html). So you should be able to do $ gdalbuildvrt dem.vrt *.tif and then read this VRT file with rasterio.open (which should work out of the box). Good luck! Dion
On 03/12/2019 15.09, rasterio via Groups.Io wrote:
Hi all,
|
|