QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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.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 
212  static QgsPoint projectPointOnSegment( const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2 )
213  {
214  double nx = s2.y() - s1.y();
215  double ny = -( s2.x() - s1.x() );
216  double t = ( p.x() * ny - p.y() * nx - s1.x() * ny + s1.y() * nx ) / ( ( s2.x() - s1.x() ) * ny - ( s2.y() - s1.y() ) * nx );
217  return t < 0. ? s1 : t > 1. ? s2 : QgsPoint( s1.x() + ( s2.x() - s1.x() ) * t, s1.y() + ( s2.y() - s1.y() ) * t );
218  }
219 
222  {
223  int segment1;
224  int segment2;
226  };
227 
238  static QVector<SelfIntersection> selfIntersections( const QgsAbstractGeometry *geom, int part, int ring, double tolerance ) SIP_SKIP;
239 
247  static int leftOfLine( double x, double y, double x1, double y1, double x2, double y2 );
248 
252  static QgsPoint pointOnLineWithDistance( const QgsPoint &startPoint, const QgsPoint &directionPoint, double distance );
253 
263  static void pointOnLineWithDistance( double x1, double y1, double x2, double y2, double distance, double &x, double &y,
264  double *z1 = nullptr, double *z2 = nullptr, double *z = nullptr,
265  double *m1 = nullptr, double *m2 = nullptr, double *m = nullptr ) SIP_SKIP;
266 
275  static QgsPoint interpolatePointOnArc( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double distance );
276 
278  static double ccwAngle( double dy, double dx );
279 
281  static void circleCenterRadius( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double &radius SIP_OUT,
282  double &centerX SIP_OUT, double &centerY SIP_OUT );
283 
290  static bool circleClockwise( double angle1, double angle2, double angle3 );
291 
293  static bool circleAngleBetween( double angle, double angle1, double angle2, bool clockwise );
294 
299  static bool angleOnCircle( double angle, double angle1, double angle2, double angle3 );
300 
302  static double circleLength( double x1, double y1, double x2, double y2, double x3, double y3 );
303 
305  static double sweepAngle( double centerX, double centerY, double x1, double y1, double x2, double y2, double x3, double y3 );
306 
313  static bool segmentMidPoint( const QgsPoint &p1, const QgsPoint &p2, QgsPoint &result SIP_OUT, double radius, const QgsPoint &mousePos );
314 
326  static QgsPoint segmentMidPointFromCenter( const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &center, bool useShortestArc = true );
327 
329  static double circleTangentDirection( const QgsPoint &tangentPoint, const QgsPoint &cp1, const QgsPoint &cp2, const QgsPoint &cp3 );
330 
335  static void segmentizeArc( const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &p3,
336  QgsPointSequence SIP_PYALTERNATIVETYPE( QVector<QgsPoint> ) &points SIP_OUT, double tolerance = M_PI_2 / 90,
337  QgsAbstractGeometry::SegmentationToleranceType toleranceType = QgsAbstractGeometry::MaximumAngle,
338  bool hasZ = false, bool hasM = false );
339 
345  static int segmentSide( const QgsPoint &pt1, const QgsPoint &pt3, const QgsPoint &pt2 );
346 
351  static double interpolateArcValue( double angle, double a1, double a2, double a3, double zm1, double zm2, double zm3 );
352 
357  static QgsPointSequence pointsFromWKT( const QString &wktCoordinateList, bool is3D, bool isMeasure ) SIP_SKIP;
358 
363  static void pointsToWKB( QgsWkbPtr &wkb, const QgsPointSequence &points, bool is3D, bool isMeasure ) SIP_SKIP;
364 
369  static QString pointsToWKT( const QgsPointSequence &points, int precision, bool is3D, bool isMeasure ) SIP_SKIP;
370 
375  static QDomElement pointsToGML2( const QgsPointSequence &points, QDomDocument &doc, int precision, const QString &ns, QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) SIP_SKIP;
376 
381  static QDomElement pointsToGML3( const QgsPointSequence &points, QDomDocument &doc, int precision, const QString &ns, bool is3D, QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) SIP_SKIP;
382 
387  static QString pointsToJSON( const QgsPointSequence &points, int precision ) SIP_SKIP;
388 
394  static double normalizedAngle( double angle );
395 
404  static double lineAngle( double x1, double y1, double x2, double y2 );
405 
417  static double angleBetweenThreePoints( double x1, double y1, double x2, double y2,
418  double x3, double y3 );
419 
429  static double linePerpendicularAngle( double x1, double y1, double x2, double y2 );
430 
435  static double averageAngle( double x1, double y1, double x2, double y2, double x3, double y3 );
436 
443  static double averageAngle( double a1, double a2 );
444 
449  static QPair<QgsWkbTypes::Type, QString> wktReadBlock( const QString &wkt ) SIP_SKIP;
450 
458  static QStringList wktGetChildBlocks( const QString &wkt, const QString &defaultType = QString() ) SIP_SKIP;
459 
481  static QgsPoint midpoint( const QgsPoint &pt1, const QgsPoint &pt2 );
482 
496  static QgsPointXY interpolatePointOnLine( double x1, double y1, double x2, double y2, double fraction );
497 
514  static QgsPoint interpolatePointOnLine( const QgsPoint &p1, const QgsPoint &p2, double fraction );
515 
528  static QgsPointXY interpolatePointOnLineByValue( double x1, double y1, double v1, double x2, double y2, double v2, double value );
529 
537  static double gradient( const QgsPoint &pt1, const QgsPoint &pt2 );
538 
548  static void coefficients( const QgsPoint &pt1, const QgsPoint &pt2,
549  double &a SIP_OUT, double &b SIP_OUT, double &c SIP_OUT );
550 
558  static QgsLineString perpendicularSegment( const QgsPoint &p, const QgsPoint &s1, const QgsPoint &s2 );
559 
560 
569  static double skewLinesDistance( const QgsVector3D &P1, const QgsVector3D &P12,
570  const QgsVector3D &P2, const QgsVector3D &P22 );
571 
582  static bool skewLinesProjection( const QgsVector3D &P1, const QgsVector3D &P12,
583  const QgsVector3D &P2, const QgsVector3D &P22,
584  QgsVector3D &X1 SIP_OUT,
585  double epsilon = 0.0001 );
586 
621  static bool linesIntersection3D( const QgsVector3D &La1, const QgsVector3D &La2,
622  const QgsVector3D &Lb1, const QgsVector3D &Lb2,
623  QgsVector3D &intersection SIP_OUT );
624 
635  static bool setZValueFromPoints( const QgsPointSequence &points, QgsPoint &point );
636 
638  enum ComponentType SIP_SKIP
639  {
642  Part
643  };
644 
646  template<class T> static double closestSegmentFromComponents( T &container, ComponentType ctype, const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf, double epsilon ) SIP_SKIP
647  {
648  double minDist = std::numeric_limits<double>::max();
649  double minDistSegmentX = 0.0, minDistSegmentY = 0.0;
650  QgsVertexId minDistVertexAfter;
651  int minDistLeftOf = 0;
652  double sqrDist = 0.0;
653  int vertexOffset = 0;
654  int ringOffset = 0;
655  int partOffset = 0;
656 
657  for ( int i = 0; i < container.size(); ++i )
658  {
659  sqrDist = container.at( i )->closestSegment( pt, segmentPt, vertexAfter, leftOf, epsilon );
660  if ( sqrDist >= 0 && sqrDist < minDist )
661  {
662  minDist = sqrDist;
663  minDistSegmentX = segmentPt.x();
664  minDistSegmentY = segmentPt.y();
665  minDistVertexAfter = vertexAfter;
666  minDistVertexAfter.vertex = vertexAfter.vertex + vertexOffset;
667  minDistVertexAfter.part = vertexAfter.part + partOffset;
668  minDistVertexAfter.ring = vertexAfter.ring + ringOffset;
669  if ( leftOf )
670  {
671  minDistLeftOf = *leftOf;
672  }
673  }
674 
675  if ( ctype == Vertex )
676  {
677  //-1 because compoundcurve counts duplicated vertices of neighbour curves as one node
678  vertexOffset += container.at( i )->nCoordinates() - 1;
679  }
680  else if ( ctype == Ring )
681  {
682  ringOffset += 1;
683  }
684  else if ( ctype == Part )
685  {
686  partOffset += 1;
687  }
688  }
689 
690  if ( minDist == std::numeric_limits<double>::max() )
691  return -1; // error: no segments
692 
693  segmentPt.setX( minDistSegmentX );
694  segmentPt.setY( minDistSegmentY );
695  vertexAfter = minDistVertexAfter;
696  if ( leftOf )
697  {
698  *leftOf = minDistLeftOf;
699  }
700  return minDist;
701  }
702 };
703 
704 #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:28
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