GEOS  3.9.1dev
Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | List of all members
geos::geom::LinearRing Class Reference

Models an OGC SFS LinearRing. A LinearRing is a LineString which is both closed and simple. More...

#include <LinearRing.h>

Inheritance diagram for geos::geom::LinearRing:
[legend]
Collaboration diagram for geos::geom::LinearRing:
[legend]

Public Member Functions

 LinearRing (const LinearRing &lr)
 
 LinearRing (CoordinateSequence *points, const GeometryFactory *newFactory)
 Constructs a LinearRing with the given points. More...
 
 LinearRing (CoordinateSequence::Ptr &&points, const GeometryFactory &newFactory)
 Hopefully cleaner version of the above. More...
 
std::unique_ptr< Geometryclone () const override
 Make a deep-copy of this Geometry. More...
 
 ~LinearRing () override=default
 
int getBoundaryDimension () const override
 Returns Dimension.FALSE, since by definition LinearRings do not have a boundary. More...
 
bool isClosed () const override
 
std::string getGeometryType () const override
 Return a string representation of this Geometry type. More...
 
GeometryTypeId getGeometryTypeId () const override
 Return an integer representation of this Geometry type. More...
 
void setPoints (const CoordinateSequence *cl)
 
std::unique_ptr< Geometryreverse () const override
 Computes a new geometry which has all component coordinate sequences in reverse order (opposite orientation) to this one. More...
 
- Public Member Functions inherited from geos::geom::LineString
 ~LineString () override
 
std::unique_ptr< Geometryclone () const override
 Creates and returns a full copy of this LineString object (including all coordinates contained by it) More...
 
std::unique_ptr< CoordinateSequencegetCoordinates () const override
 Returns this Geometry vertices. Caller takes ownership of the returned object. More...
 
const CoordinateSequencegetCoordinatesRO () const
 Returns a read-only pointer to internal CoordinateSequence. More...
 
virtual const CoordinategetCoordinateN (size_t n) const
 
Dimension::DimensionType getDimension () const override
 Returns line dimension (1) More...
 
int getBoundaryDimension () const override
 Returns Dimension::False for a closed LineString, 0 otherwise (LineString boundary is a MultiPoint) More...
 
uint8_t getCoordinateDimension () const override
 Returns coordinate dimension. More...
 
std::unique_ptr< GeometrygetBoundary () const override
 Returns a MultiPoint. Empty for closed LineString, a Point for each vertex otherwise. More...
 
bool isEmpty () const override
 Returns whether or not the set of points in this Geometry is empty. More...
 
std::size_t getNumPoints () const override
 Returns the count of this Geometrys vertices. More...
 
virtual std::unique_ptr< PointgetPointN (std::size_t n) const
 
virtual std::unique_ptr< PointgetStartPoint () const
 Return the start point of the LineString or NULL if this is an EMPTY LineString. More...
 
virtual std::unique_ptr< PointgetEndPoint () const
 Return the end point of the LineString or NULL if this is an EMPTY LineString. More...
 
virtual bool isRing () const
 
std::string getGeometryType () const override
 Return a string representation of this Geometry type. More...
 
GeometryTypeId getGeometryTypeId () const override
 Return an integer representation of this Geometry type. More...
 
virtual bool isCoordinate (Coordinate &pt) const
 
bool equalsExact (const Geometry *other, double tolerance=0) const override
 Returns true iff the two Geometrys are of the same type and their vertices corresponding by index are equal up to a specified tolerance. More...
 
void apply_rw (const CoordinateFilter *filter) override
 
void apply_ro (CoordinateFilter *filter) const override
 
void apply_rw (GeometryFilter *filter) override
 
void apply_ro (GeometryFilter *filter) const override
 
void apply_rw (GeometryComponentFilter *filter) override
 
void apply_ro (GeometryComponentFilter *filter) const override
 
void apply_rw (CoordinateSequenceFilter &filter) override
 
void apply_ro (CoordinateSequenceFilter &filter) const override
 
void normalize () override
 Normalizes a LineString. More...
 
int compareToSameClass (const Geometry *ls) const override
 
const CoordinategetCoordinate () const override
 Returns a vertex of this Geometry, or NULL if this is the empty geometry. More...
 
