#include <WKTParser.h>
Public Member Functions | |
Constructor | |
Initilizer methods. | |
| WKTParser () | |
| Default constructor. | |
Private Member Functions | |
Initializer methods. | |
Methods to initialize the grammar rules. | |
| void | initGeometries () |
| Initializes geometry tagged rules. | |
| void | initGeometriesZ () |
| Initializes geometries z tagged rules. | |
| void | initGeometriesM () |
| Initializes geometries m tagged rules. | |
| void | initGeometriesZM () |
| Initializes geometries zm tagged rules. | |
| void | initCoordinates () |
| Initializes coordinates rules. | |
| void | initPoint () |
| Initializes point rules. | |
| void | initLine () |
| Initializes line rules. | |
| void | initPolygon () |
| Initializes polygon rules. | |
| void | initMultiPoint () |
| Initializes multi point rules. | |
| void | initMultiLine () |
| Initializes multi line rules. | |
| void | initMultiPolygon () |
| Initializes multi polygon rules. | |
| void | initPolyhedralSurface () |
| Initializes polyhedral surface rules. | |
| void | initTIN () |
| Initializes TIN rules. | |
| void | initTriangle () |
| Initializes triangle rules. | |
| void | initGeometryCollection () |
| Initializes geometry collection rules. | |
Private Attributes | |
Rules of WKT Grammar. | |
| qi::rule< Iterator, ascii::space_type > | geometry |
| qi::rule< Iterator, ascii::space_type > | geometryTagged |
| qi::rule< Iterator, ascii::space_type > | geometryZTagged |
| qi::rule< Iterator, ascii::space_type > | geometryMTagged |
| qi::rule< Iterator, ascii::space_type > | geometryZMTagged |
| qi::rule< Iterator, ascii::space_type > | coordinate |
| qi::rule< Iterator, ascii::space_type > | coordinateZ |
| qi::rule< Iterator, ascii::space_type > | coordinateM |
| qi::rule< Iterator, ascii::space_type > | coordinateZM |
| qi::rule< Iterator, ascii::space_type > | pointTagged |
| qi::rule< Iterator, ascii::space_type > | pointZTagged |
| qi::rule< Iterator, ascii::space_type > | pointMTagged |
| qi::rule< Iterator, ascii::space_type > | pointZMTagged |
| qi::rule< Iterator, ascii::space_type > | lineStringTagged |
| qi::rule< Iterator, ascii::space_type > | lineStringZTagged |
| qi::rule< Iterator, ascii::space_type > | lineStringMTagged |
| qi::rule< Iterator, ascii::space_type > | lineStringZMTagged |
| qi::rule< Iterator, ascii::space_type > | polygonTagged |
| qi::rule< Iterator, ascii::space_type > | polygonZTagged |
| qi::rule< Iterator, ascii::space_type > | polygonMTagged |
| qi::rule< Iterator, ascii::space_type > | polygonZMTagged |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceTagged |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceZTagged |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceMTagged |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceZMTagged |
| qi::rule< Iterator, ascii::space_type > | multiPointTagged |
| qi::rule< Iterator, ascii::space_type > | multiPointZTagged |
| qi::rule< Iterator, ascii::space_type > | multiPointMTagged |
| qi::rule< Iterator, ascii::space_type > | multiPointZMTagged |
| qi::rule< Iterator, ascii::space_type > | multiLineStringTagged |
| qi::rule< Iterator, ascii::space_type > | multiLineStringZTagged |
| qi::rule< Iterator, ascii::space_type > | multiLineStringMTagged |
| qi::rule< Iterator, ascii::space_type > | multiLineStringZMTagged |
| qi::rule< Iterator, ascii::space_type > | multiPolygonTagged |
| qi::rule< Iterator, ascii::space_type > | multiPolygonZTagged |
| qi::rule< Iterator, ascii::space_type > | multiPolygonMTagged |
| qi::rule< Iterator, ascii::space_type > | multiPolygonZMTagged |
| qi::rule< Iterator, ascii::space_type > | triangleTagged |
| qi::rule< Iterator, ascii::space_type > | triangleZTagged |
| qi::rule< Iterator, ascii::space_type > | triangleMTagged |
| qi::rule< Iterator, ascii::space_type > | triangleZMTagged |
| qi::rule< Iterator, ascii::space_type > | tinTagged |
| qi::rule< Iterator, ascii::space_type > | tinZTagged |
| qi::rule< Iterator, ascii::space_type > | tinMTagged |
| qi::rule< Iterator, ascii::space_type > | tinZMTagged |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionTagged |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionZTagged |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionMTagged |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionZMTagged |
| qi::rule< Iterator, ascii::space_type > | pointTxt |
| qi::rule< Iterator, ascii::space_type > | pointZTxt |
| qi::rule< Iterator, ascii::space_type > | pointMTxt |
| qi::rule< Iterator, ascii::space_type > | pointZMTxt |
| qi::rule< Iterator, ascii::space_type > | lineStringTxt |
| qi::rule< Iterator, ascii::space_type > | lineStringZTxt |
| qi::rule< Iterator, ascii::space_type > | lineStringMTxt |
| qi::rule< Iterator, ascii::space_type > | lineStringZMTxt |
| qi::rule< Iterator, ascii::space_type > | linearRingTxt |
| qi::rule< Iterator, ascii::space_type > | linearRingZTxt |
| qi::rule< Iterator, ascii::space_type > | linearRingMTxt |
| qi::rule< Iterator, ascii::space_type > | linearRingZMTxt |
| qi::rule< Iterator, ascii::space_type > | polygonTxt |
| qi::rule< Iterator, ascii::space_type > | polygonZTxt |
| qi::rule< Iterator, ascii::space_type > | polygonMTxt |
| qi::rule< Iterator, ascii::space_type > | polygonZMTxt |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceTxt |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceZTxt |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceMTxt |
| qi::rule< Iterator, ascii::space_type > | polyhedralSurfaceZMTxt |
| qi::rule< Iterator, ascii::space_type > | multiPointTxt |
| qi::rule< Iterator, ascii::space_type > | multiPointZTxt |
| qi::rule< Iterator, ascii::space_type > | multiPointMTxt |
| qi::rule< Iterator, ascii::space_type > | multiPointZMTxt |
| qi::rule< Iterator, ascii::space_type > | multiLineStringTxt |
| qi::rule< Iterator, ascii::space_type > | multiLineStringZTxt |
| qi::rule< Iterator, ascii::space_type > | multiLineStringMTxt |
| qi::rule< Iterator, ascii::space_type > | multiLineStringZMTxt |
| qi::rule< Iterator, ascii::space_type > | multiPolygonTxt |
| qi::rule< Iterator, ascii::space_type > | multiPolygonZTxt |
| qi::rule< Iterator, ascii::space_type > | multiPolygonMTxt |
| qi::rule< Iterator, ascii::space_type > | multiPolygonZMTxt |
| qi::rule< Iterator, ascii::space_type > | tinTxt |
| qi::rule< Iterator, ascii::space_type > | tinZTxt |
| qi::rule< Iterator, ascii::space_type > | tinMTxt |
| qi::rule< Iterator, ascii::space_type > | tinZMTxt |
| qi::rule< Iterator, ascii::space_type > | triangleTxt |
| qi::rule< Iterator, ascii::space_type > | triangleZTxt |
| qi::rule< Iterator, ascii::space_type > | triangleMTxt |
| qi::rule< Iterator, ascii::space_type > | triangleZMTxt |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionTxt |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionZTxt |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionMTxt |
| qi::rule< Iterator, ascii::space_type > | geometryCollectionZMTxt |
| qi::rule< Iterator, ascii::space_type > | empty |
Access method. | |
Method to access the geometry generated. | |
| WKTActions | m_a |
| Geometry * | getGeometry () |
| It returns the geometry generated by the parser process. | |
| void | reset () |
| This method resets the Parser to original state. | |
Definition at line 62 of file WKTParser.h.
|
inline |
Default constructor.
Definition at line 72 of file WKTParser.h.
References empty, te::gm::WKTActions::end(), geometry, geometryMTagged, geometryTagged, geometryZMTagged, geometryZTagged, initCoordinates(), initGeometries(), initGeometriesM(), initGeometriesZ(), initGeometriesZM(), initGeometryCollection(), initLine(), initMultiLine(), initMultiPoint(), initMultiPolygon(), initPoint(), initPolygon(), initPolyhedralSurface(), initTIN(), initTriangle(), m_a, and WKTParser().
Referenced by WKTParser().
|
inline |
It returns the geometry generated by the parser process.
Definition at line 473 of file WKTParser.h.
References m_a.
|
inlineprivate |
Initializes coordinates rules.
Definition at line 186 of file WKTParser.h.
References coordinate, coordinateM, coordinateZ, coordinateZM, te::gm::WKTActions::createPoint(), te::gm::WKTActions::createPointM(), te::gm::WKTActions::createPointZ(), te::gm::WKTActions::createPointZM(), and m_a.
Referenced by WKTParser().
|
inlineprivate |
Initializes geometry tagged rules.
Definition at line 110 of file WKTParser.h.
References te::gm::WKTActions::endGeometry(), geometryCollectionTagged, geometryTagged, lineStringTagged, m_a, multiLineStringTagged, multiPointTagged, multiPolygonTagged, pointTagged, polygonTagged, polyhedralSurfaceTagged, tinTagged, and triangleTagged.
Referenced by WKTParser().
|
inlineprivate |
Initializes geometries m tagged rules.
Definition at line 148 of file WKTParser.h.
References te::gm::WKTActions::endGeometry(), geometryCollectionMTagged, geometryMTagged, lineStringMTagged, m_a, multiLineStringMTagged, multiPointMTagged, multiPolygonMTagged, pointMTagged, polygonMTagged, polyhedralSurfaceMTagged, tinMTagged, and triangleMTagged.
Referenced by WKTParser().
|
inlineprivate |
Initializes geometries z tagged rules.
Definition at line 129 of file WKTParser.h.
References te::gm::WKTActions::endGeometry(), geometryCollectionZTagged, geometryZTagged, lineStringZTagged, m_a, multiLineStringZTagged, multiPointZTagged, multiPolygonZTagged, pointZTagged, polygonZTagged, polyhedralSurfaceZTagged, tinZTagged, and triangleZTagged.
Referenced by WKTParser().
|
inlineprivate |
Initializes geometries zm tagged rules.
Definition at line 167 of file WKTParser.h.
References te::gm::WKTActions::endGeometry(), geometryCollectionZMTagged, geometryZMTagged, lineStringZMTagged, m_a, multiLineStringZMTagged, multiPointZMTagged, multiPolygonZMTagged, pointZMTagged, polygonZMTagged, polyhedralSurfaceZMTagged, tinZMTagged, and triangleZMTagged.
Referenced by WKTParser().
|
inlineprivate |
Initializes geometry collection rules.
Definition at line 438 of file WKTParser.h.
References te::gm::WKTActions::createGeometryCollection(), te::gm::WKTActions::createGeometryCollectionM(), te::gm::WKTActions::createGeometryCollectionZ(), te::gm::WKTActions::createGeometryCollectionZM(), empty, geometryCollectionMTagged, geometryCollectionMTxt, geometryCollectionTagged, geometryCollectionTxt, geometryCollectionZMTagged, geometryCollectionZMTxt, geometryCollectionZTagged, geometryCollectionZTxt, geometryMTagged, geometryTagged, geometryZMTagged, geometryZTagged, and m_a.
Referenced by WKTParser().
|
inlineprivate |
Initializes line rules.
Definition at line 237 of file WKTParser.h.
References coordinate, coordinateM, coordinateZ, coordinateZM, te::gm::WKTActions::createLine(), te::gm::WKTActions::createLinearRing(), te::gm::WKTActions::createLinearRingM(), te::gm::WKTActions::createLinearRingZ(), te::gm::WKTActions::createLinearRingZM(), te::gm::WKTActions::createLineM(), te::gm::WKTActions::createLineZ(), te::gm::WKTActions::createLineZM(), empty, linearRingMTxt, linearRingTxt, linearRingZMTxt, linearRingZTxt, lineStringMTagged, lineStringMTxt, lineStringTagged, lineStringTxt, lineStringZMTagged, lineStringZMTxt, lineStringZTagged, lineStringZTxt, and m_a.
Referenced by WKTParser().
|
inlineprivate |
Initializes multi line rules.
Definition at line 318 of file WKTParser.h.
References te::gm::WKTActions::createMultiLineString(), te::gm::WKTActions::createMultiLineStringM(), te::gm::WKTActions::createMultiLineStringZ(), te::gm::WKTActions::createMultiLineStringZM(), empty, lineStringMTxt, lineStringTxt, lineStringZMTxt, lineStringZTxt, m_a, multiLineStringMTagged, multiLineStringMTxt, multiLineStringTagged, multiLineStringTxt, multiLineStringZMTagged, multiLineStringZMTxt, multiLineStringZTagged, and multiLineStringZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes multi point rules.
Definition at line 294 of file WKTParser.h.
References te::gm::WKTActions::createMultiPoint(), te::gm::WKTActions::createMultiPointM(), te::gm::WKTActions::createMultiPointZ(), te::gm::WKTActions::createMultiPointZM(), empty, m_a, multiPointMTagged, multiPointMTxt, multiPointTagged, multiPointTxt, multiPointZMTagged, multiPointZMTxt, multiPointZTagged, multiPointZTxt, pointMTxt, pointTxt, pointZMTxt, and pointZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes multi polygon rules.
Definition at line 342 of file WKTParser.h.
References te::gm::WKTActions::createMultiPolygon(), te::gm::WKTActions::createMultiPolygonM(), te::gm::WKTActions::createMultiPolygonZ(), te::gm::WKTActions::createMultiPolygonZM(), empty, m_a, multiPolygonMTagged, multiPolygonMTxt, multiPolygonTagged, multiPolygonTxt, multiPolygonZMTagged, multiPolygonZMTxt, multiPolygonZTagged, multiPolygonZTxt, polygonMTxt, polygonTxt, polygonZMTxt, and polygonZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes point rules.
Definition at line 213 of file WKTParser.h.
References coordinate, coordinateM, coordinateZ, coordinateZM, te::gm::WKTActions::createPoint(), te::gm::WKTActions::createPointM(), te::gm::WKTActions::createPointZ(), te::gm::WKTActions::createPointZM(), empty, m_a, pointMTagged, pointMTxt, pointTagged, pointTxt, pointZMTagged, pointZMTxt, pointZTagged, and pointZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes polygon rules.
Definition at line 270 of file WKTParser.h.
References te::gm::WKTActions::createPolygon(), te::gm::WKTActions::createPolygonM(), te::gm::WKTActions::createPolygonZ(), te::gm::WKTActions::createPolygonZM(), empty, linearRingMTxt, linearRingTxt, linearRingZMTxt, linearRingZTxt, m_a, polygonMTagged, polygonMTxt, polygonTagged, polygonTxt, polygonZMTagged, polygonZMTxt, polygonZTagged, and polygonZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes polyhedral surface rules.
Definition at line 366 of file WKTParser.h.
References te::gm::WKTActions::createPolyhedralSurface(), te::gm::WKTActions::createPolyhedralSurfaceM(), te::gm::WKTActions::createPolyhedralSurfaceZ(), te::gm::WKTActions::createPolyhedralSurfaceZM(), empty, m_a, polygonMTxt, polygonTxt, polygonZMTxt, polygonZTxt, polyhedralSurfaceMTagged, polyhedralSurfaceMTxt, polyhedralSurfaceTagged, polyhedralSurfaceTxt, polyhedralSurfaceZMTagged, polyhedralSurfaceZMTxt, polyhedralSurfaceZTagged, and polyhedralSurfaceZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes TIN rules.
Definition at line 390 of file WKTParser.h.
References te::gm::WKTActions::createTIN(), te::gm::WKTActions::createTINM(), te::gm::WKTActions::createTINZ(), te::gm::WKTActions::createTINZM(), empty, m_a, polygonMTxt, polygonTxt, polygonZMTxt, polygonZTxt, tinMTagged, tinMTxt, tinTagged, tinTxt, tinZMTagged, tinZMTxt, tinZTagged, and tinZTxt.
Referenced by WKTParser().
|
inlineprivate |
Initializes triangle rules.
Definition at line 414 of file WKTParser.h.
References te::gm::WKTActions::createTriangle(), te::gm::WKTActions::createTriangleM(), te::gm::WKTActions::createTriangleZ(), te::gm::WKTActions::createTriangleZM(), empty, linearRingMTxt, linearRingTxt, linearRingZMTxt, linearRingZTxt, m_a, triangleMTagged, triangleMTxt, triangleTagged, triangleTxt, triangleZMTagged, triangleZMTxt, triangleZTagged, and triangleZTxt.
Referenced by WKTParser().
|
inline |
This method resets the Parser to original state.
Definition at line 483 of file WKTParser.h.
References m_a.
|
private |
Definition at line 500 of file WKTParser.h.
Referenced by initCoordinates(), initLine(), and initPoint().
|
private |
Definition at line 500 of file WKTParser.h.
Referenced by initCoordinates(), initLine(), and initPoint().
|
private |
Definition at line 500 of file WKTParser.h.
Referenced by initCoordinates(), initLine(), and initPoint().
|
private |
Definition at line 500 of file WKTParser.h.
Referenced by initCoordinates(), initLine(), and initPoint().
|
private |
Definition at line 566 of file WKTParser.h.
Referenced by initGeometryCollection(), initLine(), initMultiLine(), initMultiPoint(), initMultiPolygon(), initPoint(), initPolygon(), initPolyhedralSurface(), initTIN(), initTriangle(), and WKTParser().
|
private |
Definition at line 494 of file WKTParser.h.
Referenced by WKTParser().
|
private |
Definition at line 530 of file WKTParser.h.
Referenced by initGeometriesM(), and initGeometryCollection().
|
private |
Definition at line 563 of file WKTParser.h.
Referenced by initGeometryCollection().
|
private |
Definition at line 530 of file WKTParser.h.
Referenced by initGeometries(), and initGeometryCollection().
|
private |
Definition at line 563 of file WKTParser.h.
Referenced by initGeometryCollection().
|
private |
Definition at line 530 of file WKTParser.h.
Referenced by initGeometriesZM(), and initGeometryCollection().
|
private |
Definition at line 563 of file WKTParser.h.
Referenced by initGeometryCollection().
|
private |
Definition at line 530 of file WKTParser.h.
Referenced by initGeometriesZ(), and initGeometryCollection().
|
private |
Definition at line 563 of file WKTParser.h.
Referenced by initGeometryCollection().
|
private |
Definition at line 497 of file WKTParser.h.
Referenced by initGeometriesM(), initGeometryCollection(), and WKTParser().
|
private |
Definition at line 497 of file WKTParser.h.
Referenced by initGeometries(), initGeometryCollection(), and WKTParser().
|
private |
Definition at line 497 of file WKTParser.h.
Referenced by initGeometriesZM(), initGeometryCollection(), and WKTParser().
|
private |
Definition at line 497 of file WKTParser.h.
Referenced by initGeometriesZ(), initGeometryCollection(), and WKTParser().
|
private |
Definition at line 539 of file WKTParser.h.
Referenced by initLine(), initPolygon(), and initTriangle().
|
private |
Definition at line 539 of file WKTParser.h.
Referenced by initLine(), initPolygon(), and initTriangle().
|
private |
Definition at line 539 of file WKTParser.h.
Referenced by initLine(), initPolygon(), and initTriangle().
|
private |
Definition at line 539 of file WKTParser.h.
Referenced by initLine(), initPolygon(), and initTriangle().
|
private |
Definition at line 506 of file WKTParser.h.
Referenced by initGeometriesM(), and initLine().
|
private |
Definition at line 536 of file WKTParser.h.
Referenced by initLine(), and initMultiLine().
|
private |
Definition at line 506 of file WKTParser.h.
Referenced by initGeometries(), and initLine().
|
private |
Definition at line 536 of file WKTParser.h.
Referenced by initLine(), and initMultiLine().
|
private |
Definition at line 506 of file WKTParser.h.
Referenced by initGeometriesZM(), and initLine().
|
private |
Definition at line 536 of file WKTParser.h.
Referenced by initLine(), and initMultiLine().
|
private |
Definition at line 506 of file WKTParser.h.
Referenced by initGeometriesZ(), and initLine().
|
private |
Definition at line 536 of file WKTParser.h.
Referenced by initLine(), and initMultiLine().
|
private |
Definition at line 487 of file WKTParser.h.
Referenced by getGeometry(), initCoordinates(), initGeometries(), initGeometriesM(), initGeometriesZ(), initGeometriesZM(), initGeometryCollection(), initLine(), initMultiLine(), initMultiPoint(), initMultiPolygon(), initPoint(), initPolygon(), initPolyhedralSurface(), initTIN(), initTriangle(), reset(), and WKTParser().
|
private |
Definition at line 518 of file WKTParser.h.
Referenced by initGeometriesM(), and initMultiLine().
|
private |
Definition at line 551 of file WKTParser.h.
Referenced by initMultiLine().
|
private |
Definition at line 518 of file WKTParser.h.
Referenced by initGeometries(), and initMultiLine().
|
private |
Definition at line 551 of file WKTParser.h.
Referenced by initMultiLine().
|
private |
Definition at line 518 of file WKTParser.h.
Referenced by initGeometriesZM(), and initMultiLine().
|
private |
Definition at line 551 of file WKTParser.h.
Referenced by initMultiLine().
|
private |
Definition at line 518 of file WKTParser.h.
Referenced by initGeometriesZ(), and initMultiLine().
|
private |
Definition at line 551 of file WKTParser.h.
Referenced by initMultiLine().
|
private |
Definition at line 515 of file WKTParser.h.
Referenced by initGeometriesM(), and initMultiPoint().
|
private |
Definition at line 548 of file WKTParser.h.
Referenced by initMultiPoint().
|
private |
Definition at line 515 of file WKTParser.h.
Referenced by initGeometries(), and initMultiPoint().
|
private |
Definition at line 548 of file WKTParser.h.
Referenced by initMultiPoint().
|
private |
Definition at line 515 of file WKTParser.h.
Referenced by initGeometriesZM(), and initMultiPoint().
|
private |
Definition at line 548 of file WKTParser.h.
Referenced by initMultiPoint().
|
private |
Definition at line 515 of file WKTParser.h.
Referenced by initGeometriesZ(), and initMultiPoint().
|
private |
Definition at line 548 of file WKTParser.h.
Referenced by initMultiPoint().
|
private |
Definition at line 521 of file WKTParser.h.
Referenced by initGeometriesM(), and initMultiPolygon().
|
private |
Definition at line 554 of file WKTParser.h.
Referenced by initMultiPolygon().
|
private |
Definition at line 521 of file WKTParser.h.
Referenced by initGeometries(), and initMultiPolygon().
|
private |
Definition at line 554 of file WKTParser.h.
Referenced by initMultiPolygon().
|
private |
Definition at line 521 of file WKTParser.h.
Referenced by initGeometriesZM(), and initMultiPolygon().
|
private |
Definition at line 554 of file WKTParser.h.
Referenced by initMultiPolygon().
|
private |
Definition at line 521 of file WKTParser.h.
Referenced by initGeometriesZ(), and initMultiPolygon().
|
private |
Definition at line 554 of file WKTParser.h.
Referenced by initMultiPolygon().
|
private |
Definition at line 503 of file WKTParser.h.
Referenced by initGeometriesM(), and initPoint().
|
private |
Definition at line 533 of file WKTParser.h.
Referenced by initMultiPoint(), and initPoint().
|
private |
Definition at line 503 of file WKTParser.h.
Referenced by initGeometries(), and initPoint().
|
private |
Definition at line 533 of file WKTParser.h.
Referenced by initMultiPoint(), and initPoint().
|
private |
Definition at line 503 of file WKTParser.h.
Referenced by initGeometriesZM(), and initPoint().
|
private |
Definition at line 533 of file WKTParser.h.
Referenced by initMultiPoint(), and initPoint().
|
private |
Definition at line 503 of file WKTParser.h.
Referenced by initGeometriesZ(), and initPoint().
|
private |
Definition at line 533 of file WKTParser.h.
Referenced by initMultiPoint(), and initPoint().
|
private |
Definition at line 509 of file WKTParser.h.
Referenced by initGeometriesM(), and initPolygon().
|
private |
Definition at line 542 of file WKTParser.h.
Referenced by initMultiPolygon(), initPolygon(), initPolyhedralSurface(), and initTIN().
|
private |
Definition at line 509 of file WKTParser.h.
Referenced by initGeometries(), and initPolygon().
|
private |
Definition at line 542 of file WKTParser.h.
Referenced by initMultiPolygon(), initPolygon(), initPolyhedralSurface(), and initTIN().
|
private |
Definition at line 509 of file WKTParser.h.
Referenced by initGeometriesZM(), and initPolygon().
|
private |
Definition at line 542 of file WKTParser.h.
Referenced by initMultiPolygon(), initPolygon(), initPolyhedralSurface(), and initTIN().
|
private |
Definition at line 509 of file WKTParser.h.
Referenced by initGeometriesZ(), and initPolygon().
|
private |
Definition at line 542 of file WKTParser.h.
Referenced by initMultiPolygon(), initPolygon(), initPolyhedralSurface(), and initTIN().
|
private |
Definition at line 512 of file WKTParser.h.
Referenced by initGeometriesM(), and initPolyhedralSurface().
|
private |
Definition at line 545 of file WKTParser.h.
Referenced by initPolyhedralSurface().
|
private |
Definition at line 512 of file WKTParser.h.
Referenced by initGeometries(), and initPolyhedralSurface().
|
private |
Definition at line 545 of file WKTParser.h.
Referenced by initPolyhedralSurface().
|
private |
Definition at line 512 of file WKTParser.h.
Referenced by initGeometriesZM(), and initPolyhedralSurface().
|
private |
Definition at line 545 of file WKTParser.h.
Referenced by initPolyhedralSurface().
|
private |
Definition at line 512 of file WKTParser.h.
Referenced by initGeometriesZ(), and initPolyhedralSurface().
|
private |
Definition at line 545 of file WKTParser.h.
Referenced by initPolyhedralSurface().
|
private |
Definition at line 527 of file WKTParser.h.
Referenced by initGeometriesM(), and initTIN().
|
private |
Definition at line 557 of file WKTParser.h.
Referenced by initTIN().
|
private |
Definition at line 527 of file WKTParser.h.
Referenced by initGeometries(), and initTIN().
|
private |
Definition at line 557 of file WKTParser.h.
Referenced by initTIN().
|
private |
Definition at line 527 of file WKTParser.h.
Referenced by initGeometriesZM(), and initTIN().
|
private |
Definition at line 557 of file WKTParser.h.
Referenced by initTIN().
|
private |
Definition at line 527 of file WKTParser.h.
Referenced by initGeometriesZ(), and initTIN().
|
private |
Definition at line 557 of file WKTParser.h.
Referenced by initTIN().
|
private |
Definition at line 524 of file WKTParser.h.
Referenced by initGeometriesM(), and initTriangle().
|
private |
Definition at line 560 of file WKTParser.h.
Referenced by initTriangle().
|
private |
Definition at line 524 of file WKTParser.h.
Referenced by initGeometries(), and initTriangle().
|
private |
Definition at line 560 of file WKTParser.h.
Referenced by initTriangle().
|
private |
Definition at line 524 of file WKTParser.h.
Referenced by initGeometriesZM(), and initTriangle().
|
private |
Definition at line 560 of file WKTParser.h.
Referenced by initTriangle().
|
private |
Definition at line 524 of file WKTParser.h.
Referenced by initGeometriesZ(), and initTriangle().
|
private |
Definition at line 560 of file WKTParser.h.
Referenced by initTriangle().