|
QGIS API Documentation
2.10.1-Pisa
|
Point geometry type. More...
#include <qgspointv2.h>

Public Member Functions | |
| QgsPointV2 (double x=0.0, double y=0.0) | |
| QgsPointV2 (QgsWKBTypes::Type type, double x=0.0, double y=0.0, double z=0.0, double m=0.0) | |
| QDomElement | asGML2 (QDomDocument &doc, int precision=17, const QString &ns="gml") const override |
| Returns a GML2 representation of the geometry. More... | |
| QDomElement | asGML3 (QDomDocument &doc, int precision=17, const QString &ns="gml") const override |
| Returns a GML3 representation of the geometry. More... | |
| QString | asJSON (int precision=17) const override |
| Returns a GeoJSON representation of the geometry. More... | |
| unsigned char * | asWkb (int &binarySize) const override |
| Returns a WKB representation of the geometry. More... | |
| QString | asWkt (int precision=17) const override |
| Returns a WKT representation of the geometry. More... | |
| virtual QgsRectangle | calculateBoundingBox () const override |
| Calculates the minimal bounding box for the geometry. More... | |
| void | clear () override |
| Clears the geometry, ie reset it to a null geometry. More... | |
| virtual QgsAbstractGeometryV2 * | clone () const override |
| Clones the geometry by performing a deep copy. More... | |
| double | closestSegment (const QgsPointV2 &pt, QgsPointV2 &segmentPt, QgsVertexId &vertexAfter, bool *leftOf, double epsilon) const override |
| Searches for the closest segment of the geometry to a given point. More... | |
| virtual void | coordinateSequence (QList< QList< QList< QgsPointV2 > > > &coord) const override |
| Retrieves the sequence of geometries, rings and nodes. More... | |
| virtual bool | deleteVertex (const QgsVertexId &position) override |
| Deletes a vertex within the geometry. More... | |
| virtual int | dimension () const override |
| Returns the inherent dimension of the geometry. More... | |
| void | draw (QPainter &p) const override |
| Draws the geometry using the specified QPainter. More... | |
| virtual bool | fromWkb (const unsigned char *wkb) override |
| Sets the geometry from a WKB string. More... | |
| virtual bool | fromWkt (const QString &wkt) override |
| Sets the geometry from a WKT string. More... | |
| virtual QString | geometryType () const override |
| Returns a unique string representing the geometry type. More... | |
| virtual bool | insertVertex (const QgsVertexId &position, const QgsPointV2 &vertex) override |
| Inserts a vertex into the geometry. More... | |
| double | m () const |
| virtual bool | moveVertex (const QgsVertexId &position, const QgsPointV2 &newPos) override |
| Moves a vertex within the geometry. More... | |
| bool | nextVertex (QgsVertexId &id, QgsPointV2 &vertex) const override |
| Returns next vertex id and coordinates. More... | |
| bool | operator!= (const QgsPointV2 &pt) const |
| bool | operator== (const QgsPointV2 &pt) const |
| void | setM (double m) |
| void | setX (double x) |
| void | setY (double y) |
| void | setZ (double z) |
| void | transform (const QgsCoordinateTransform &ct) override |
| Transforms the geometry using a coordinate transform. More... | |
| void | transform (const QTransform &t) override |
| Transforms the geometry using a QTransform object. More... | |
| int | wkbSize () const override |
| Returns the size of the WKB representation of the geometry. More... | |
| double | x () const |
| double | y () const |
| double | z () const |
Public Member Functions inherited from QgsAbstractGeometryV2 | |
| QgsAbstractGeometryV2 () | |
| QgsAbstractGeometryV2 (const QgsAbstractGeometryV2 &geom) | |
| virtual | ~QgsAbstractGeometryV2 () |
| virtual double | area () const |
| Returns the area of the geometry. More... | |
| QgsRectangle | boundingBox () const |
| Returns the minimal bounding box for the geometry. More... | |
| virtual bool | hasCurvedSegments () const |
| Returns true if the geometry contains curved segments. More... | |
| bool | is3D () const |
| Returns true if the geometry is 3D and contains a z-value. More... | |
| bool | isEmpty () const |
| Returns true if the geometry is empty. More... | |
| bool | isMeasure () const |
| Returns true if the geometry contains m values. More... | |
| virtual double | length () const |
| Returns the length (or perimeter for area geometries) of the geometry. More... | |
| int | nCoordinates () const |
| Returns the number of nodes contained in the geometry. More... | |
| virtual QgsAbstractGeometryV2 & | operator= (const QgsAbstractGeometryV2 &geom) |
| virtual QgsAbstractGeometryV2 * | segmentize () const |
| Returns a version of the geometry without curves. More... | |
| QgsPointV2 | vertexAt (const QgsVertexId &id) const |
| Returns the point corresponding to a specified vertex id. More... | |
| QgsWKBTypes::Type | wkbType () const |
| Returns the WKB type of the geometry. More... | |
| QString | wktTypeStr () const |
| Returns the WKT type string of the geometry. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from QgsAbstractGeometryV2 | |
| void | setZMTypeFromSubGeometry (const QgsAbstractGeometryV2 *subggeom, QgsWKBTypes::Type baseGeomType) |
| Updates the geometry type based on whether sub geometries contain z or m values. More... | |
Static Protected Member Functions inherited from QgsAbstractGeometryV2 | |
| static bool | readWkbHeader (QgsConstWkbPtr &wkbPtr, QgsWKBTypes::Type &wkbType, bool &endianSwap, QgsWKBTypes::Type expectedType) |
| Reads a WKB header and tests its validity. More... | |
Protected Attributes inherited from QgsAbstractGeometryV2 | |
| QgsRectangle | mBoundingBox |
| QgsWKBTypes::Type | mWkbType |
Point geometry type.
Definition at line 29 of file qgspointv2.h.
| QgsPointV2::QgsPointV2 | ( | double | x = 0.0, |
| double | y = 0.0 |
||
| ) |
Definition at line 27 of file qgspointv2.cpp.
| QgsPointV2::QgsPointV2 | ( | QgsWKBTypes::Type | type, |
| double | x = 0.0, |
||
| double | y = 0.0, |
||
| double | z = 0.0, |
||
| double | m = 0.0 |
||
| ) |
Definition at line 32 of file qgspointv2.cpp.
|
overridevirtual |
Returns a GML2 representation of the geometry.
| doc | DOM document |
| precision | number of decimal places for coordinates |
| ns | XML namespace |
Implements QgsAbstractGeometryV2.
Definition at line 142 of file qgspointv2.cpp.
|
overridevirtual |
Returns a GML3 representation of the geometry.
| doc | DOM document |
| precision | number of decimal places for coordinates |
| ns | XML namespace |
Implements QgsAbstractGeometryV2.
Definition at line 152 of file qgspointv2.cpp.
|
overridevirtual |
Returns a GeoJSON representation of the geometry.
| precision | number of decimal places for coordinates |
Implements QgsAbstractGeometryV2.
Definition at line 166 of file qgspointv2.cpp.
|
overridevirtual |
Returns a WKB representation of the geometry.
| binarySize | will be set to the size of the returned WKB string |
Implements QgsAbstractGeometryV2.
Definition at line 111 of file qgspointv2.cpp.
|
overridevirtual |
Returns a WKT representation of the geometry.
| precision | number of decimal places for coordinates |
Implements QgsAbstractGeometryV2.
Definition at line 130 of file qgspointv2.cpp.
|
inlineoverridevirtual |
Calculates the minimal bounding box for the geometry.
Derived classes should override this method to return the correct bounding box.
Reimplemented from QgsAbstractGeometryV2.
Definition at line 67 of file qgspointv2.h.
|
overridevirtual |
Clears the geometry, ie reset it to a null geometry.
Implements QgsAbstractGeometryV2.
Definition at line 178 of file qgspointv2.cpp.
|
overridevirtual |
Clones the geometry by performing a deep copy.
Implements QgsAbstractGeometryV2.
Definition at line 51 of file qgspointv2.cpp.
|
overridevirtual |
Searches for the closest segment of the geometry to a given point.
| pt | Specifies the point for search |
| segmentPt | storage for the closest point within the geometry |
| vertexAfter | storage for the id of the vertex after the closest segment |
| leftOf | returns if the point lies on the left of right side of the segment ( < 0 means left, > 0 means right ) |
| epsilon | epsilon for segment snapping |
Implements QgsAbstractGeometryV2.
Definition at line 214 of file qgspointv2.cpp.
|
overridevirtual |
Retrieves the sequence of geometries, rings and nodes.
| coord | destination for coordinate sequence. |
Implements QgsAbstractGeometryV2.
Definition at line 189 of file qgspointv2.cpp.
|
inlineoverridevirtual |
Deletes a vertex within the geometry.
| position | vertex id for vertex to delete |
Implements QgsAbstractGeometryV2.
Definition at line 78 of file qgspointv2.h.
|
inlineoverridevirtual |
Returns the inherent dimension of the geometry.
For example, this is 0 for a point geometry, 1 for a linestring and 2 for a polygon.
Implements QgsAbstractGeometryV2.
Definition at line 54 of file qgspointv2.h.
|
overridevirtual |
Draws the geometry using the specified QPainter.
| p | destination QPainter |
Implements QgsAbstractGeometryV2.
Definition at line 173 of file qgspointv2.cpp.
|
overridevirtual |
Sets the geometry from a WKB string.
Implements QgsAbstractGeometryV2.
Definition at line 56 of file qgspointv2.cpp.
|
overridevirtual |
Sets the geometry from a WKT string.
Implements QgsAbstractGeometryV2.
Definition at line 76 of file qgspointv2.cpp.
|
inlineoverridevirtual |
Returns a unique string representing the geometry type.
Implements QgsAbstractGeometryV2.
Definition at line 51 of file qgspointv2.h.
|
inlineoverridevirtual |
Inserts a vertex into the geometry.
| position | vertex id for position of inserted vertex |
| vertex | vertex to insert |
Implements QgsAbstractGeometryV2.
Definition at line 76 of file qgspointv2.h.
|
inline |
Definition at line 44 of file qgspointv2.h.
|
overridevirtual |
Moves a vertex within the geometry.
| position | vertex id for vertex to move |
| newPos | new position of vertex |
Implements QgsAbstractGeometryV2.
Definition at line 197 of file qgspointv2.cpp.
|
overridevirtual |
Returns next vertex id and coordinates.
| id | initial value should be the starting vertex id. The next vertex id will be stored in this variable if found. |
| vertex | container for found node |
Implements QgsAbstractGeometryV2.
Definition at line 220 of file qgspointv2.cpp.
| bool QgsPointV2::operator!= | ( | const QgsPointV2 & | pt | ) | const |
Definition at line 46 of file qgspointv2.cpp.
| bool QgsPointV2::operator== | ( | const QgsPointV2 & | pt | ) | const |
Definition at line 37 of file qgspointv2.cpp.
|
inline |
Definition at line 49 of file qgspointv2.h.
|
inline |
Definition at line 46 of file qgspointv2.h.
|
inline |
Definition at line 47 of file qgspointv2.h.
|
inline |
Definition at line 48 of file qgspointv2.h.
|
overridevirtual |
Transforms the geometry using a coordinate transform.
| ct | coordinate transform |
Implements QgsAbstractGeometryV2.
Definition at line 184 of file qgspointv2.cpp.
|
overridevirtual |
Transforms the geometry using a QTransform object.
| t | QTransform transformation |
Implements QgsAbstractGeometryV2.
Definition at line 242 of file qgspointv2.cpp.
|
overridevirtual |
Returns the size of the WKB representation of the geometry.
Implements QgsAbstractGeometryV2.
Definition at line 104 of file qgspointv2.cpp.
|
inline |
Definition at line 41 of file qgspointv2.h.
|
inline |
Definition at line 42 of file qgspointv2.h.
|
inline |
Definition at line 43 of file qgspointv2.h.
1.8.6