double getLength () const override
 Returns the length of this Geometry. More...
 
std::unique_ptr< Geometryreverse () const override
 
- Public Member Functions inherited from geos::geom::Geometry
virtual ~Geometry ()
 Destroy Geometry and all components. More...
 
const GeometryFactorygetFactory () const
 Gets the factory which contains the context in which this geometry was created. More...
 
void setUserData (void *newUserData)
 A simple scheme for applications to add their own custom data to a Geometry. An example use might be to add an object representing a Coordinate Reference System. More...
 
void * getUserData () const
 Gets the user data object for this geometry, if any. More...
 
virtual int getSRID () const
 Returns the ID of the Spatial Reference System used by the Geometry. More...
 
virtual void setSRID (int newSRID)
 Sets the ID of the Spatial Reference System used by the Geometry. More...
 
const PrecisionModelgetPrecisionModel () const
 Get the PrecisionModel used to create this Geometry. More...
 
virtual bool isSimple () const
 Returns false if the Geometry not simple. More...
 
virtual std::size_t getNumGeometries () const
 
virtual const GeometrygetGeometryN (std::size_t) const
 Returns a pointer to the nth Geometry in this collection (or self if this is not a collection) More...
 
virtual bool isValid () const
 Tests the validity of this Geometry. More...
 
virtual bool isRectangle () const
 Polygon overrides to check for actual rectangle. More...
 
virtual bool isDimensionStrict (Dimension::DimensionType d) const
 Checks whether this Geometry consists only of components having dimension d. More...
 
bool isPuntal () const
 
bool isLineal () const
 
bool isPolygonal () const
 
bool isCollection () const
 
virtual std::unique_ptr< GeometrygetEnvelope () const
 Returns this Geometrys bounding box. More...
 
virtual const EnvelopegetEnvelopeInternal () const
 Returns the minimum and maximum x and y values in this Geometry, or a null Envelope if this Geometry is empty. More...
 
virtual bool disjoint (const Geometry *other) const
 
virtual bool touches (const Geometry *other) const
 Returns true if the DE-9IM intersection matrix for the two Geometrys is FT*******, F**T***** or F***T****. More...
 
virtual bool intersects (const Geometry *g) const
 Returns true if disjoint returns false. More...
 
virtual bool crosses (const Geometry *g) const
 
virtual bool within (const Geometry *g) const
 Returns true if the DE-9IM intersection matrix for the two Geometrys is T*F**F***. More...
 
virtual bool contains (const Geometry *g) const
 Returns true if other.within(this) returns true. More...
 
virtual bool overlaps (const Geometry *g) const
 Returns true if the DE-9IM intersection matrix for the two Geometrys is T*T***T** (for two points or two surfaces) 1*T***T** (for two curves). More...
 
bool relate (const Geometry *g, const std::string &intersectionPattern) const
 Returns true if the elements in the DE-9IM intersection matrix for the two Geometrys match the elements in intersectionPattern. More...
 
bool relate (const Geometry &g, const std::string &intersectionPattern) const
 
std::unique_ptr< IntersectionMatrixrelate (const Geometry *g) const
 Returns the DE-9IM intersection matrix for the two Geometrys. More...
 
std::unique_ptr< IntersectionMatrixrelate (const Geometry &g) const
 
virtual bool equals (const Geometry *g) const
 Returns true if the DE-9IM intersection matrix for the two Geometrys is T*F**FFF*. More...
 
bool covers (const Geometry *g) const
 Returns true if this geometry covers the specified geometry. More...
 
bool coveredBy (const Geometry *g) const
 Tests whether this geometry is covered by the specified geometry. More...
 
virtual std::string toString () const
 Returns the Well-known Text representation of this Geometry. More...
 
virtual std::string toText () const
 
std::unique_ptr< Geometrybuffer (double distance) const
 
std::unique_ptr< Geometrybuffer (double distance, int quadrantSegments) const
 Returns a buffer region around this Geometry having the given width and with a specified number of segments used to approximate curves. More...
 
