QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgssimplifymethod.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgssimplifymethod.cpp
3  ---------------------
4  begin : December 2013
5  copyright : (C) 2013 by Matthias Kuhn / Alvaro Huarte
6  email :
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 #include "qgssimplifymethod.h"
17 #include "qgslogger.h"
18 #include "qgsgeometrysimplifier.h"
20 
21 
23 {
25 }
26 
27 void QgsSimplifyMethod::setTolerance( double tolerance )
28 {
30 }
31 
32 void QgsSimplifyMethod::setForceLocalOptimization( bool localOptimization )
33 {
34  mForceLocalOptimization = localOptimization;
35 }
36 
38 {
40 
41  // returns a geometry simplifier according to specified method
43  {
45  return new QgsMapToPixelSimplifier( simplifyFlags, simplifyMethod.tolerance(), QgsMapToPixelSimplifier::Distance );
46  }
48  {
49  return new QgsTopologyPreservingSimplifier( simplifyMethod.tolerance() );
50  }
51  else
52  {
53  QgsDebugMsg( QStringLiteral( "Simplification method type (%1) is not recognised" ).arg( methodType ) );
54  return nullptr;
55  }
56 }
QgsSimplifyMethod
This class contains information about how to simplify geometries fetched from a QgsFeatureIterator.
Definition: qgssimplifymethod.h:29
QgsDebugMsg
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
QgsSimplifyMethod::mMethodType
MethodType mMethodType
Simplification method.
Definition: qgssimplifymethod.h:66
qgsgeometrysimplifier.h
QgsMapToPixelSimplifier::Distance
@ Distance
The simplification uses the distance between points to remove duplicate points.
Definition: qgsmaptopixelgeometrysimplifier.h:44
QgsSimplifyMethod::OptimizeForRendering
@ OptimizeForRendering
Simplify using the map2pixel data to optimize the rendering of geometries.
Definition: qgssimplifymethod.h:34
QgsAbstractGeometrySimplifier
Abstract base class for simplify geometries using a specific algorithm.
Definition: qgsgeometrysimplifier.h:33
QgsSimplifyMethod::setTolerance
void setTolerance(double tolerance)
Sets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
Definition: qgssimplifymethod.cpp:27
QgsSimplifyMethod::tolerance
double tolerance() const
Gets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
Definition: qgssimplifymethod.h:49
QgsMapToPixelSimplifier::SimplifyEnvelope
@ SimplifyEnvelope
The geometries can be fully simplified by its BoundingBox.
Definition: qgsmaptopixelgeometrysimplifier.h:58
QgsMapToPixelSimplifier::SimplifyGeometry
@ SimplifyGeometry
The geometries can be simplified using the current map2pixel context state.
Definition: qgsmaptopixelgeometrysimplifier.h:57
QgsSimplifyMethod::mForceLocalOptimization
bool mForceLocalOptimization
Simplification executes after fetch the geometries from provider, otherwise it executes,...
Definition: qgssimplifymethod.h:72
QgsSimplifyMethod::setForceLocalOptimization
void setForceLocalOptimization(bool localOptimization)
Sets whether the simplification executes after fetch the geometries from provider,...
Definition: qgssimplifymethod.cpp:32
QgsMapToPixelSimplifier
Implementation of GeometrySimplifier using the "MapToPixel" algorithm.
Definition: qgsmaptopixelgeometrysimplifier.h:39
QgsTopologyPreservingSimplifier
Implementation of GeometrySimplifier using the Douglas-Peucker algorithm.
Definition: qgsgeometrysimplifier.h:58
QgsSimplifyMethod::methodType
MethodType methodType() const
Gets the simplification type.
Definition: qgssimplifymethod.h:44
QgsSimplifyMethod::createGeometrySimplifier
static QgsAbstractGeometrySimplifier * createGeometrySimplifier(const QgsSimplifyMethod &simplifyMethod)
Creates a geometry simplifier according to specified method.
Definition: qgssimplifymethod.cpp:37
qgsmaptopixelgeometrysimplifier.h
QgsSimplifyMethod::setMethodType
void setMethodType(MethodType methodType)
Sets the simplification type.
Definition: qgssimplifymethod.cpp:22
QgsSimplifyMethod::MethodType
MethodType
Definition: qgssimplifymethod.h:32
QgsSimplifyMethod::PreserveTopology
@ PreserveTopology
Simplify using the Douglas-Peucker algorithm ensuring that the result is a valid geometry.
Definition: qgssimplifymethod.h:35
qgslogger.h
qgssimplifymethod.h
QgsSimplifyMethod::mTolerance
double mTolerance
Simplification tolerance, it represents the maximum distance between two coordinates which can be con...
Definition: qgssimplifymethod.h:68