QGIS API Documentation 3.99.0-Master (d270888f95f)
Loading...
Searching...
No Matches
pointset.h
Go to the documentation of this file.
1/*
2 * libpal - Automated Placement of Labels Library
3 *
4 * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5 * University of Applied Sciences, Western Switzerland
6 * http://www.hes-so.ch
7 *
8 * Contact:
9 * maxence.laurent <at> heig-vd <dot> ch
10 * or
11 * eric.taillard <at> heig-vd <dot> ch
12 *
13 * This file is part of libpal.
14 *
15 * libpal is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation, either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * libpal is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27 *
28 */
29
30#ifndef POINTSET_H
31#define POINTSET_H
32
33#define SIP_NO_FILE
34
35
36#include <cfloat>
37#include <cmath>
38#include <geos_c.h>
39#include <memory>
40#include <vector>
41
42#include "qgis_core.h"
43#include "qgsgeos.h"
44#include "qgsrectangle.h"
45
46namespace pal
47{
48
49 class Pal;
50 class Projection;
51 class LabelPosition;
52
53 class PointSet;
54
59 {
60 double x[4] = {0, 0, 0, 0};
61 double y[4] = {0, 0, 0, 0};
62
63 double alpha = 0;
64
65 double width = 0;
66 double length = 0;
67 };
68
75 class CORE_EXPORT PointSet
76 {
77 friend class FeaturePart;
78 friend class LabelPosition;
79 friend class CostCalculator;
81 friend class Layer;
82
83 public:
84 PointSet();
85 PointSet( int nbPoints, double *x, double *y );
86 virtual ~PointSet();
87
91 std::unique_ptr< PointSet > extractShape( int nbPtSh, int imin, int imax, int fps, int fpe, double fptx, double fpty );
92
96 std::unique_ptr< PointSet > clone() const;
97
104 bool containsPoint( double x, double y ) const;
105
115 bool containsLabelCandidate( double x, double y, double width, double height, double alpha = 0 ) const;
116
121
127 static QVector<PointSet *> splitPolygons( PointSet *inputShape, double labelWidth, double labelHeight );
128
137 void extendLineByDistance( double startDistance, double endDistance, double smoothDistance );
138
142 void offsetCurveByDistance( double distance );
143
153 double minDistanceToPoint( double px, double py, double *rx = nullptr, double *ry = nullptr ) const;
154
155 void getCentroid( double &px, double &py, bool forceInside = false ) const;
156
157 int getGeosType() const { return type; }
158
163 {
164 return QgsRectangle( xmin, ymin, xmax, ymax );
165 }
166
171 bool boundingBoxIntersects( const PointSet *other ) const;
172
174 PointSet *getHoleOf() const { return holeOf; }
175
176 int getNumPoints() const { return nbPoints; }
177
186 void getPointByDistance( double *d, double *ad, double dl, double *px, double *py ) const;
187
191 geos::unique_ptr interpolatePoint( double distance ) const;
192
196 double lineLocatePoint( const GEOSGeometry *point ) const;
197
201 const GEOSGeometry *geos() const;
202
206 double length() const;
207
211 double area() const;
212
216 bool isClosed() const;
217
221 QString toWkt() const;
222
226 std::tuple< std::vector< double >, double > edgeDistances() const;
227
229 std::vector< double > x;
230 std::vector< double > y; // points order is counterclockwise
231
232 protected:
233 mutable GEOSGeometry *mGeos = nullptr;
234 mutable bool mOwnsGeom = false;
235
236 std::vector< int > convexHull;
237
238 int type;
239
240 PointSet *holeOf = nullptr;
241 PointSet *parent = nullptr;
242
243 mutable double mArea = -1;
244 mutable double mLength = -1;
245
246
247 PointSet( double x, double y );
248
249 PointSet( const PointSet &ps );
250
251 void deleteCoords();
252 void createGeosGeom() const;
253 const GEOSPreparedGeometry *preparedGeom() const;
254
255 void invalidateGeos() const;
256
257 double xmin = std::numeric_limits<double>::max();
258 double xmax = std::numeric_limits<double>::lowest();
259 double ymin = std::numeric_limits<double>::max();
260 double ymax = std::numeric_limits<double>::lowest();
261
262 private:
263
264 mutable const GEOSPreparedGeometry *mGeosPreparedBoundary = nullptr;
265 mutable const GEOSPreparedGeometry *mPreparedGeom = nullptr;
266
267 mutable GEOSGeometry *mMultipartGeos = nullptr;
268 mutable const GEOSPreparedGeometry *mMultipartPreparedGeos = nullptr;
269
270 PointSet &operator= ( const PointSet & ) = delete;
271
272 };
273
274} // namespace pal
275
276#endif
277
A rectangle specified with double values.
The underlying raw pal geometry class.
Definition pointset.h:76
std::unique_ptr< PointSet > clone() const
Returns a copy of the point set.
Definition pointset.cpp:268
friend class LabelPosition
Definition pointset.h:78
bool containsLabelCandidate(double x, double y, double width, double height, double alpha=0) const
Tests whether a possible label candidate will fit completely within the shape.
Definition pointset.cpp:292
void deleteCoords()
Definition pointset.cpp:235
void extendLineByDistance(double startDistance, double endDistance, double smoothDistance)
Extends linestrings by the specified amount at the start and end of the line, by extending the existi...
Definition pointset.cpp:634
double ymax
Definition pointset.h:260
double ymin
Definition pointset.h:259
PointSet * getHoleOf() const
Returns nullptr if this isn't a hole. Otherwise returns pointer to parent pointset.
Definition pointset.h:174
PointSet * holeOf
Definition pointset.h:240
static QVector< PointSet * > splitPolygons(PointSet *inputShape, double labelWidth, double labelHeight)
Split a polygon using some random logic into some other polygons.
Definition pointset.cpp:297
void createGeosGeom() const
Definition pointset.cpp:102
std::vector< double > y
Definition pointset.h:230
friend class CostCalculator
Definition pointset.h:79
friend class PolygonCostCalculator
Definition pointset.h:80
void getCentroid(double &px, double &py, bool forceInside=false) const
Definition pointset.cpp:920
OrientedConvexHullBoundingBox computeConvexHullOrientedBoundingBox(bool &ok) const
Computes an oriented bounding box for the shape's convex hull.
Definition pointset.cpp:721
friend class Layer
Definition pointset.h:81
QgsRectangle boundingBox() const
Returns the point set bounding box.
Definition pointset.h:162
std::vector< double > x
Definition pointset.h:229
void offsetCurveByDistance(double distance)
Offsets linestrings by the specified distance.
Definition pointset.cpp:548
std::vector< int > convexHull
Definition pointset.h:236
const GEOSPreparedGeometry * preparedGeom() const
Definition pointset.cpp:157
GEOSGeometry * mGeos
Definition pointset.h:233
double xmin
Definition pointset.h:257
int getGeosType() const
Definition pointset.h:157
void invalidateGeos() const
Definition pointset.cpp:169
double minDistanceToPoint(double px, double py, double *rx=nullptr, double *ry=nullptr) const
Returns the squared minimum distance between the point set geometry and the point (px,...
Definition pointset.cpp:863
friend class FeaturePart
Definition pointset.h:77
double xmax
Definition pointset.h:258
std::unique_ptr< PointSet > extractShape(int nbPtSh, int imin, int imax, int fps, int fpe, double fptx, double fpty)
Does... something completely inscrutable.
Definition pointset.cpp:241
bool containsPoint(double x, double y) const
Tests whether point set contains a specified point.
Definition pointset.cpp:273
PointSet * parent
Definition pointset.h:241
double mLength
Definition pointset.h:244
double mArea
Definition pointset.h:243
int getNumPoints() const
Definition pointset.h:176
Contains geos related utilities and functions.
Definition qgsgeos.h:77
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Definition qgsgeos.h:114
Represents the minimum area, oriented bounding box surrounding a convex hull.
Definition pointset.h:59
struct GEOSGeom_t GEOSGeometry
Definition util.h:41