26 #ifndef __TERRALIB_POSTGIS_INTERNAL_EWKBWRITER_H    27 #define __TERRALIB_POSTGIS_INTERNAL_EWKBWRITER_H    30 #include "../common/Enums.h"    31 #include "../geometry/Visitor.h"    35 #include "../geometry_fw.h"   129 #endif  // __TERRALIB_POSTGIS_INTERNAL_EWKBWRITER_H PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments...
 
MultiPolygon is a MultiSurface whose elements are Polygons. 
 
An utility class for writing a PostGIS EWKB. 
 
void visit(const te::gm::TIN &)
 
void visit(const te::gm::CurvePolygon &)
 
Curve is an abstract class that represents 1-dimensional geometric objects stored as a sequence of co...
 
void visit(const te::gm::CircularString &)
 
te::common::MachineByteOrder m_byteOrder
The byte order used to encode the EWKB. 
 
void visit(const te::gm::CompoundCurve &)
 
void visit(const te::gm::Geometry &)
 
#define TEPGISEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
TIN (triangulated irregular network) is a PolyhedralSurface consisting only of Triangle patches...
 
char * m_ewkb
A pointer that marks the current position in a buffer to be write when parsing the geometry...
 
A LinearRing is a LineString that is both closed and simple. 
 
void visit(const te::gm::MultiCurve &)
 
MultiPoint is a GeometryCollection whose elements are restricted to points. 
 
void visit(const te::gm::PolyhedralSurface &)
 
LineString is a curve with linear interpolation between points. 
 
Triangle is a polygon with 3 distinct, non-collinear vertices and no interior boundary. 
 
A point with x and y coordinate values. 
 
bool m_outputSRID
If true we add a bit indicating that the srid will be outputed with the gometry. 
 
Configuration flags for the PostGIS Driver Implementation of TerraLib. 
 
CompoundCurve is a curve that may have circular and linear segments. 
 
CurvePolygon is a planar surface defined by 1 exterior boundary and 0 or more interior boundaries...
 
MachineByteOrder
Endianness. 
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards. 
 
void visit(const te::gm::Curve &)
 
MultiLineString is a MultiCurve whose elements are LineStrings. 
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings. 
 
void visit(const te::gm::MultiSurface &)
 
void visit(const te::gm::Triangle &)
 
MultiSurface is a class that represents a 2-dimensional GeometryCollection whose elements are surface...
 
MultiCurve is a class that represents a 1-dimensional GeometryCollection whose elements are curves...
 
It is a collection of other geometric objects. 
 
CircularString is a curve with circular interpolation between points. 
 
void visit(const te::gm::Surface &)
 
Surface is an abstract class that represents a 2-dimensional geometric objects. 
 
A visitor interface for the Geometry hierarchy.