GEOS 3.6.2
LocationIndexOfLine.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2005-2006 Refractions Research Inc.
7 * Copyright (C) 2001-2002 Vivid Solutions Inc.
8 *
9 * This is free software; you can redistribute and/or modify it under
10 * the terms of the GNU Lesser General Public Licence as published
11 * by the Free Software Foundation.
12 * See the COPYING file for more information.
13 *
14 **********************************************************************
15 *
16 * Last port: linearref/LocationIndexOfLine.java r731
17 *
18 **********************************************************************/
19
20#ifndef GEOS_LINEARREF_LOCATIONINDEXOFLINE_H
21#define GEOS_LINEARREF_LOCATIONINDEXOFLINE_H
22
23#include <geos/geom/Coordinate.h>
24#include <geos/geom/Geometry.h>
25#include <geos/linearref/LinearLocation.h>
26
27namespace geos
28{
29namespace linearref // geos::linearref
30{
31
41class LocationIndexOfLine
42{
48private:
49 const geom::Geometry* linearGeom;
50
51public:
52
66 static LinearLocation* indicesOf(const geom::Geometry* linearGeom, const geom::Geometry* subLine);
67
68 LocationIndexOfLine(const geom::Geometry* linearGeom);
69
71 LinearLocation* indicesOf(const geom::Geometry* subLine) const;
72};
73}
74}
75
76#endif
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:167
Represents a location along a LineString or MultiLineString.
Definition LinearLocation.h:44
LinearLocation * indicesOf(const geom::Geometry *subLine) const
Caller must take of releasing with delete[].
static LinearLocation * indicesOf(const geom::Geometry *linearGeom, const geom::Geometry *subLine)
Determines the location of a subline along a linear Geometry.
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25