[gdal-dev] Clip by row / column

2025-07-07 Thread Stephane Goldstein via gdal-dev
Hi. I tried to use the gdal raster today to clip a raster by row and column as I used to do with gdal_translate -srcwin But couldn't find the equivalent command. Is it available ? ___ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lists.osge

Re: [gdal-dev] Can GDAL driver be reused by GDAL python binding

2025-07-07 Thread Even Rouault via gdal-dev
Hi, Connection pooling is an internal implementation driver of each driver. You have to be careful about multi-threaded use cases if you want to implement that though. The PostGISRaster driver has some connection pooling. See PostGISRasterDriver::GetConnection() Even Le 07/07/2025 à 21:18,

[gdal-dev] Can GDAL driver be reused by GDAL python binding

2025-07-07 Thread Fengting Chen via gdal-dev
Hi, A Python program can invoke GDAL driver through gdal.open() to read/write raster/vector data. Is it possible for the GDAL driver to be reused in order to avoid reinitializing the driver for each gdal.open() call? For example, if a GDAL driver to a database implements a connection pool, will

[gdal-dev] GDAL Maintainers Meeting Minutes

2025-07-07 Thread Howard Butler via gdal-dev
Howard Butler, Dan Baston, Alessandro Pasotti,, Michael Sumner, Seth Girvin, Even Rouault, Mike Smith, Norman Barker and Javier Jimenez Shaw held the monthly GDAL Maintainers Meeting on 06/26/2025. The following items were discussed and reported upon: Project News

Re: [gdal-dev] Issues with gdalwarp 3.11.1

2025-07-07 Thread Even Rouault via gdal-dev
Thanks for raising this. Fixed per https://github.com/OSGeo/gdal/pull/12722 . As that's a rather annoying regression, I'll likely issue a 3.11.2 RC tomorrow Even Le 07/07/2025 à 18:51, Scott via gdal-dev a écrit : Using GDAL 3.11.1 on Debian 12 proj 9.1.1 and GDAL 3.11.1 on AWS Linux 2, proj

[gdal-dev] Issues with gdalwarp 3.11.1

2025-07-07 Thread Scott via gdal-dev
Using GDAL 3.11.1 on Debian 12 proj 9.1.1 and GDAL 3.11.1 on AWS Linux 2, proj 9.2.1, with this source file: https://water.noaa.gov/resources/downloads/precip/stageIV/2025/07/06/nws_precip_wytd_20250706_conus.tif This following command fails with 'Warning 1: PROJ: stere: Invalid latitude':

Re: [gdal-dev] Random Raster Driver

2025-07-07 Thread Alex Hagen-Zanker via gdal-dev
Great, will do. It will take a while, as I am about to go on holidays, but will be this Summer Thanks, ALex From: Even Rouault Sent: 07 July 2025 11:30 To: Alex Hagen-Zanker ; gdal-dev@lists.osgeo.org Subject: Re: [gdal-dev] Random Raster Driver Would the nex

Re: [gdal-dev] Random Raster Driver

2025-07-07 Thread Even Rouault via gdal-dev
Would the next step be for me to prepare a PR based on this? yes I think so. Perhaps start small with just one distribution function, and once this initial PR is merged you can follow up with other ones -- http://www.spatialys.com My software is free, but my time generally not. __

Re: [gdal-dev] Random Raster Driver

2025-07-07 Thread Alex Hagen-Zanker via gdal-dev
Hi Even, Thank you, now I get it, and that would work well I think. Would the next step be for me to prepare a PR based on this? Kind regards, Alex From: Even Rouault Sent: 06 July 2025 23:13 To: Alex Hagen-Zanker ; gdal-dev@lists.osgeo.org Subject: Re: [gdal-

Re: [gdal-dev] Proxy vs Real Driver in GDAL

2025-07-07 Thread Even Rouault via gdal-dev
- How to create a GDAL driver: https://gdal.org/en/stable/tutorials/raster_driver_tut.html - GDAL-GRASS plugin driver example: https://github.com/OSGeo/gdal-grass/ Le 07/07/2025 à 11:37, John Smith a écrit : Yeah I am after that kind of explanation. @Even Rouault via gdal-dev

Re: [gdal-dev] Proxy vs Real Driver in GDAL

2025-07-07 Thread John Smith via gdal-dev
Yeah I am after that kind of explanation. @Even Rouault via gdal-dev - Do you think there is any quick explanation available for this scenario? From: Parveen Sharma Sent: Monday, July 7, 2025 9:21 AM To: Even Rouault via gdal-dev ;

Re: [gdal-dev] Proxy vs Real Driver in GDAL

2025-07-07 Thread Parveen Sharma via gdal-dev
Thanks Even Still do you think I could have a brief intro if it's an in-tree driver. So from that point of view what would constitute a proxy and real driver? From: gdal-dev on behalf of Even Rouault via gdal-dev Sent: Monday, July 7, 2025 5:03 PM To: John Smi

Re: [gdal-dev] Proxy vs Real Driver in GDAL

2025-07-07 Thread Even Rouault via gdal-dev
John, As stated in the intro, this RFC is mostly for *in-tree* drivers. If you develop an out-of-tree plugin that doesn't modify GDAL sources, then you can ignore it Even Le 07/07/2025 à 10:55, John Smith via gdal-dev a écrit : Hello Can anyone explain the concept of proxy driver and re

[gdal-dev] Proxy vs Real Driver in GDAL

2025-07-07 Thread John Smith via gdal-dev
Hello Can anyone explain the concept of proxy driver and real driver in GDAL? I am looking at the link https://gdal.org/en/stable/development/rfc/rfc96_deferred_plugin_loading.html Say I create an external plugin of some data format for e.g. say JP2 and then some Geospatial server loads my plu