std::unique_ptr< Geometrybuffer (double distance, int quadrantSegments, int endCapStyle) const
 Computes a buffer area around this geometry having the given width and with a specified accuracy of approximation for circular arcs, and using a specified end cap style. More...
 
virtual std::unique_ptr< GeometryconvexHull () const
 Returns the smallest convex Polygon that contains all the points in the Geometry. More...
 
std::unique_ptr< Geometryintersection (const Geometry *other) const
 Returns a Geometry representing the points shared by this Geometry and other. More...
 
std::unique_ptr< GeometryUnion (const Geometry *other) const
 Returns a Geometry representing all the points in this Geometry and other. More...
 
Ptr Union () const
 Computes the union of all the elements of this geometry. Heterogeneous GeometryCollections are fully supported. More...
 
std::unique_ptr< Geometrydifference (const Geometry *other) const
 Returns a Geometry representing the points making up this Geometry that do not make up other. More...
 
std::unique_ptr< GeometrysymDifference (const Geometry *other) const
 Returns a set combining the points in this Geometry not in other, and the points in other not in this Geometry. More...
 
template<class T >
void applyComponentFilter (T &f) const
 Apply a filter to each component of this geometry. The filter is expected to provide a .filter(const Geometry*) method. More...
 
virtual int compareTo (const Geometry *geom) const
 Comparator for sorting geometry. More...
 
virtual double distance (const Geometry *g) const
 Returns the minimum distance between this Geometry and the Geometry g. More...
 
virtual double getArea () const
 Returns the area of this Geometry. More...
 
virtual bool isWithinDistance (const Geometry *geom, double cDistance) const
 Tests whether the distance from this Geometry to another is less than or equal to a specified value. More...
 
virtual std::unique_ptr< PointgetCentroid () const
 Computes the centroid of this Geometry. More...
 
virtual bool getCentroid (Coordinate &ret) const
 Computes the centroid of this Geometry as a Coordinate. More...
 
std::unique_ptr< PointgetInteriorPoint () const
 Computes an interior point of this Geometry. More...
 
virtual void geometryChanged ()
 Notifies this Geometry that its Coordinates have been changed by an external party (using a CoordinateFilter, for example). More...
 
void geometryChangedAction ()
 Notifies this Geometry that its Coordinates have been changed by an external party. More...
 

Static Public Attributes

static const unsigned int MINIMUM_VALID_SIZE = 4
 The minimum number of vertices allowed in a valid non-empty ring (= 4). Empty rings with 0 vertices are also valid. More...
 

Protected Member Functions

int getSortIndex () const override
 
- Protected Member Functions inherited from geos::geom::LineString
 LineString (const LineString &ls)
 
 LineString (CoordinateSequence *pts, const GeometryFactory *newFactory)
 Constructs a LineString taking ownership the given CoordinateSequence. More...
 
 LineString (CoordinateSequence::Ptr &&pts, const GeometryFactory &newFactory)
 Hopefully cleaner version of the above. More...
 
Envelope::Ptr computeEnvelopeInternal () const override
 
int getSortIndex () const override
 
- Protected Member Functions inherited from geos::geom::Geometry
virtual bool isEquivalentClass (const Geometry *other) const
 Returns whether the two Geometrys are equal, from the point of view of the equalsExact method. More...
 
int compare (std::vector< Coordinate > a, std::vector< Coordinate > b) const
 
int compare (std::vector< Geometry * > a, std::vector< Geometry * > b) const
 
int compare (const std::vector< std::unique_ptr< Geometry >> &a, const std::vector< std::unique_ptr< Geometry >> &b) const
 
bool equal (const Coordinate &a, const Coordinate &b, double tolerance) const
 
 Geometry (const Geometry &geom)
 
 Geometry (const GeometryFactory *factory)
 Construct a geometry with the given GeometryFactory. More...
 

Private Member Functions

void validateConstruction ()
 

Additional Inherited Members

- Public Types inherited from geos::geom::LineString
typedef std::vector< const LineString * > ConstVect
 A vector of const LineString pointers. More...
 
- Public Types inherited from geos::geom::Geometry
using ConstVect = std::vector< const Geometry * >
 A vector of const Geometry pointers. More...
 
using NonConstVect = std::vector< Geometry * >
 A vector of non-const Geometry pointers. More...
 
