Re: [gdal-dev] OGR SQL: Excecuting select where column name contains .

2012-10-09 Thread Odd Ragnar Lydersen
Thanks for the response. I think I will conclude the same as you, and report back to the server developers that this is a bad idea. Odd-Ragnar -Original Message- From: Rahkonen Jukka [mailto:jukka.rahko...@mmmtike.fi] Sent: 8. oktober 2012 22:22 To: gdal-dev@lists.osgeo.org Subject:

Re: [gdal-dev] OGR SQL: Excecuting select where column name contains .

2012-10-09 Thread Odd Ragnar Lydersen
The problem is OGRSQL (ogr_gensql.cpp) which adds the string FIELD_%d when it doesn't know how to handle column names with dot character in them. Because the dot character is a special/reserved character it needs to be enclosed in '', , ``, [], ..., all depending on which dialect is used (MS

Re: [gdal-dev] OGR SQL: Excecuting select where column name contains .

2012-10-09 Thread Jukka Rahkonen
Even Rouault even.rouault at mines-paris.org writes: I've looked at WFS 1.1 spec, and at page 17 (§7.3 Property names), I see that the definition of the property name allows a dot character. So this is theoretically valid... TinyOWS is now theoretically fixed

Re: [gdal-dev] clipping multiple shapefiles from a set of clipping polygons

2012-10-09 Thread maning sambale
I see, is there a scripting workaround using 1.9? On Mon, Oct 8, 2012 at 9:14 PM, Etienne Tourigny etourigny@gmail.com wrote: generally speaking new features do not go into current stable version (1.9), they will be incorporated into next stable version (probably 2.0). Etienne On Mon,

Re: [gdal-dev] Small meshing utility

2012-10-09 Thread Chris Barker
On Sun, Oct 7, 2012 at 8:33 PM, Tim Keitt tke...@gmail.com wrote: cool! though Im a little confused as to how this fits with OGR. OGR is used for i/o. I see -- so you've written something like the triangle command line utility, but with OGR for IO, so you don't need to use triangles

Re: [gdal-dev] clipping multiple shapefiles from a set of clipping polygons

2012-10-09 Thread Eli Adam
On Tue, Oct 9, 2012 at 3:41 AM, maning sambale emmanuel.samb...@gmail.com wrote: I see, is there a scripting workaround using 1.9? ogr2ogr has various -clip. options. It looks like you could specify using a particular feature in the AdminPoly to do this (presumably GEOS support is

Re: [gdal-dev] S57 dataset boundary issue

2012-10-09 Thread Frank Warmerdam
On Mon, Oct 8, 2012 at 10:28 PM, Nikhil Sai Parupalli nikhil.parupa...@iictechnologies.com wrote: HI All, , Thanks for the reply in below data NAME_RCNM (IntegerList) = (7:130,130,130,130,130,130,130) NAME_RCID (IntegerList) = (7:691,391,690,52,1336,1503,1512) ORNT (IntegerList)

[gdal-dev] Motion: Release 1.9.2

2012-10-09 Thread Frank Warmerdam
Motion: The GDAL/OGR 1.9.2RC2 release is promoted to be the official GDAL/OGR 1.9.2 release. --- PSC members are encouraged to review the release candidate and vote. Non-PSC members are encouraged to review the release candidate and comment here on problems. The motion will be open for two

Re: [gdal-dev] Motion: Release 1.9.2

2012-10-09 Thread Daniel Morissette
On 12-10-09 12:27 PM, Frank Warmerdam wrote: Motion: The GDAL/OGR 1.9.2RC2 release is promoted to be the official GDAL/OGR 1.9.2 release. +1 Daniel -- Daniel Morissette http://www.mapgears.com/ Provider of Professional MapServer Support since 2000

[gdal-dev] Strange errors with large vrt

2012-10-09 Thread yvecai
I'm trying to make a world-wide hillshade dataset filling SRTM void from Aster, and using Aster data only between 60°N and 72°N. I computed all 1x1° hillshade tiles, but now I'm struggling to work with a vrt. If I make a .vrt of all ~29'000 single 1x1° tiles, I don't have any data above 60°N,

Re: [gdal-dev] Motion: Release 1.9.2

2012-10-09 Thread Howard Butler
On Oct 9, 2012, at 11:34 AM, Daniel Morissette dmorisse...@mapgears.com wrote: On 12-10-09 12:27 PM, Frank Warmerdam wrote: Motion: The GDAL/OGR 1.9.2RC2 release is promoted to be the official GDAL/OGR 1.9.2 release. +1 Daniel +1 Howard ___

Re: [gdal-dev] S57 dataset boundary issue

2012-10-09 Thread s duclos
Frank Nikhil, Frank asked: are, I'm not sure what I or others can do about the performance cost of checking.      If I understand the problem, then it cost nothing! You have to check the winding while loading a OGRGeometryH like so:     double area = 0;  

Re: [gdal-dev] Strange errors with large vrt

2012-10-09 Thread Even Rouault
Le mardi 09 octobre 2012 19:08:33, yvecai a écrit : I'm trying to make a world-wide hillshade dataset filling SRTM void from Aster, and using Aster data only between 60°N and 72°N. I computed all 1x1° hillshade tiles, but now I'm struggling to work with a vrt. If I make a .vrt of all ~29'000

Re: [gdal-dev] Small meshing utility

2012-10-09 Thread Tim Keitt
On Tue, Oct 9, 2012 at 11:07 AM, Chris Barker chris.bar...@noaa.gov wrote: On Sun, Oct 7, 2012 at 8:33 PM, Tim Keitt tke...@gmail.com wrote: cool! though Im a little confused as to how this fits with OGR. OGR is used for i/o. I see -- so you've written something like the triangle command

Re: [gdal-dev] Motion: Release 1.9.2

2012-10-09 Thread Even Rouault
Le mardi 09 octobre 2012 18:27:29, Frank Warmerdam a écrit : Motion: The GDAL/OGR 1.9.2RC2 release is promoted to be the official GDAL/OGR 1.9.2 release. +1 Even ___ gdal-dev mailing list gdal-dev@lists.osgeo.org

[gdal-dev] [ OGR SQL: Excecuting select where column name starts with _ SO: Windows 7, GDAL/OGR 1.9.x

2012-10-09 Thread Gabriel Fusca
Hi, I´m getting a sql parsing error when I tried to execute a query to a shapefile where column name starts with _. When i execute a query like : ogrinfo Provincias.shp -sql SELECT * FROM Provincias WHERE tipo = 1 INFO: Open of `Provincias.shp' using driver `ESRI Shapefile' successful.

Re: [gdal-dev] Strange errors with large vrt

2012-10-09 Thread yvecai
On 10/09/2012 08:45 PM, Even Rouault wrote: Did you check that there was no error or warning reported when building the VRT ? There is no warning from gdalbuiltvrt, is there a flag for a verbose mode? What do you mean by I don't have any data ? Do you mean that if you do an extraction from

[gdal-dev] [update] Re: Travis CI continuous integration service for GDAL

2012-10-09 Thread Even Rouault
Le dimanche 07 octobre 2012 11:42:30, Even Rouault a écrit : Hi, Following a recent similar move from MapServer, I've setup an instance of Travis CI, hosted continuous integration service. After each SVN commit in trunk, GDAL is built and the Java, Perl and Python tests are run. Travis CI