This GeoPackage is made available under the CC-0 license.
This project showcases image speech bubbles created from images stored in the GPKG file.
Just a quick note: the "Austria" overview consists of only a single layer!
Using DuckDB, we can store an entire directory of images in a GPKG database table:
COPY ( SELECT regexp_extract(filename,'^.\/',1) AS name, regexp_extract(filename, '.$',1) AS filetype, content FROM read_blob('d:/photos/') ) TO 'd:/photos/photos.gpkg' with (FORMAT gdal, DRIVER 'GPKG');
Thank you!
Reviewed by gabrieldeluca 1 week ago
This GeoPackage is made available under the CC-0 license.