Re: [gdal-dev] Is source Dataset array to `GDALWarp` mutable?

2024-01-09 Thread Even Rouault via gdal-dev
https://github.com/OSGeo/gdal/pull/9045 will clarify it for posterity -- http://www.spatialys.com My software is free, but my time generally not. ___ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] Is source Dataset array to `GDALWarp` mutable?

2024-01-09 Thread Even Rouault via gdal-dev
Le 09/01/2024 à 19:45, Fitch, Simeon via gdal-dev a écrit : I have a question about the mutability of the `pahSrcDS` argument to `GDALWarp`. The `GDALWarp` function has the following signature: ``` GDALDatasetH GDALWarp(const char *pszDest, GDALDatasetH hDstDS, int nSrcCount,              

[gdal-dev] Is source Dataset array to `GDALWarp` mutable?

2024-01-09 Thread Fitch, Simeon via gdal-dev
I have a question about the mutability of the `pahSrcDS` argument to `GDALWarp`. The `GDALWarp` function has the following signature: ``` GDALDatasetH GDALWarp(const char *pszDest, GDALDatasetH hDstDS, int nSrcCount, GDALDatasetH *pahSrcDS, const GDALWa

Re: [gdal-dev] How to publish a C# GDAL project to Linux?

2024-01-09 Thread Paul Harwood via gdal-dev
{ "emoji": "😀", "version": 1 }___ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] How to publish a C# GDAL project to Linux?

2024-01-09 Thread Paul Harwood via gdal-dev
Also responded on SO On Tue, 9 Jan 2024 at 15:57, George Watson via gdal-dev < gdal-dev@lists.osgeo.org> wrote: > Answered on SO (no pun intended). > > George K. Watson > Stuff-doer > Maxar > > On 01/09/2024 8:10 AM MST Vedran Mornar via gdal-dev < > gdal-dev@lists.osgeo.org> wrote: > > > > Hi, >

Re: [gdal-dev] How to publish a C# GDAL project to Linux?

2024-01-09 Thread George Watson via gdal-dev
Answered on SO (no pun intended).   George K. Watson Stuff-doer Maxar On 01/09/2024 8:10 AM MST Vedran Mornar via gdal-dev wrote:     Hi,   Need help on publishing a C# GDAL project to a Linux

Re: [gdal-dev] Where to fins my own files

2024-01-09 Thread Even Rouault via gdal-dev
We are in the final stages of developing the vector driver, and afterward, we will start work on the raster driver. I believe the optimal approach is to submit the vector driver first. This way, we can learn from any potential mistakes in the vector part and apply the necessary corrections dire

Re: [gdal-dev] Where to fins my own files

2024-01-09 Thread Abel Pau via gdal-dev
Hi Even, sure, as you need. We are used to the DBF format; our structure comprises one file for the geographic component, another for metadata, and a DBF for non-geographic attribute data. We have the capability to edit it using a dedicated editor. However, I acknowledge that it might be more b

Re: [gdal-dev] Where to fins my own files

2024-01-09 Thread Even Rouault via gdal-dev
Actually thinking that if your intent is to upstream the driver at some point, a CSV resource file would be better than a DBF one, because CSV is text (whereas DBF is somehow binary, or at least not directly editable), which makes it more appropriate for review & editing. Le 07/01/2024 à 22:06