QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
qgsgeometryanalyzer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometryanalyzer.h - QGIS Tools for vector geometry analysis
3  -------------------
4  begin : 19 March 2009
5  copyright : (C) Carson Farmer
6  email : [email protected]
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSGEOMETRYANALYZERH
19 #define QGSGEOMETRYANALYZERH
20 
21 #include "qgsvectorlayer.h"
22 #include "qgsfield.h"
23 #include "qgsfeature.h"
24 #include "qgsgeometry.h"
25 #include "qgsdistancearea.h"
26 
28 class QProgressDialog;
29 
30 
35 class ANALYSIS_EXPORT QgsGeometryAnalyzer
36 {
37  public:
38 
47  bool simplify( QgsVectorLayer* layer, const QString& shapefileName, double tolerance,
48  bool onlySelectedFeatures = false, QProgressDialog* p = nullptr );
49 
57  bool centroids( QgsVectorLayer* layer, const QString& shapefileName,
58  bool onlySelectedFeatures = false, QProgressDialog* p = nullptr );
59 
66  bool extent( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
67 
77  bool buffer( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance,
78  bool onlySelectedFeatures = false, bool dissolve = false, int bufferDistanceField = -1, QProgressDialog* p = nullptr );
79 
88  bool convexHull( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
89  int uniqueIdField = -1, QProgressDialog* p = nullptr );
90 
99  bool dissolve( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
100  int uniqueIdField = -1, QProgressDialog* p = nullptr );
101 
119  bool eventLayer( QgsVectorLayer* lineLayer, QgsVectorLayer* eventLayer, int lineField, int eventField, QgsFeatureIds &unlocatedFeatureIds, const QString& outputLayer,
120  const QString& outputFormat, int locationField1, int locationField2 = -1, int offsetField = -1, double offsetScale = 1.0,
121  bool forceSingleGeometry = false, QgsVectorDataProvider* memoryProvider = nullptr, QProgressDialog* p = nullptr );
122 
124  QgsGeometry* locateBetweenMeasures( double fromMeasure, double toMeasure, const QgsGeometry *lineGeom );
128  QgsGeometry* locateAlongMeasure( double measure, const QgsGeometry* lineGeom );
129 
130  private:
131 
132  QList<double> simpleMeasure( QgsGeometry* geometry );
133  double perimeterMeasure( QgsGeometry* geometry, QgsDistanceArea& measure );
135  void simplifyFeature( QgsFeature& f, QgsVectorFileWriter* vfw, double tolerance );
137  void centroidFeature( QgsFeature& f, QgsVectorFileWriter* vfw );
139  void bufferFeature( QgsFeature& f, int nProcessedFeatures, QgsVectorFileWriter* vfw, bool dissolve, QgsGeometry** dissolveGeometry,
140  double bufferDistance, int bufferDistanceField );
142  void convexFeature( QgsFeature& f, int nProcessedFeatures, QgsGeometry** dissolveGeometry );
144  void dissolveFeature( QgsFeature& f, int nProcessedFeatures, QgsGeometry** dissolveGeometry );
145 
146  //helper functions for event layer
147  void addEventLayerFeature( QgsFeature& feature, QgsGeometry* geom, QgsGeometry* lineGeom, QgsVectorFileWriter* fileWriter, QgsFeatureList& memoryFeatures, int offsetField = -1, double offsetScale = 1.0,
148  bool forceSingleType = false );
153  bool createOffsetGeometry( QgsGeometry* geom, QgsGeometry* lineGeom, double offset );
154  QgsPoint createPointOffset( double x, double y, double dist, QgsGeometry* lineGeom ) const;
155  QgsConstWkbPtr locateBetweenWkbString( QgsConstWkbPtr ptr, QgsMultiPolyline& result, double fromMeasure, double toMeasure );
156  QgsConstWkbPtr locateAlongWkbString( QgsConstWkbPtr ptr, QgsMultiPoint& result, double measure );
157  static bool clipSegmentByRange( double x1, double y1, double m1, double x2, double y2, double m2, double range1, double range2, QgsPoint& pt1, QgsPoint& pt2, bool& secondPointClipped );
158  static void locateAlongSegment( double x1, double y1, double m1, double x2, double y2, double m2, double measure, bool& pt1Ok, QgsPoint& pt1, bool& pt2Ok, QgsPoint& pt2 );
159 };
160 #endif //QGSVECTORANALYZER
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:76
A convenience class for writing vector files to disk.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:187
The QGis class provides vector geometry analysis functions.
A class to represent a point.
Definition: qgspoint.h:117
General purpose distance and area calculator.
This is the base class for vector data providers.
Represents a vector layer which manages a vector based data sets.