Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use higher tresholds for line splitting to avoid numerical problems w…
…ith large coordinate values

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10928 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jun 15, 2009
1 parent 3496e5c commit d76ad0b
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.000000001;
double intersectThreshold = 0.0000001;
double bufferDistance = 0.0001;
double intersectThreshold = 0.1;

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

0 comments on commit d76ad0b

Please sign in to comment.