Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Split thresholds should be dependant on map unit type. For now use va…
…lues that work in nearly all cases

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10931 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jun 15, 2009
1 parent c11d663 commit 9c6464e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsgeometry.cpp
Expand Up @@ -4795,8 +4795,8 @@ int QgsGeometry::splitLinearGeometry( GEOSGeometry *splitLine, QList<QgsGeometry
GEOSGeometry* intersectGeom = 0;

//hardcoded thresholds
double bufferDistance = 0.0001;
double intersectThreshold = 0.1;
double bufferDistance = 0.0000001;
double intersectThreshold = 0.00001;

for ( int i = 0; i < GEOSGetNumGeometries( mergedLines ); i++ )
{
Expand Down

0 comments on commit 9c6464e

Please sign in to comment.