Re: [gdal-dev] Raster from temporary tiles

2016-07-19 Thread Matthias Kuhn
On 20/07/16 08:20, Even Rouault wrote: > Le mercredi 20 juillet 2016 08:08:07, Matthias Kuhn a écrit : >> Hi Even >> >> On 20/07/16 08:04, Even Rouault wrote: >>> Hi Matthias, >>> >>> The GPKG driver is a full-blown raster driver with similar capabilites to >>> the GeoTIFF one. That is you can use

Re: [gdal-dev] Raster from temporary tiles

2016-07-19 Thread Even Rouault
Le mercredi 20 juillet 2016 08:08:07, Matthias Kuhn a écrit : > Hi Even > > On 20/07/16 08:04, Even Rouault wrote: > > Hi Matthias, > > > > The GPKG driver is a full-blown raster driver with similar capabilites to > > the GeoTIFF one. That is you can use GDALCreate() to initialize an empty > > ra

Re: [gdal-dev] Raster from temporary tiles

2016-07-19 Thread Matthias Kuhn
Hi Even On 20/07/16 08:04, Even Rouault wrote: > Hi Matthias, > > The GPKG driver is a full-blown raster driver with similar capabilites to the > GeoTIFF one. That is you can use GDALCreate() to initialize an empty raster > and then write arbitrary portions of it with GDALRasterIO(, ..., GF_Wri

Re: [gdal-dev] Raster from temporary tiles

2016-07-19 Thread Even Rouault
Hi Matthias, The GPKG driver is a full-blown raster driver with similar capabilites to the GeoTIFF one. That is you can use GDALCreate() to initialize an empty raster and then write arbitrary portions of it with GDALRasterIO(, ..., GF_Write, ...). You can also initialize empty overviews with G

[gdal-dev] Raster from temporary tiles

2016-07-19 Thread Matthias Kuhn
Hi, I have a question regarding creating raster data (geopackage). It's trivial to create files with gdal_translate if there is already an existing source raster file (e.g. geotiff). What I need to do is to download tiles and "feed" them to a geopackage raster file. I guess I could just download