Skip to content

Commit

Permalink
Use higher tresholds for line splitting to avoid numerical problems w…
Browse files Browse the repository at this point in the history
…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
Original file line number Diff line number Diff line change
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.