QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsgraphbuilder.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgraphbuilder.h
3 --------------------------------------
4 Date : 2010-10-25
5 Copyright : (C) 2010 by Yakushev Sergey
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 QGSGRAPHBUILDER_H
17#define QGSGRAPHBUILDER_H
18
20#include "qgis_sip.h"
21
22#include "qgsspatialindex.h"
23#include "qgis_analysis.h"
24
25class QgsDistanceArea;
27class QgsGraph;
28
36{
37 public:
38
42 QgsGraphBuilder( const QgsCoordinateReferenceSystem &crs, bool otfEnabled = true, double topologyTolerance = 0.0, const QString &ellipsoidID = "WGS84" );
43
44 ~QgsGraphBuilder() override;
45
46 /*
47 * MANDATORY BUILDER PROPERTY DECLARATION
48 */
49 void addVertex( int id, const QgsPointXY &pt ) override;
50
51 void addEdge( int pt1id, const QgsPointXY &pt1, int pt2id, const QgsPointXY &pt2, const QVector< QVariant > &prop ) override;
52
60 QgsGraph graph() const;
61
68 QgsGraph *takeGraph() SIP_FACTORY;
69
70 private:
71
72 std::unique_ptr< QgsGraph > mGraph;
73
74 QgsGraphBuilder( const QgsGraphBuilder & ) = delete;
75 QgsGraphBuilder &operator=( const QgsGraphBuilder & ) = delete;
76};
77
78// clazy:excludeall=qstring-allocations
79
80#endif // QGSGRAPHBUILDER_H
This class represents a coordinate reference system (CRS).
Class for doing transforms between two map coordinate systems.
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
Determine interface for creating a graph.
virtual void addVertex(int id, const QgsPointXY &pt)
Add vertex to the graph.
virtual void addEdge(int pt1id, const QgsPointXY &pt1, int pt2id, const QgsPointXY &pt2, const QVector< QVariant > &strategies)
Add edge to the graph.
This class used for making the QgsGraph object.
~QgsGraphBuilder() override
Mathematical graph representation.
Definition: qgsgraph.h:140
A class to represent a 2D point.
Definition: qgspointxy.h:60
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Definition: qgsgeos.h:73
#define SIP_FACTORY
Definition: qgis_sip.h:76
#define SIP_NODEFAULTCTORS
Definition: qgis_sip.h:101
const QgsCoordinateReferenceSystem & crs