Selon Kees kling <[email protected]>: > Hi, > > last week I upgraded my ubuntu and also the gdal library. I was using > version libgdal.so.1.15.0, now I compiled and installed version > libgdal.so.1.16.2. > In my application i'm using OGRLayer SetSpatialFilter and it was working > in the old version, but in the new version the GetFeatureCount returns 0 > so nothing is plotted. Is there a change in the function between these > two versions?
Check : ldd /path/to/libgdal.so.1.15.0 | grep geos and ldd /path/to/libgdal.so.1.16.2 | grep geos My guess is that the first returns something, whereas the second doesn't. In which case, you might need to install the developement package of GEOS and rebuild GDAL against it. > > Thanks > Kees Kling > _______________________________________________ > gdal-dev mailing list > [email protected] > http://lists.osgeo.org/mailman/listinfo/gdal-dev > _______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
