[gdal-dev] VersionInfo BUILD_INFO

2012-04-29 Thread Frank Warmerdam
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

Re: [gdal-dev] Propose Chen Zhen as committer

2012-04-29 Thread Even Rouault
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

Re: [gdal-dev] Building minimalist gdal on Windows x64

2012-04-29 Thread Even Rouault
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

Re: [gdal-dev] Proposing json-c update to pre-0.10

2012-04-29 Thread Mateusz Loskot
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

Re: [gdal-dev] Question about json-c mods in changeset r18545

2012-04-29 Thread Mateusz Loskot
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

[gdal-dev] Re: OFTReal values truncated to integer

2012-04-29 Thread diegogb
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,

[gdal-dev] Building minimalist gdal on Windows x64

2012-04-29 Thread Saâd HESSANE
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 ... ?