Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards. More...
#include <Geometry.h>
Public Types | |
typedef void | ReturnType |
typedef Visitor | VisitorType |
Public Member Functions | |
virtual ReturnType | accept (VisitorType &guest) const=0 |
It call the visit method from the guest object. More... | |
virtual AbstractData * | clone () const =0 |
It returns a clone of this object. More... | |
Initializer methods on geometric objects | |
Methods for initializing a geometric object. | |
Geometry (GeomType t, int srid=0, Envelope *mbr=0) _NOEXCEPT_OP(true) | |
It initializes the Geometry with the specified spatial reference system id and envelope. More... | |
Geometry (const Geometry &rhs) _NOEXCEPT_OP(true) | |
Copy constructor. More... | |
virtual | ~Geometry () |
Virtual destructor. More... | |
virtual Geometry & | operator= (const Geometry &rhs) _NOEXCEPT_OP(true) |
Assignment operator. More... | |
Basic Geometry Methods | |
Basic methods on geometric objects. | |
virtual Dimensionality | getDimension () const _NOEXCEPT_OP(true)=0 |
It returns the geometric object dimension (0, 1 or 2). More... | |
int | getCoordinateDimension () const _NOEXCEPT_OP(true) |
It returns the number of measurements or axes needed to describe a position in a coordinate system. More... | |
virtual const std::string & | getGeometryType () const _NOEXCEPT_OP(true)=0 |
It returns the name of the geometry subclass. More... | |
GeomType | getGeomTypeId () const _NOEXCEPT_OP(true) |
It returns the geometry subclass type identifier. More... | |
virtual const std::string | get2DGeometryType () const _NOEXCEPT_OP(true) |
It returns the name of 2D geometry subclass. More... | |
virtual GeomType | get2DGeomTypeId () const _NOEXCEPT_OP(true) |
It returns the 2D geometry subclass type identifier. More... | |
int | getSRID () const _NOEXCEPT_OP(true) |
It returns the Spatial Reference System ID associated to this geometric object. More... | |
virtual void | setSRID (int srid) _NOEXCEPT_OP(true)=0 |
It sets the Spatial Reference System ID of the geometry and all its parts if it is a GeometryCollection (or a Multi). More... | |
virtual void | transform (const int &srid) _NOEXCEPT_OP(false) |
It converts the coordinate values of the geometry to the new spatial reference system. More... | |
virtual void | convert (te::srs::Converter *converter) _NOEXCEPT_OP(false)=0 |
It converts the coordinate values of the geometry to the new spatial reference system. More... | |
Geometry * | getEnvelope () const _NOEXCEPT_OP(true) |
It returns the minimum bounding rectangle (MBR) for the geometry. More... | |
const Envelope * | getMBR () const _NOEXCEPT_OP(true) |
It returns the minimum bounding rectangle for the geometry in an internal representation. More... | |
virtual void | computeMBR (bool cascade) const _NOEXCEPT_OP(true)=0 |
It computes the minimum bounding rectangle for the geometry. More... | |
std::string | asText () const _NOEXCEPT_OP(true) |
It returns an string with the Well-Known Text Representation for the geometry. More... | |
char * | asBinary (std::size_t &size) const _NOEXCEPT_OP(false) |
It serializes the geometric object to a Well-known Binary Representation (WKB). More... | |
std::size_t | getWkbSize () const _NOEXCEPT_OP(true) |
It returns the size required by a WKB representation for this geometric object. More... | |
void | getWkb (char *wkb, te::common::MachineByteOrder byteOrder) const _NOEXCEPT_OP(false) |
It serializes the geometry to a WKB representation into the specified buffer. More... | |
virtual bool | isEmpty () const _NOEXCEPT_OP(false) |
It returns true if this geometric object is the empty Geometry. More... | |
virtual bool | isSimple () const _NOEXCEPT_OP(false) |
It returns true if this geometric object has no anomalous points, such as self intersection or self tangency. More... | |
virtual bool | isValid () const _NOEXCEPT_OP(false) |
It tells if the geometry is well formed. More... | |
bool | is3D () const _NOEXCEPT_OP(true) |
It returns true if this geometric object has z coordinate values. More... | |
bool | isMeasured () const _NOEXCEPT_OP(true) |
It returns true if this geometric object has m coordinate values. More... | |
bool | isCollection () const _NOEXCEPT_OP(true) |
It returns true if this geometric object is a collection. More... | |
virtual Geometry * | getBoundary () const _NOEXCEPT_OP(false) |
It returns the geometry boundary. More... | |
te::gm::Coord2D | getCentroid () const _NOEXCEPT_OP(false) |
It will get the centroid of the input geometries. More... | |
virtual std::size_t | getNPoints () const _NOEXCEPT_OP(true)=0 |
it returns the number of points (vertexes) in the geometry. More... | |
Spatial Relations | |
Methods for testing spatial relations between geometric objects. Please, see OGC specification for a in depth definition of each spatial operation. | |
virtual bool | equals (const Geometry *const rhs, const bool exact=false) const _NOEXCEPT_OP(false) |
It returns true if the geometry object is spatially equal to rhs geometry. More... | |
virtual bool | disjoint (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if the geometry object is spatially disjoint from rhs geometry. More... | |
virtual bool | intersects (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if the geometry object spatially intersects rhs geometry. More... | |
virtual bool | touches (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if the geometry object spatially touches rhs geometry. More... | |
virtual bool | crosses (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if the geometry object spatially crosses rhs geometry. More... | |
virtual bool | within (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if the geometry object is spatially within rhs geometry. More... | |
virtual bool | contains (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if this geometry object spatially contains rhs geometry. More... | |
virtual bool | overlaps (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if this geometry object spatially overlaps rhs geometry. More... | |
virtual bool | relate (const Geometry *const rhs, const std::string &matrix) const _NOEXCEPT_OP(false) |
It returns true if this geometry object is spatially related to rhs geometry according to the pattern expressed by the intersection matrix. More... | |
virtual std::string | relate (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns the spatial relation between this geometry object and the rhs geometry. More... | |
virtual bool | covers (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if this geometry object spatially covers the rhs geometry. More... | |
virtual bool | coveredBy (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns true if this geometry object is spatially covered by rhs geometry. More... | |
virtual Geometry * | locateAlong (const double &mValue) const _NOEXCEPT_OP(false) |
It returns a derived GeometryCollection value according to the specified coordinate value. More... | |
virtual Geometry * | locateBetween (const double &mStart, const double &mEnd) const _NOEXCEPT_OP(false) |
It returns a derived geometry collection value according to the range of coordinate values inclusively. More... | |
Spatial Analysis | |
Methods that support spatial analysis. | |
virtual double | distance (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns the shortest distance between any two points in the two geometry objects. More... | |
virtual Geometry * | buffer (const double &distance) const _NOEXCEPT_OP(false) |
This method calculates the buffer of a geometry. More... | |
virtual Geometry * | buffer (const double &distance, int quadrantSegments) const _NOEXCEPT_OP(false) |
This method calculates the buffer of a geometry. More... | |
virtual Geometry * | buffer (const double &distance, int quadrantSegments, BufferCapStyle endCapStyle) const _NOEXCEPT_OP(false) |
This method calculates the buffer of a geometry. More... | |
virtual Geometry * | convexHull () const _NOEXCEPT_OP(false) |
This method calculates the Convex Hull of a geometry. More... | |
virtual Geometry * | intersection (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns a geometric object that represents the point set intersection with another geometry. More... | |
virtual Geometry * | Union (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns a geometric object that represents the point set union with another geometry. More... | |
virtual Geometry * | difference (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns a geometric object that represents the point set difference with another geometry. More... | |
virtual Geometry * | symDifference (const Geometry *const rhs) const _NOEXCEPT_OP(false) |
It returns a geometric object that represents the point set symetric difference with another geometry. More... | |
virtual bool | dWithin (const Geometry *const rhs, const double &distance) const _NOEXCEPT_OP(false) |
It returns true if the geometries are within the specified distance. More... | |
Static Public Member Functions | |
Auxiliary Methods | |
Auxiliary Methods. | |
static GeomType | getGeomTypeId (const std::string >ype) |
It returns the TerraLib geometry type id given a type string (the type string must be in capital letters). More... | |
static std::string | getGeomTypeString (const int &gId) |
It returns the TerraLib geometry type string given a type id. More... | |
static bool | isGeomType (const std::string &stype) |
It tells if the given string is a geometry data type. More... | |
static void | loadGeomTypeId () |
It loads the internal MAP of geometry type names to geometry type ids. More... | |
AbstractData Re-implementation | |
Methods re-implemneted from AbstractData. | |
GeomType | m_gType |
Internal geometry type. More... | |
int | m_srid |
The Spatial Reference System code associated to the Geometry. More... | |
Envelope * | m_mbr |
The geometry minimum bounding rectangle. More... | |
static std::map< std::string, GeomType > | sm_geomTypeMap |
A set of geometry type names (in UPPER CASE). More... | |
int | getTypeCode () const |
It returns the data type code associated to the data value. More... | |
std::string | toString () const |
It returns the data value in a WKT representation. More... | |
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
The geometry model follows OGC Simple Feature Specification - SFS (Simple Feature Access - Part 1: Common Architecture) and ISO SQL/MM Spatial.
Definition at line 77 of file Geometry.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
It initializes the Geometry with the specified spatial reference system id and envelope.
t | The internal geometry type. |
srid | The Spatial Reference System ID associated to the geometry. |
mbr | The envelope (minimum bounding rectangle of this geometry). |
te::gm::Geometry::Geometry | ( | const Geometry & | rhs | ) |
Copy constructor.
rhs | The other geometry. |
|
virtual |
Virtual destructor.
|
pure virtualinherited |
It call the visit method from the guest object.
guest | The guest or visitor. |
char * te::gm::Geometry::asBinary | ( | std::size_t & | size | ) | const |
It serializes the geometric object to a Well-known Binary Representation (WKB).
size | The size in bytes of the returned WKB. |
Exception | It will throw an exception if the operation could not be performed. |
std::string te::gm::Geometry::asText | ( | ) | const |
It returns an string with the Well-Known Text Representation for the geometry.
|
virtual |
This method calculates the buffer of a geometry.
distance | Distance value. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
This method calculates the buffer of a geometry.
distance | Distance value. |
quadrantSegments | A specified number of segments used to approximate the curves. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
This method calculates the buffer of a geometry.
As in GEOS, the quadrantSegments argument allows controlling the accuracy of the approximation by specifying the number of line segments used to represent a quadrant of a circle.
distance | Distance value. |
quadrantSegments | A specified number of segments used to approximate the curves. |
endCapStyle | It specifies the shape used at the ends of linestrings. |
std::exception | It will throw an exception if the operation could not be performed. |
|
pure virtualinherited |
It returns a clone of this object.
Implemented in te::dt::Array, te::dt::ByteArray, te::dt::CompositeData, te::dt::Date, te::dt::DateDuration, te::dt::DatePeriod, te::dt::OrdinalInstant, te::dt::OrdinalPeriod, te::dt::SimpleData< T, typeCode >, te::dt::SimpleData< boost::int64_t, INT64_TYPE >, te::dt::SimpleData< T *, typeCode >, te::dt::TimeDuration, te::dt::TimeInstant, te::dt::TimeInstantTZ, te::dt::TimePeriod, te::dt::TimePeriodTZ, te::gdal::Raster, te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::Line, te::gm::LinearRing, te::gm::LineString, te::gm::MultiCurve, te::gm::MultiLineString, te::gm::MultiPoint, te::gm::MultiPolygon, te::gm::MultiSurface, te::gm::Point, te::gm::Polygon, te::gm::PolyhedralSurface, te::mem::CachedRaster, te::mem::ExpansibleRaster, te::mem::Raster, te::rst::ProxyRaster, te::rst::SynchronizedRaster, terralib4::Raster, te::vp::ComplexData< T >, and te::da::DataAccess.
Referenced by te::dt::new_clone().
|
pure virtual |
It computes the minimum bounding rectangle for the geometry.
Subclasses must implement this method in order to be able to compute the minimum bounding box of a specific geometry.
cascade | If true it will update the MBR for its sub-geometries. |
Implemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::LineString, te::gm::PolyhedralSurface, and te::gm::Point.
|
virtual |
It returns true if this geometry object spatially contains rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
pure virtual |
It converts the coordinate values of the geometry to the new spatial reference system.
After calling this method the geometry will be associated to the new SRID.
converter | The converter containing all the information related to the new Spatial Reference System ID used to transform the coordinates of the geometry. |
Exception | It will throw an exception if it can not do the transformation. |
Implemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::LineString, te::gm::Point, and te::gm::PolyhedralSurface.
|
virtual |
This method calculates the Convex Hull of a geometry.
std::exception | It will throw an exception if the operation could not be performed. |
Referenced by te::rp::GetTPConvexHullArea().
|
virtual |
It returns true if this geometry object is spatially covered by rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if this geometry object spatially covers the rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if the geometry object spatially crosses rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
It returns a geometric object that represents the point set difference with another geometry.
rhs | Another geometry whose difference with this geometry will be calculated. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if the geometry object is spatially disjoint from rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
Referenced by te::rst::PolygonIterator< T >::getBBOXIntersectionRanges().
|
virtual |
It returns the shortest distance between any two points in the two geometry objects.
rhs | The other geometry. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if the geometries are within the specified distance.
rhs | The other geometry whose symetric difference with this geometry will be calculated. |
distance | The distance. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if the geometry object is spatially equal to rhs geometry.
rhs | The another geometry to be compared. |
exact | If true checks if this geometric object has the same vertexes in the same order of rhs geometry. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns the name of 2D geometry subclass.
The name of the 2D geometry subclass may be one of the following:
|
virtual |
It returns the 2D geometry subclass type identifier.
|
virtual |
It returns the geometry boundary.
std::exception | It will throw an exception if the operation could not be performed. |
te::gm::Coord2D te::gm::Geometry::getCentroid | ( | ) | const |
It will get the centroid of the input geometries.
std::exception | It will throw an exception if the operation could not be performed. |
int te::gm::Geometry::getCoordinateDimension | ( | ) | const |
It returns the number of measurements or axes needed to describe a position in a coordinate system.
It returns:
|
pure virtual |
It returns the geometric object dimension (0, 1 or 2).
For a GeometryCollection it returns the largest topological dimension of the contained objects. For Point and MultiPoint this will return 0. For Curves and MultiCurves (LineString, LinearRing and MultiLineString) it will return 1. For Surfaces (Polygon, Triangle, PolyhedralSurface, TIN) and MultiSurfaces (MultiPolygon) it will return 2.
Implemented in te::gm::Curve, te::gm::GeometryCollection, te::gm::MultiCurve, te::gm::MultiPoint, te::gm::MultiSurface, te::gm::Surface, and te::gm::Point.
Geometry * te::gm::Geometry::getEnvelope | ( | ) | const |
It returns the minimum bounding rectangle (MBR) for the geometry.
As one can notice, the mbr is returned as a geometry, actually a polygon defined by the corner points of the bounding box [(MINX, MINY), (MAXX, MINY), (MAXX, MAXY), (MINX, MAXY), (MINX, MINY)].
|
pure virtual |
It returns the name of the geometry subclass.
The name of the geometry subclass may be one of the following:
Implemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::LineString, te::gm::MultiLineString, te::gm::MultiPoint, te::gm::MultiPolygon, te::gm::Polygon, te::gm::PolyhedralSurface, te::gm::TIN, and te::gm::Point.
|
inline |
It returns the geometry subclass type identifier.
Definition at line 182 of file Geometry.h.
|
static |
It returns the TerraLib geometry type id given a type string (the type string must be in capital letters).
gtype | The geometry type name. |
|
static |
It returns the TerraLib geometry type string given a type id.
gId | The geometry type id. |
const Envelope * te::gm::Geometry::getMBR | ( | ) | const |
It returns the minimum bounding rectangle for the geometry in an internal representation.
The mbr can be constructed when reading a geometry from a database or it can be computed internally. So, if the mbr is not already set it will compute it just when this method is called. Successive calls to this method will not compute the mbr anymore.
|
pure virtual |
it returns the number of points (vertexes) in the geometry.
Implemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::LineString, te::gm::PolyhedralSurface, and te::gm::Point.
|
inline |
It returns the Spatial Reference System ID associated to this geometric object.
This value can be used to identify the associated Spatial Reference System.
Definition at line 242 of file Geometry.h.
Referenced by te::rst::PolygonIterator< T >::getScanLineIntersectionRanges(), te::rst::PolygonIterator< T >::initialize(), and te::rst::LineIterator< T >::LineIterator().
|
virtual |
It returns the data type code associated to the data value.
Implements te::dt::AbstractData.
void te::gm::Geometry::getWkb | ( | char * | wkb, |
te::common::MachineByteOrder | byteOrder | ||
) | const |
It serializes the geometry to a WKB representation into the specified buffer.
The wkb parameter must have at least getWkbSize() in order to be used. Don't pass a NULL pointer or a buffer smaller than the size needed. Note that the WKB will be on the specified byte order.
wkb | The buffer where the Geometry will be serialized. |
byteOrder | The byte order used to store/serialize the geometry. |
Exception | It will throw an exception if the operation could not be performed. |
std::size_t te::gm::Geometry::getWkbSize | ( | ) | const |
It returns the size required by a WKB representation for this geometric object.
This is the preferred method for creating a WKB. First of all, it gives you the possibility to use a pre-allocated buffer. So, this method can be used in conjunction with the getWkb method.
It returns a geometric object that represents the point set intersection with another geometry.
std::exception | It will throw an exception if the operation could not be performed. |
Referenced by te::rst::LineIterator< T >::LineIterator().
|
virtual |
It returns true if the geometry object spatially intersects rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
bool te::gm::Geometry::is3D | ( | ) | const |
It returns true if this geometric object has z coordinate values.
bool te::gm::Geometry::isCollection | ( | ) | const |
It returns true if this geometric object is a collection.
|
virtual |
It returns true if this geometric object is the empty Geometry.
If true, then this geometric object represents the empty point set for the coordinate space.
std::exception | It will throw an exception if the operation could not be performed. |
Referenced by te::rst::LineIterator< T >::LineIterator().
|
static |
It tells if the given string is a geometry data type.
stype | The geometry type to be checked. |
bool te::gm::Geometry::isMeasured | ( | ) | const |
It returns true if this geometric object has m coordinate values.
|
virtual |
It returns true if this geometric object has no anomalous points, such as self intersection or self tangency.
See the ISO and OGC documentation for an explanation about specific conditions of each type of geometry to be considered not simple.
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It tells if the geometry is well formed.
std::exception | It will throw an exception if the operation could not be performed. |
|
static |
It loads the internal MAP of geometry type names to geometry type ids.
|
inlinevirtual |
It returns a derived GeometryCollection value according to the specified coordinate value.
mValue | The coordinate value. |
Exception | It will throw an exception if the operation could not be performed. |
Definition at line 695 of file Geometry.h.
|
virtual |
It returns a derived geometry collection value according to the range of coordinate values inclusively.
mStart | The initial coordinate value. |
mEnd | The final coordinate value. |
Exception | It will throw an exception if the operation could not be performed. |
Reimplemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::LineString, te::gm::MultiLineString, and te::gm::MultiPoint.
Assignment operator.
rhs | The right-hand-side geometry. |
|
virtual |
It returns true if this geometry object spatially overlaps rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns the spatial relation between this geometry object and the rhs geometry.
rhs | The another geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if this geometry object is spatially related to rhs geometry according to the pattern expressed by the intersection matrix.
It does this by testing for intersections between the interior, boundary and exterior of the two geometric objects as specified by the values in the matrix.
rhs | The other geometry to be compared. |
matrix | The intersection matrix. |
std::exception | It will throw an exception if the operation could not be performed. |
|
pure virtual |
It sets the Spatial Reference System ID of the geometry and all its parts if it is a GeometryCollection (or a Multi).
srid | The Spatial Reference System ID to be associated to the geometric object. |
Implemented in te::gm::CircularString, te::gm::CompoundCurve, te::gm::CurvePolygon, te::gm::GeometryCollection, te::gm::LineString, te::gm::PolyhedralSurface, and te::gm::Point.
It returns a geometric object that represents the point set symetric difference with another geometry.
rhs | The other geometry whose symetric difference with this geometry will be calculated. |
std::exception | It will throw an exception if the operation could not be performed. |
|
inlinevirtual |
It returns the data value in a WKT representation.
Implements te::dt::AbstractData.
Definition at line 953 of file Geometry.h.
|
virtual |
It returns true if the geometry object spatially touches rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It converts the coordinate values of the geometry to the new spatial reference system.
After calling this method the geometry will be associated to the new SRID.
srid | The new Spatial Reference System ID used to transform the coordinates of the geometry. |
Exception | It will throw an exception if it can not do the transformation. |
It returns a geometric object that represents the point set union with another geometry.
rhs | Another geometry whose union with this geometry will be calculated. |
std::exception | It will throw an exception if the operation could not be performed. |
|
virtual |
It returns true if the geometry object is spatially within rhs geometry.
rhs | The other geometry to be compared. |
std::exception | It will throw an exception if the operation could not be performed. |
|
protected |
Internal geometry type.
Definition at line 959 of file Geometry.h.
|
mutableprotected |
The geometry minimum bounding rectangle.
Definition at line 961 of file Geometry.h.
|
protected |
The Spatial Reference System code associated to the Geometry.
Definition at line 960 of file Geometry.h.
|
staticprotected |
A set of geometry type names (in UPPER CASE).
Definition at line 963 of file Geometry.h.