mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
58 lines
2.5 KiB
Plaintext
58 lines
2.5 KiB
Plaintext
class QgsMapToPixelSimplifier : QgsAbstractGeometrySimplifier
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgsmaptopixelgeometrysimplifier.h"
|
|
%End
|
|
public:
|
|
//! Types of simplification algorithms that can be used
|
|
enum SimplifyAlgorithm
|
|
{
|
|
Distance = 0, //!< The simplification uses the distance between points to remove duplicate points
|
|
SnapToGrid = 1, //!< The simplification uses a grid (similar to ST_SnapToGrid) to remove duplicate points
|
|
Visvalingam = 2, //!< The simplification gives each point in a line an importance weighting, so that least important points are removed first
|
|
};
|
|
|
|
//! Constructor
|
|
QgsMapToPixelSimplifier( int simplifyFlags, double tolerance, SimplifyAlgorithm simplifyAlgorithm = Distance );
|
|
virtual ~QgsMapToPixelSimplifier();
|
|
|
|
//! Applicable simplification flags
|
|
enum SimplifyFlag
|
|
{
|
|
NoFlags = 0, //!< No simplification can be applied
|
|
SimplifyGeometry = 1, //!< The geometries can be simplified using the current map2pixel context state
|
|
SimplifyEnvelope = 2, //!< The geometries can be fully simplified by its BoundingBox
|
|
};
|
|
|
|
protected:
|
|
|
|
//! Returns the squared 2D-distance of the vector defined by the two points specified
|
|
static float calculateLengthSquared2D( double x1, double y1, double x2, double y2 );
|
|
|
|
//! Returns whether the points belong to the same grid
|
|
static bool equalSnapToGrid( double x1, double y1, double x2, double y2, double gridOriginX, double gridOriginY, float gridInverseSizeXY );
|
|
|
|
public:
|
|
//! Gets the simplification hints of the vector layer managed
|
|
int simplifyFlags() const;
|
|
//! Sets the simplification hints of the vector layer managed
|
|
void setSimplifyFlags( int simplifyFlags );
|
|
|
|
//! Gets the local simplification algorithm of the vector layer managed
|
|
SimplifyAlgorithm simplifyAlgorithm() const;
|
|
//! Sets the local simplification algorithm of the vector layer managed
|
|
void setSimplifyAlgorithm( SimplifyAlgorithm simplifyAlgorithm );
|
|
|
|
//! Returns a simplified version the specified geometry
|
|
virtual QgsGeometry simplify( const QgsGeometry& geometry ) const;
|
|
|
|
//! Sets the tolerance of the vector layer managed
|
|
void setTolerance( double value );
|
|
|
|
// MapToPixel simplification helper methods
|
|
public:
|
|
|
|
//! Returns whether the envelope can be replaced by its BBOX when is applied the specified map2pixel context
|
|
static bool isGeneralizableByMapBoundingBox( const QgsRectangle& envelope, double map2pixelTol );
|
|
};
|