[gdal-dev] compiling gdal 1.9 with FGDB support

2012-04-27 Thread Eric Goddard
Hello everyone, I'm attempting to compile gdal 1.9 with fgdb support on kubuntu 12.04. I've downloaded the FileGDB api and have it set it up in /usr/local. Running the samples from the FileGDB folder completes successfully. I'm configuring gdal with the following options: ./configure --with-geos

[gdal-dev] OGR ESRI ArcSDE driver tested with ArcSDE 10 (Windows)?

2012-04-27 Thread Stefan Keller
The OGR doc here http://www.gdal.org/ogr/drv_sde.html says: > The driver has been tested with ArcSDE 9.x, and should work with newer > versions Has anybody tested it with ArcSDE 10.x (especially under Windows)? Yours, S. ___ gdal-dev mailing list gdal-

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

2012-04-27 Thread diegogb
In addiction to what I previously wrote, I noticed that the problem does not affect the x and y coordinates of the point. I'm using the last version of the Linux Mint OS. -- View this message in context: http://osgeo-org.1560.n6.nabble.com/OFTReal-values-truncated-to-integer-tp4933952p4935441.htm

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

2012-04-27 Thread diegogb
When I open the dbf file with LibreOffice Calc, the value of the Elev field is 1. *If I open the same file with GHex, the value, represented in ASCII, is "1,3"*, so I think that you're right and GDAL uses my local settings and writes reals using the comma to separate the decimal digits from the int

[gdal-dev] 1.9.1 Release Soon

2012-04-27 Thread Frank Warmerdam
Folks, I'm interesting in pushing out a 1.9.1 release in the next week. Is there anything we should make sure makes it in? From my perspective the one item I want to address first is: http://trac.osgeo.org/gdal/ticket/4607 - geotiff epsg code preservation If I don't hear otherwise I'll hopefu

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

2012-04-27 Thread Even Rouault
Selon diegogb : > I have a problem on storing double values on shapefiles fields. > If I execute this code: > > //... > OGRFieldDefn zField("Elev", OFTReal); > layer->CreateField(&zField); > //... > OGRFeature *pointFeature = OGRFeature::CreateFeature(layer->GetLayerDefn()); > OGRPoint thePoint; >

RE: [gdal-dev] aux/lyr/rrd raster dataset?

2012-04-27 Thread Smith, Michael
They are all extra things that GDAL does not need: LYR is an ArcGIS layer file, it just stores symbology and so on about how to represent data in ArcMap. AUX is an auxiliary statistics file which ArcGIS generates for doing stretches, histograms, etc RRD is a pyramid file which ArcGIS generates to

Re: [gdal-dev] aux/lyr/rrd raster dataset?

2012-04-27 Thread Even Rouault
Selon Ari Jolma : > Hi, > > I got some data in files which have aux, lyr and rrd extensions. I > believe they are raster datasets in some ESRI or ERDAS formats. > > My GDAL did not recognize them immediately. Can somebody explain a bit > what do I have? Ari, .aux and .rrd files are companion fil

[gdal-dev] OFTReal values truncated to integer

2012-04-27 Thread diegogb
I have a problem on storing double values on shapefiles fields. If I execute this code: //... OGRFieldDefn zField("Elev", OFTReal); layer->CreateField(&zField); //... OGRFeature *pointFeature = OGRFeature::CreateFeature(layer->GetLayerDefn()); OGRPoint thePoint; thePoint.setX(1); thePoint.setY(1);

[gdal-dev] aux/lyr/rrd raster dataset?

2012-04-27 Thread Ari Jolma
Hi, I got some data in files which have aux, lyr and rrd extensions. I believe they are raster datasets in some ESRI or ERDAS formats. My GDAL did not recognize them immediately. Can somebody explain a bit what do I have? Cheers, Ari ___ gdal-de

Re: [gdal-dev] Fwd: Configure error with Oracle instantclient 11.2.0.3

2012-04-27 Thread Stefano Iacovella
Thank you Luca the setting you suggested actually solved my issue. export LDFLAGS="-Wl,--no-as-needed" ./configure I succeded compiling 1.9.0 with OCI support using the Instantclient. Regards Stefano 2012/4/27 Luca Fibbi : > There has been a change to the build tools in ubuntu 11.10 The “–as-

[gdal-dev] RFC 39

2012-04-27 Thread Ari Jolma
Folks, I've added a new patch to the RFC 39 page. The attached files (the latest patch and the autotest code) contain now - new methods in OGRFeature and especially the new overlay methods in OGRLayer - additions to the C API - additions to the swig bindings - documentation of the new overla

Re: [gdal-dev] Problem reading JPEG image format

2012-04-27 Thread Even Rouault
Selon akshay gupta : > Hi all, > > I am having problems trying to read .jpg images using gdal. Using GDAL I > am able to read jpg images using GA_ReadOnly mode but in GA_Update mode > its giving errors. Can any one tell me what might be the problem, and > suggest me a turnaround to open jpg imag

Re: [gdal-dev] Problem reading JPEG image format

2012-04-27 Thread Chaitanya kumar CH
Akshay, Please provide some more details including the error messages and the driver you used, etc. Setting the CPL_DEBUG env variable before running the process can provide more details. On Fri, Apr 27, 2012 at 1:15 PM, akshay gupta wrote: > Hi all, > > I am having problems trying to read .jpg

Re: [gdal-dev] Fwd: Configure error with Oracle instantclient 11.2.0.3

2012-04-27 Thread Luca Fibbi
There has been a change to the build tools in ubuntu 11.10 The “–as-needed” flag is now passed to the linker. This primarily has implications for dynamic library linking but it also affects the order that libraries appear on the command line even for static linking. I solved the problem by exportin

[gdal-dev] Problem reading JPEG image format

2012-04-27 Thread akshay gupta
Hi all, I am having problems trying to read .jpg images using gdal. Using GDAL I am able to read jpg images using GA_ReadOnly mode but in GA_Update mode its giving errors. Can any one tell me what might be the problem, and suggest me a turnaround to open jpg image in update mode. Thanks in adva