QGIS API Documentation  3.6.0-Noosa (5873452)
qgsgeometryutils.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometryutils.h
3  -------------------------------------------------------------------
4 Date : 21 Nov 2014
5 Copyright : (C) 2014 by Marco Hugentobler
6 email : marco.hugentobler at sourcepole dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSGEOMETRYUTILS_H
17 #define QGSGEOMETRYUTILS_H
18 
19 #include <limits>
20 
21 #include "qgis_core.h"
22 #include "qgis_sip.h"
23 #include "qgspoint.h"
24 #include "qgsabstractgeometry.h"
25 #include "qgsvector3d.h"
26 
27 
28 class QgsLineString;
29 
36 class CORE_EXPORT QgsGeometryUtils
37 {
38  public:
39 
44  static QVector<QgsLineString *> extractLineStrings( const QgsAbstractGeometry *geom ) SIP_FACTORY;
45 
50  static QgsPoint closestVertex( const QgsAbstractGeometry &geom, const QgsPoint &pt, QgsVertexId &id SIP_OUT );
51 
57  static QgsPoint closestPoint( const QgsAbstractGeometry &geometry, const QgsPoint &point );
58 
66  static double distanceToVertex( const QgsAbstractGeometry &geom, QgsVertexId id );
67 
79  static bool verticesAtDistance( const QgsAbstractGeometry &geometry,
80  double distance,
81  QgsVertexId &previousVertex SIP_OUT,
82  QgsVertexId &nextVertex SIP_OUT );
83 
87  static double sqrDistance2D( const QgsPoint &pt1, const QgsPoint &pt2 );
88 
92  static double sqrDistToLine( double ptX, double ptY, double x1, double y1, double x2, double y2, double &minDistX SIP_OUT, double &minDistY SIP_OUT, double epsilon );
93 
105  static bool lineIntersection( const QgsPoint &p1, QgsVector v1, const QgsPoint &p2, QgsVector v2, QgsPoint &intersection SIP_OUT );
106 
141  static bool segmentIntersection( const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &q1, const QgsPoint &q2, QgsPoint &intersectionPoint SIP_OUT, bool &isIntersection SIP_OUT, double tolerance = 1e-8, bool acceptImproperIntersection = false );
142 
154  static bool lineCircleIntersection( const QgsPointXY &center, double radius,
155  const QgsPointXY &linePoint1, const QgsPointXY &linePoint2,
156  QgsPointXY &intersection SIP_INOUT );
157 
168  static int circleCircleIntersections( QgsPointXY center1, double radius1,
169  QgsPointXY center2, double radius2,
170  QgsPointXY &intersection1 SIP_OUT, QgsPointXY &intersection2 SIP_OUT );
171 
180  static bool tangentPointAndCircle( const QgsPointXY &center, double radius,
181  const QgsPointXY &p, QgsPointXY &pt1 SIP_OUT, QgsPointXY &pt2 SIP_OUT );
182 
200  static int circleCircleOuterTangents(
201  const QgsPointXY &center1, double radius1, const QgsPointXY &center2, double radius2,
202  QgsPointXY &line1P1 SIP_OUT, QgsPointXY &line1P2 SIP_OUT,
203  QgsPointXY &line2P1 SIP_OUT, QgsPointXY &line2P2 SIP_OUT );
204 
223  static int circleCircleInnerTangents(
224  const QgsPointXY &center1, double radius1, const QgsPointXY &center2, double radius2,
225  QgsPointXY &line1P1 SIP_OUT, QgsPointXY &line1P2 SIP_OUT,
226  QgsPointXY &line2P1 SIP_OUT, QgsPointXY &line2P2 SIP_OUT );
227 
235  static QgsPoint projectPointOnSegment( const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2 )
236  {
237  double nx = s2.y() - s1.y();
238  double ny = -( s2.x() - s1.x() );
239  double t = ( p.x() * ny - p.y() * nx - s1.x() * ny + s1.y() * nx ) / ( ( s2.x() - s1.x() ) * ny - ( s2.y() - s1.y() ) * nx );
240  return t < 0. ? s1 : t > 1. ? s2 : QgsPoint( s1.x() + ( s2.x() - s1.x() ) * t, s1.y() + ( s2.y() - s1.y() ) * t );
241  }
242 
245  {
246  int segment1;
247  int segment2;
249  };
250 
261  static QVector<SelfIntersection> selfIntersections( const QgsAbstractGeometry *geom, int part, int ring, double tolerance ) SIP_SKIP;
262 
270  static int leftOfLine( const double x, const double y, const double x1, const double y1, const double x2, const double y2 );
271 
281  static int leftOfLine( const QgsPoint &point, const QgsPoint &p1, const QgsPoint &p2 );
282 
286  static QgsPoint pointOnLineWithDistance( const QgsPoint &startPoint, const QgsPoint &directionPoint, double distance );
287 
297  static void pointOnLineWithDistance( double x1, double y1, double x2, double y2, double distance, double &x, double &y,
298  double *z1 = nullptr, double *z2 = nullptr, double *z = nullptr,
299  double *m1 = nullptr, double *m2 = nullptr, double *m = nullptr ) SIP_SKIP;
300 
309  static QgsPoint interpolatePointOnArc( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double distance );
310 
312  static double ccwAngle( double dy, double dx );
313 
315  static void circleCenterRadius( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double &radius SIP_OUT,
316  double &centerX SIP_OUT, double &centerY SIP_OUT );
317 
324  static bool circleClockwise( double angle1, double angle2, double angle3 );
325 
327  static bool circleAngleBetween( double angle, double angle1, double angle2, bool clockwise );
328 
333  static bool angleOnCircle( double angle, double angle1, double angle2, double angle3 );
334 
336  static double circleLength( double x1, double y1, double x2, double y2, double x3, double y3 );
337 
339  static double sweepAngle( double centerX, double centerY, double x1, double y1, double x2, double y2, double x3, double y3 );
340 
347  static bool segmentMidPoint( const QgsPoint &p1, const QgsPoint &p2, QgsPoint &result SIP_OUT, double radius, const QgsPoint &mousePos );
348 
360  static QgsPoint segmentMidPointFromCenter( const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &center, bool useShortestArc = true );
361 
363  static double circleTangentDirection( const QgsPoint &tangentPoint, const QgsPoint &cp1, const QgsPoint &cp2, const QgsPoint &cp3 );
364 
369  static void segmentizeArc( const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &p3,
370  QgsPointSequence SIP_PYALTERNATIVETYPE( QVector<QgsPoint> ) &points SIP_OUT, double tolerance = M_PI_2 / 90,
371  QgsAbstractGeometry::SegmentationToleranceType toleranceType = QgsAbstractGeometry::MaximumAngle,
372  bool hasZ = false, bool hasM = false );
373 
379  static int segmentSide( const QgsPoint &pt1, const QgsPoint &pt3, const QgsPoint &pt2 );
380 
385  static double interpolateArcValue( double angle, double a1, double a2, double a3, double zm1, double zm2, double zm3 );
386 
391  static QgsPointSequence pointsFromWKT( const QString &wktCoordinateList, bool is3D, bool isMeasure ) SIP_SKIP;
392 
397  static void pointsToWKB( QgsWkbPtr &wkb, const QgsPointSequence &points, bool is3D, bool isMeasure ) SIP_SKIP;
398 
403  static QString pointsToWKT( const QgsPointSequence &points, int precision, bool is3D, bool isMeasure ) SIP_SKIP;
404 
409  static QDomElement pointsToGML2( const QgsPointSequence &points, QDomDocument &doc, int precision, const QString &ns, QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) SIP_SKIP;
410 
415  static QDomElement pointsToGML3( const QgsPointSequence &points, QDomDocument &doc, int precision, const QString &ns, bool is3D, QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) SIP_SKIP;
416 
421  static QString pointsToJSON( const QgsPointSequence &points, int precision ) SIP_SKIP;
422 
428  static double normalizedAngle( double angle );
429 
438  static double lineAngle( double x1, double y1, double x2, double y2 );
439 
451  static double angleBetweenThreePoints( double x1, double y1, double x2, double y2,
452  double x3, double y3 );
453 
463  static double linePerpendicularAngle( double x1, double y1, double x2, double y2 );
464 
469  static double averageAngle( double x1, double y1, double x2, double y2, double x3, double y3 );
470 
477  static double averageAngle( double a1, double a2 );
478 
483  static QPair<QgsWkbTypes::Type, QString> wktReadBlock( const QString &wkt ) SIP_SKIP;
484 
492  static QStringList wktGetChildBlocks( const QString &wkt, const QString &defaultType = QString() ) SIP_SKIP;
493 
515  static QgsPoint midpoint( const QgsPoint &pt1, const QgsPoint &pt2 );
516 
530  static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fraction );
531 
548  static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction );
549 
562  static QgsPointXY interpolatePointOnLineByValue( double x1, double y1, double v1, double x2, double y2, double v2, double value );
563 
571  static double gradient( const QgsPoint &pt1, const QgsPoint &pt2 );
572 
582  static void coefficients( const QgsPoint &pt1, const QgsPoint &pt2,
583  double &a SIP_OUT, double &b SIP_OUT, double &c SIP_OUT );
584 
592  static QgsLineString perpendicularSegment( const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2 );
593 
594 
603  static double skewLinesDistance( const QgsVector3D &P1, const QgsVector3D &P12,
604  const QgsVector3D &P2, const QgsVector3D &P22 );
605 
616  static bool skewLinesProjection( const QgsVector3D &P1, const QgsVector3D &P12,
617  const QgsVector3D &P2, const QgsVector3D &P22,
618  QgsVector3D &X1 SIP_OUT,
619  double epsilon = 0.0001 );
620 
655  static bool linesIntersection3D( const QgsVector3D &La1, const QgsVector3D &La2,
656  const QgsVector3D &Lb1, const QgsVector3D &Lb2,
657  QgsVector3D &intersection SIP_OUT );
658 
669  static bool setZValueFromPoints( const QgsPointSequence &points, QgsPoint &point );
670 
672  enum ComponentType SIP_SKIP
673  {
676  Part
677  };
678 
680  template<class T> static double closestSegmentFromComponents( T &container, ComponentType ctype, const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf, double epsilon ) SIP_SKIP
681  {
682  double minDist = std::numeric_limits<double>::max();
683  double minDistSegmentX = 0.0, minDistSegmentY = 0.0;
684  QgsVertexId minDistVertexAfter;
685  int minDistLeftOf = 0;
686  double sqrDist = 0.0;
687  int vertexOffset = 0;
688  int ringOffset = 0;
689  int partOffset = 0;
690 
691  for ( int i = 0; i < container.size(); ++i )
692  {
693  sqrDist = container.at( i )->closestSegment( pt, segmentPt, vertexAfter, leftOf, epsilon );
694  if ( sqrDist >= 0 && sqrDist < minDist )
695  {
696  minDist = sqrDist;
697  minDistSegmentX = segmentPt.x();
698  minDistSegmentY = segmentPt.y();
699  minDistVertexAfter = vertexAfter;
700  minDistVertexAfter.vertex = vertexAfter.vertex + vertexOffset;
701  minDistVertexAfter.part = vertexAfter.part + partOffset;
702  minDistVertexAfter.ring = vertexAfter.ring + ringOffset;
703  if ( leftOf )
704  {
705  minDistLeftOf = *leftOf;
706  }
707  }
708 
709  if ( ctype == Vertex )
710  {
711  //-1 because compoundcurve counts duplicated vertices of neighbour curves as one node
712  vertexOffset += container.at( i )->nCoordinates() - 1;
713  }
714  else if ( ctype == Ring )
715  {
716  ringOffset += 1;
717  }
718  else if ( ctype == Part )
719  {
720  partOffset += 1;
721  }
722  }
723 
724  if ( minDist == std::numeric_limits<double>::max() )
725  return -1; // error: no segments
726 
727  segmentPt.setX( minDistSegmentX );
728  segmentPt.setY( minDistSegmentY );
729  vertexAfter = minDistVertexAfter;
730  if ( leftOf )
731  {
732  *leftOf = minDistLeftOf;
733  }
734  return minDist;
735  }
736 };
737 
738 #endif // QGSGEOMETRYUTILS_H
3 Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double preci...
Definition: qgsvector3d.h:31
int precision
double y
Definition: qgspoint.h:42
Handles storage of information regarding WKB types and their properties.
Definition: qgswkbtypes.h:40
A class to represent a 2D point.
Definition: qgspointxy.h:43
bool ANALYSIS_EXPORT lineIntersection(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Returns true, if line1 (p1 to p2) and line2 (p3 to p4) intersect. If the lines have an endpoint in co...
Definition: MathUtils.cpp:311
#define SIP_INOUT
Definition: qgis_sip.h:64
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
Definition: MathUtils.cpp:786
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
Contains various geometry utility functions.
Utility class for identifying a unique vertex within a geometry.
#define SIP_SKIP
Definition: qgis_sip.h:119
#define SIP_FACTORY
Definition: qgis_sip.h:69
Abstract base class for all geometries.
Point geometry type, with support for z-dimension and m-values.
Definition: qgspoint.h:37
A class to represent a vector.
Definition: qgsvector.h:29
QVector< QgsPoint > QgsPointSequence
#define SIP_OUT
Definition: qgis_sip.h:51
Line string geometry type, with support for z-dimension and m-values.
Definition: qgslinestring.h:43
static QgsPoint projectPointOnSegment(const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2)
Project the point on a segment.
double ANALYSIS_EXPORT leftOf(const QgsPoint &thepoint, const QgsPoint *p1, const QgsPoint *p2)
Returns whether &#39;thepoint&#39; is left or right of the line from &#39;p1&#39; to &#39;p2&#39;. Negativ values mean left a...
Definition: MathUtils.cpp:292
static double closestSegmentFromComponents(T &container, ComponentType ctype, const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf, double epsilon)
#define SIP_PYALTERNATIVETYPE(type)
Definition: qgis_sip.h:129
double x
Definition: qgspoint.h:41