#include <ogr_geometry.h>
Inheritance diagram for OGRMultiPoint:
Public Member Functions | |
virtual const char * | getGeometryName () const |
virtual OGRwkbGeometryType | getGeometryType () const |
virtual OGRGeometry * | clone () const |
virtual OGRErr | importFromWkt (char **) |
virtual OGRErr | exportToWkt (char **) const |
virtual OGRErr | addGeometryDirectly (OGRGeometry *) |
|
Add a geometry directly to the container. Some subclasses of OGRGeometryCollection restrict the types of geometry that can be added, and may return an error. Ownership of the passed geometry is taken by the container rather than cloning as addGeometry() does. This method is the same as the C function OGR_G_AddGeometryDirectly(). There is no SFCOM analog to this method.
Reimplemented from OGRGeometryCollection. |
|
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 OGRGeometryCollection. |
|
Convert a geometry into well known text format. This method relates to the SFCOM IWks::ExportToWKT() method. This method is the same as the C function OGR_G_ExportToWkt().
Reimplemented from OGRGeometryCollection. |
|
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 OGRGeometryCollection. |
|
Fetch geometry type. Note that the geometry type may include the 2.5D flag. To get a 2D flattened version of the geometry type apply the wkbFlatten() macro to the return result. This method is the same as the C function OGR_G_GetGeometryType().
Reimplemented from OGRGeometryCollection. |
|
Assign geometry from well known text data. The object must have already been instantiated as the correct derived type of geometry object to match the text type. This method is used by the OGRGeometryFactory class, but not normally called by application code. This method relates to the SFCOM IWks::ImportFromWKT() method. This method is the same as the C function OGR_G_ImportFromWkt().
Reimplemented from OGRGeometryCollection. |