Re: [gdal-dev] GDAL Windows Wheels

2024-09-17 Thread Idan Miara via gdal-dev
Thanks for sharing! Would you like to post it also in this issue? https://github.com/OSGeo/gdal/issues/4352 On Tue, 17 Sept 2024 at 14:36, Petr Tsymbarovich via gdal-dev < gdal-dev@lists.osgeo.org> wrote: > Hi, > > Long story short: I've configured a GitLab pipeline for building and > publishing

Re: [gdal-dev] Utilizing GDAL for adding overviews layer in python language

2024-03-12 Thread Idan Miara via gdal-dev
Hi, You could use gdal to write a single tiff file from each numpy array layer and name it accordingly: base.tif - your input tiff file base.tif.ovr - first overview base.tif.ovr.ovr - second overview base.tif.ovr.ovr.ovr - third overview etc. gdal would know to read these overviews automatically

Re: [gdal-dev] Utilizing GDAL for adding overviews layer in python language

2024-03-12 Thread Idan Miara via gdal-dev
Hi, So you are saying that you used gdal buildoverview in Python to add overviews to the tiff file but it only uses CPU and not GPU. And you could use the other library to add overviews using GPU - can you share which library you used or what's the output format that you got? Maybe you can combine