GEOS  3.13.0dev
Public Member Functions | Static Public Attributes | List of all members
geos::operation::distance::GeometryLocation Class Reference

Represents the location of a point on a Geometry. More...

#include <GeometryLocation.h>

Public Member Functions

 GeometryLocation (const geom::Geometry *component, std::size_t segIndex, const geom::CoordinateXY &pt)
 Constructs a GeometryLocation specifying a point on a geometry, as well as the segment that the point is on (or INSIDE_AREA if the point is not on a segment). More...
 
 GeometryLocation (const geom::Geometry *component, const geom::CoordinateXY &pt)
 Constructs a GeometryLocation specifying a point inside an area geometry. More...
 
const geom::GeometrygetGeometryComponent ()
 
std::size_t getSegmentIndex ()
 
geom::CoordinateXY & getCoordinate ()
 
bool isInsideArea ()
 Tests whether this location represents a point inside an area geometry.
 
std::string toString ()
 

Static Public Attributes

static const int INSIDE_AREA = -1
 A Special value of segmentIndex used for locations inside area geometries. More...
 

Detailed Description

Represents the location of a point on a Geometry.

Maintains both the actual point location (which may not be exact, if the point is not a vertex) as well as information about the component and segment index where the point occurs. Locations inside area Geometrys will not have an associated segment index, so in this case the segment index will have the sentinel value of INSIDE_AREA.

Constructor & Destructor Documentation

◆ GeometryLocation() [1/2]

geos::operation::distance::GeometryLocation::GeometryLocation ( const geom::Geometry component,
std::size_t  segIndex,
const geom::CoordinateXY &  pt 
)

Constructs a GeometryLocation specifying a point on a geometry, as well as the segment that the point is on (or INSIDE_AREA if the point is not on a segment).

Parameters
componentthe component of the geometry containing the point
segIndexthe segment index of the location, or INSIDE_AREA
ptthe coordinate of the location

◆ GeometryLocation() [2/2]

geos::operation::distance::GeometryLocation::GeometryLocation ( const geom::Geometry component,
const geom::CoordinateXY &  pt 
)

Constructs a GeometryLocation specifying a point inside an area geometry.

Parameters
componentthe component of the geometry containing the point
ptthe coordinate of the location

Member Function Documentation

◆ getCoordinate()

geom::CoordinateXY& geos::operation::distance::GeometryLocation::getCoordinate ( )

Returns the geom::Coordinate of this location.

◆ getGeometryComponent()

const geom::Geometry* geos::operation::distance::GeometryLocation::getGeometryComponent ( )

Returns the geometry component on (or in) which this location occurs.

◆ getSegmentIndex()

std::size_t geos::operation::distance::GeometryLocation::getSegmentIndex ( )

Returns the segment index for this location.

If the location is inside an area, the index will have the value INSIDE_AREA;

Returns
the segment index for the location, or INSIDE_AREA

Member Data Documentation

◆ INSIDE_AREA

const int geos::operation::distance::GeometryLocation::INSIDE_AREA = -1
static

A Special value of segmentIndex used for locations inside area geometries.

These locations are not located on a segment, and thus do not have an associated segment index.


The documentation for this class was generated from the following file: