Re: [gdal-dev] Registering C++ Pixel Functions for Command-Line Utilities

2021-01-12 Thread Conor McIndoe
Wonderful, thank you Thomas, that has indeed resolve the issue Best, Conor On 12/01/2021 12:02, thomas bonfort wrote: Conor, I suspect that you should add an extern "C" { void GDALRegisterMe(); } line at the beginning of your cpp file. -- Thomas On Tue, Jan 12, 2021 at 12:56 PM Conor

Re: [gdal-dev] Registering C++ Pixel Functions for Command-Line Utilities

2021-01-12 Thread thomas bonfort
Conor, I suspect that you should add an extern "C" { void GDALRegisterMe(); } line at the beginning of your cpp file. -- Thomas On Tue, Jan 12, 2021 at 12:56 PM Conor McIndoe wrote: > Hello developers, > > I am just learning the ropes with GDAL so apologies if some of this is > quite far off.

[gdal-dev] Registering C++ Pixel Functions for Command-Line Utilities

2021-01-12 Thread Conor McIndoe
Hello developers, I am just learning the ropes with GDAL so apologies if some of this is quite far off. Also apologies in advance for the essay :) I am trying to register a pixel function, written in C++, in order to produce a VRT and eventually a TIF from some input TIFs. I am trying to