using Ptr = std::unique_ptr< Geometry >
 An unique_ptr of Geometry. More...
 
- Static Protected Member Functions inherited from geos::geom::Geometry
template<typename T >
static bool hasNonEmptyElements (const std::vector< T > *geometries)
 Returns true if the array contains any non-empty Geometrys. More...
 
static bool hasNullElements (const CoordinateSequence *list)
 Returns true if the CoordinateSequence contains any null elements. More...
 
template<typename T >
static bool hasNullElements (const std::vector< T > *geometries)
 Returns true if the vector contains any null elements. More...
 
static void checkNotGeometryCollection (const Geometry *g)
 
template<typename T >
static std::vector< std::unique_ptr< Geometry > > toGeometryArray (std::vector< std::unique_ptr< T >> &&v)
 
- Protected Attributes inherited from geos::geom::LineString
CoordinateSequence::Ptr points
 
- Protected Attributes inherited from geos::geom::Geometry
std::unique_ptr< Envelopeenvelope
 The bounding box of this Geometry. More...
 
int SRID
 

Detailed Description

Models an OGC SFS LinearRing. A LinearRing is a LineString which is both closed and simple.

In other words, the first and last coordinate in the ring must be equal, and the interior of the ring must not self-intersect. Either orientation of the ring is allowed.

A ring must have either 0 or 4 or more points. The first and last points must be equal (in 2D). If these conditions are not met, the constructors throw an geos::util::IllegalArgumentException

Definition at line 54 of file LinearRing.h.

Constructor & Destructor Documentation

geos::geom::LinearRing::LinearRing ( const LinearRing lr)
geos::geom::LinearRing::LinearRing ( CoordinateSequence points,
const GeometryFactory newFactory 
)

Constructs a LinearRing with the given points.

Parameters
pointspoints forming a closed and simple linestring, or null or an empty array to create the empty geometry. This array must not contain null elements. If not null LinearRing will take ownership of points.
newFactorythe GeometryFactory used to create this geometry
geos::geom::LinearRing::LinearRing ( CoordinateSequence::Ptr &&  points,
const GeometryFactory newFactory 
)

Hopefully cleaner version of the above.

geos::geom::LinearRing::~LinearRing ( )
overridedefault

Member Function Documentation

std::unique_ptr<Geometry> geos::geom::LinearRing::clone ( ) const
inlineoverridevirtual

Make a deep-copy of this Geometry.

Implements geos::geom::Geometry.

Definition at line 86 of file LinearRing.h.

int geos::geom::LinearRing::getBoundaryDimension ( ) const
overridevirtual

Returns Dimension.FALSE, since by definition LinearRings do not have a boundary.

Returns
Dimension::False

Implements geos::geom::Geometry.

std::string geos::geom::LinearRing::getGeometryType ( ) const
overridevirtual

Return a string representation of this Geometry type.

Implements geos::geom::Geometry.

GeometryTypeId geos::geom::LinearRing::getGeometryTypeId ( ) const
overridevirtual

Return an integer representation of this Geometry type.

Implements geos::geom::Geometry.

int geos::geom::LinearRing::getSortIndex ( ) const
inlineoverrideprotectedvirtual

Implements geos::geom::Geometry.

Definition at line 114 of file LinearRing.h.

References geos::geom::SORTINDEX_LINEARRING.

bool geos::geom::LinearRing::isClosed ( ) const
overridevirtual

Reimplemented from geos::geom::LineString.

std::unique_ptr<Geometry> geos::geom::LinearRing::reverse ( ) const
overridevirtual

Computes a new geometry which has all component coordinate sequences in reverse order (opposite orientation) to this one.

Returns
a reversed geometry

Implements geos::geom::Geometry.

void geos::geom::LinearRing::setPoints ( const CoordinateSequence cl)
void geos::geom::LinearRing::validateConstruction ( )
private

Member Data Documentation

const unsigned int geos::geom::LinearRing::MINIMUM_VALID_SIZE = 4
static

The minimum number of vertices allowed in a valid non-empty ring (= 4). Empty rings with 0 vertices are also valid.

Definition at line 62 of file LinearRing.h.


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