26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_WKBREADER_H 
   27 #define __TERRALIB_GEOMETRY_INTERNAL_WKBREADER_H 
   30 #include "../common/Enums.h" 
   31 #include "../common/Static.h" 
   41     class GeometryCollection;
 
   44     class MultiLineString;
 
   49     class PolyhedralSurface;
 
A base type for static classes.
 
It is a collection of other geometric objects.
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
 
LineString is a curve with linear interpolation between points.
 
A LinearRing is a LineString that is both closed and simple.
 
A point with x and y coordinate values.
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings.
 
PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments.
 
A class that deserializes a geometry from a valid WKB.
 
static Geometry * readHex(const char *hwkb)
It returns a valid geometry from a given hex-encoded WKB.
 
static te::gm::Point * getPointM(const char *wkb, const char **endptr)
 
static te::gm::Point * getPointZM(const char *wkb, const char **endptr)
 
static te::gm::Geometry * getGeometry(const char *wkb, const char **endptr)
 
static te::gm::Polygon * getPolygon(const char *wkb, const char **endptr)
 
static te::gm::LinearRing * getLinearRing(const char *wkb, const char **endptr, te::common::MachineByteOrder byteOrder, GeomType gType)
 
static te::gm::Point * getPoint(const char *wkb, const char **endptr)
 
static Geometry * read(const char *wkb)
It returns a valid geometry from a given WKB.
 
static te::gm::GeometryCollection * getGeometryCollection(const char *wkb, const char **endptr)
 
static te::gm::PolyhedralSurface * getPolyhedralSurface(const char *wkb, const char **endptr)
 
static te::gm::LineString * getLineString(const char *wkb, const char **endptr)
 
static te::gm::Point * getPointZ(const char *wkb, const char **endptr)
 
MachineByteOrder
Endianness.
 
GeomType
Each enumerated type is compatible with a Well-known Binary (WKB) type code.
 
#define TEGEOMEXPORT
You can use this macro in order to export/import classes and functions from this module.
 
Proxy configuration file for TerraView (see terraview_config.h).
 
Enumerations of XML module.