Re: [gdal-dev] Using GDAL with gridded XYZ that has no 'nodata' values?

2014-06-07 Thread Even Rouault
Le samedi 07 juin 2014 22:31:09, Sam Franklin a écrit : > Hey Even - me again on this xyz sorting issue. > > I've got a new xyz file that it is not recognised by gdal even after using > the sort command you provided earlier in the thread. > > The problem xyz is here | > https://dl.dropboxusercont

Re: [gdal-dev] Using GDAL with gridded XYZ that has no 'nodata' values?

2014-06-07 Thread Sam Franklin
Hey Even - me again on this xyz sorting issue. I've got a new xyz file that it is not recognised by gdal even after using the sort command you provided earlier in the thread. The problem xyz is here | https://dl.dropboxusercontent.com/u/4086367/001-1.xyz.zip The error is: ERROR 1: Ungridded dat

Re: [gdal-dev] WFS driver and filtering

2014-06-07 Thread Even Rouault
Le samedi 07 juin 2014 21:36:21, Stefan Ziegler a écrit : > Hi Even > > Using python: > > from osgeo import ogr > > driver = ogr.GetDriverByName('WFS') > wfs = driver.Open("WFS:http://www.catais.org/wfs/mopublic?";) > > out = "/home/stefan/Projekte/GeoPackage/test5.gpkg" > outDriver = ogr.GetDr

Re: [gdal-dev] WFS driver and filtering

2014-06-07 Thread Stefan Ziegler
Hi Even Using python: from osgeo import ogr driver = ogr.GetDriverByName('WFS') wfs = driver.Open("WFS:http://www.catais.org/wfs/mopublic?";) out = "/home/stefan/Projekte/GeoPackage/test5.gpkg" outDriver = ogr.GetDriverByName("GPKG") outDataSource = outDriver.CreateDataSource(out) layer = wfs.

Re: [gdal-dev] WFS driver and filtering

2014-06-07 Thread Even Rouault
Le samedi 07 juin 2014 20:46:51, Stefan Ziegler a écrit : > Hi > > I have a question regarding client/server sided filtering. According to the > wfs driver website [1] the driver is able to forward spatial and attribute > filter to the server. If this is not possible it will client-side only > fil

[gdal-dev] WFS driver and filtering

2014-06-07 Thread Stefan Ziegler
Hi I have a question regarding client/server sided filtering. According to the wfs driver website [1] the driver is able to forward spatial and attribute filter to the server. If this is not possible it will client-side only filtering. When does the driver "decide" wether it filters client or serv