GEOS 3.6.2
LineMergeGraph.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2011 Sandro Santilli <strk@keybit.net>
7 * Copyright (C) 2006 Refractions Research Inc.
8 * Copyright (C) 2001-2002 Vivid Solutions Inc.
9 *
10 * This is free software; you can redistribute and/or modify it under
11 * the terms of the GNU Lesser General Public Licence as published
12 * by the Free Software Foundation.
13 * See the COPYING file for more information.
14 *
15 **********************************************************************
16 *
17 * Last port: operation/linemerge/LineMergeGraph.java r378 (JTS-1.12)
18 *
19 **********************************************************************/
20
21#ifndef GEOS_OP_LINEMERGE_LINEMERGEGRAPH_H
22#define GEOS_OP_LINEMERGE_LINEMERGEGRAPH_H
23
24#include <geos/export.h>
25#include <geos/planargraph/PlanarGraph.h> // for inheritance
26
27#include <vector>
28
29#ifdef _MSC_VER
30#pragma warning(push)
31#pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
32#endif
33
34// Forward declarations
35namespace geos {
36 namespace geom {
37 class LineString;
38 class Coordinate;
39 }
40 namespace planargraph {
41 class Node;
42 class Edge;
43 class DirectedEdge;
44 }
45}
46
47
48namespace geos {
49namespace operation { // geos::operation
50namespace linemerge { // geos::operation::linemerge
51
60
61private:
62
63 planargraph::Node* getNode(const geom::Coordinate &coordinate);
64
65 std::vector<planargraph::Node*> newNodes;
66
67 std::vector<planargraph::Edge*> newEdges;
68
69 std::vector<planargraph::DirectedEdge*> newDirEdges;
70
71public:
72
81 void addEdge(const geom::LineString *lineString);
82
84};
85} // namespace geos::operation::linemerge
86} // namespace geos::operation
87} // namespace geos
88
89#ifdef _MSC_VER
90#pragma warning(pop)
91#endif
92
93#endif // GEOS_OP_LINEMERGE_LINEMERGEGRAPH_H
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:60
Definition LineString.h:70
A planar graph of edges that is analyzed to sew the edges together.
Definition LineMergeGraph.h:59
void addEdge(const geom::LineString *lineString)
Adds an Edge, DirectedEdges, and Nodes for the given LineString representation of an edge.
Represents a directed edge in a PlanarGraph.
Definition planargraph/DirectedEdge.h:46
Represents an undirected edge of a PlanarGraph.
Definition planargraph/Edge.h:54
A node in a PlanarGraph is a location where 0 or more Edge meet.
Definition planargraph/Node.h:45
Represents a directed graph which is embeddable in a planar surface.
Definition planargraph/PlanarGraph.h:60
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Line merging package.
Definition EdgeString.h:40
Provides classes for implementing operations on geometries.
Definition IndexedNestedRingTester.h:40
Contains classes to implement a planar graph data structure.
Definition LineMergeDirectedEdge.h:32
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25