#include <ogr_geometry.h>
Public Member Functions | |
virtual const char * | getGeometryName () const |
Fetch WKT name for geometry type. | |
virtual OGRGeometry * | clone () const |
Make a copy of this object. | |
virtual int | isClockwise () const |
Returns TRUE if the ring has clockwise winding (or less than 2 points). | |
virtual void | closeRings () |
Force rings to be closed. | |
virtual double | get_Area () const |
Compute area of ring. | |
virtual int | WkbSize () const |
Returns size of related binary representation. | |
virtual OGRErr | importFromWkb (unsigned char *, int=-1) |
Assign geometry from well known binary data. | |
virtual OGRErr | exportToWkb (OGRwkbByteOrder, unsigned char *) const |
Convert a geometry into well known binary format. | |
Friends | |
class | OGRPolygon |
This class is functionally equivelent to an OGRLineString, but has a separate identity to maintain alignment with the OpenGIS simple feature data model. It exists to serve as a component of an OGRPolygon.
The OGRLinearRing has no corresponding free standing well known binary representation, so importFromWkb() and exportToWkb() will not actually work. There is a non-standard GDAL WKT representation though.
Because OGRLinearRing is not a "proper" free standing simple features object, it cannot be directly used on a feature via SetGeometry(), and cannot genearally be used with GEOS for operations like Intersects(). Instead the polygon should be used, or the OGRLinearRing should be converted to an OGRLineString for such operations.
OGRGeometry * OGRLinearRing::clone | ( | ) | const [virtual] |
Make a copy of this object.
This method relates to the SFCOM IGeometry::clone() method.
This method is the same as the C function OGR_G_Clone().
Reimplemented from OGRLineString.
References OGRGeometry::assignSpatialReference(), OGRGeometry::getSpatialReference(), and OGRLineString::setPoints().
void OGRLinearRing::closeRings | ( | ) | [virtual] |
Force rings to be closed.
If this geometry, or any contained geometries has polygon rings that are not closed, they will be closed by adding the starting point at the end.
Reimplemented from OGRGeometry.
References OGRLineString::addPoint(), OGRGeometry::getCoordinateDimension(), OGRLineString::getX(), OGRLineString::getY(), and OGRLineString::getZ().
OGRErr OGRLinearRing::exportToWkb | ( | OGRwkbByteOrder | eByteOrder, | |
unsigned char * | pabyData | |||
) | const [virtual] |
Convert a geometry into well known binary format.
This method relates to the SFCOM IWks::ExportToWKB() method.
This method is the same as the C function OGR_G_ExportToWkb().
eByteOrder | One of wkbXDR or wkbNDR indicating MSB or LSB byte order respectively. | |
pabyData | a buffer into which the binary representation is written. This buffer must be at least OGRGeometry::WkbSize() byte in size. |
Reimplemented from OGRLineString.
double OGRLinearRing::get_Area | ( | ) | const [virtual] |
Compute area of ring.
The area is computed according to Green's Theorem:
Area is "Sum(x(i)*y(i+1) - x(i+1)*y(i))/2" for i = 0 to pointCount-1, assuming the last point is a duplicate of the first.
References OGRRawPoint::x, and OGRRawPoint::y.
Referenced by OGRPolygon::get_Area().
const char * OGRLinearRing::getGeometryName | ( | ) | const [virtual] |
Fetch WKT name for geometry type.
There is no SFCOM analog to this method.
This method is the same as the C function OGR_G_GetGeometryName().
Reimplemented from OGRLineString.
OGRErr OGRLinearRing::importFromWkb | ( | unsigned char * | pabyData, | |
int | nSize = -1 | |||
) | [virtual] |
Assign geometry from well known binary data.
The object must have already been instantiated as the correct derived type of geometry object to match the binaries type. This method is used by the OGRGeometryFactory class, but not normally called by application code.
This method relates to the SFCOM IWks::ImportFromWKB() method.
This method is the same as the C function OGR_G_ImportFromWkb().
pabyData | the binary input data. | |
nSize | the size of pabyData in bytes, or zero if not known. |
Reimplemented from OGRLineString.
int OGRLinearRing::isClockwise | ( | ) | const [virtual] |
Returns TRUE if the ring has clockwise winding (or less than 2 points).
References OGRRawPoint::x, and OGRRawPoint::y.
int OGRLinearRing::WkbSize | ( | ) | const [virtual] |
Returns size of related binary representation.
This method returns the exact number of bytes required to hold the well known binary representation of this geometry object. Its computation may be slightly expensive for complex geometries.
This method relates to the SFCOM IWks::WkbSize() method.
This method is the same as the C function OGR_G_WkbSize().
Reimplemented from OGRLineString.
Referenced by OGR_G_AddGeometry(), and OGR_G_AddGeometryDirectly().