Folks,
We have a GDALVersionInfo() function which takes an argument about what
type of version information we want to get back. I have added a new
possible type which is "BUILD_INFO". The intention is that this would
return build time information that might be useful to scripts or applications
Le dimanche 29 avril 2012 05:22:58, Tyler Mitchell a écrit :
> Chen Zhen (zhenchen17) has been instrumental at tweaking our Ingres driver
> in OGR and he hopes for further contributions in the future (backporting
> and other improvements).
>
> At Frank's suggestion I'm proposing that Chen is set u
Le dimanche 29 avril 2012 12:39:20, Saâd HESSANE a écrit :
> Hi list,
>
> I would like to compile gdal 1.9 with minimalist driver list (I need just
> VRT and GeoTIFF with LZW compression support). I think the only dependance
> in this case is the proj4 library (linked dynamicly).
> There is a simp
On 22 April 2012 13:28, Even Rouault wrote:
> Le dimanche 22 avril 2012 02:03:06, Mateusz Loskot a écrit :
>> Folks,
>>
>> Currently, GDAL uses json-c 0.9 (with some GDAL-specific fixes).
>> The json-c development has progressed and numerous bugs has been fixed.
>>
>> I wonder if I could update to
On 28 April 2012 23:38, Even Rouault wrote:
>>
>> Long story short, for printf:
>> %f -> double
>> %Lf -> for long double.
>>
>> for scanf::
>> %f -> float
>> %lf -> double
>> %Lf -> for long double.
>>
>> Or, I'm misunderstanding the C99 document.
>> If I'm correct, then all C99 compilers should
Uh, ok, I forgot to add () after the variable name:
CPLLocaleC oLocaleCForcer();
For future readers, I also specify that this declaration must be placed
*after* the "OGRRegisterAll();" line to take effect.
For completeness, does anyone know how to do the same hack in Python code?
Thank you all,
Hi list,
I would like to compile gdal 1.9 with minimalist driver list (I need just
VRT and GeoTIFF with LZW compression support). I think the only dependance
in this case is the proj4 library (linked dynamicly).
There is a simple way to do it like Linux autoconf : --without-gif
--without-png ... ?