Go to the documentation of this file.
   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 
  
 
void visit(const te::gm::MultiLineString &visited)
 
MultiPoint is a GeometryCollection whose elements are restricted to points.
 
void write(const te::gm::Geometry *geom)
It serializes the geometry to an EWKB representation into the specified buffer.
 
void visit(const te::gm::GeometryCollection &visited)
 
MachineByteOrder
Endianness.
 
void visit(const te::gm::Geometry &)
 
void visit(const te::gm::PolyhedralSurface &)
 
PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments.
 
char * m_ewkb
A pointer that marks the current position in a buffer to be write when parsing the geometry.
 
void visit(const te::gm::LineString &visited)
 
Surface is an abstract class that represents a 2-dimensional geometric objects.
 
It is a collection of other geometric objects.
 
void visit(const te::gm::TIN &)
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings.
 
void visit(const te::gm::Point &visited)
 
void visit(const te::gm::CircularString &)
 
CurvePolygon is a planar surface defined by 1 exterior boundary and 0 or more interior boundaries.
 
void visit(const te::gm::CompoundCurve &)
 
#define TEPGISEXPORT
You can use this macro in order to export/import classes and functions from this module.
 
void visit(const te::gm::MultiSurface &)
 
te::common::MachineByteOrder m_byteOrder
The byte order used to encode the EWKB.
 
void visit(const te::gm::MultiPoint &visited)
 
CompoundCurve is a curve that may have circular and linear segments.
 
MultiPolygon is a MultiSurface whose elements are Polygons.
 
TIN (triangulated irregular network) is a PolyhedralSurface consisting only of Triangle patches.
 
void visit(const te::gm::Triangle &)
 
EWKBWriter(char *ewkb, te::common::MachineByteOrder byteOrder=te::common::NDR)
It constructs a new EWKB writer.
 
void visit(const te::gm::MultiCurve &)
 
LineString is a curve with linear interpolation between points.
 
A visitor interface for the Geometry hierarchy.
 
bool m_outputSRID
If true we add a bit indicating that the srid will be outputed with the gometry.
 
CircularString is a curve with circular interpolation between points.
 
void visit(const te::gm::LinearRing &visited)
 
Triangle is a polygon with 3 distinct, non-collinear vertices and no interior boundary.
 
void visit(const te::gm::Surface &)
 
Proxy configuration file for TerraView (see terraview_config.h).
 
void visit(const te::gm::Curve &)
 
MultiLineString is a MultiCurve whose elements are LineStrings.
 
Curve is an abstract class that represents 1-dimensional geometric objects stored as a sequence of co...
 
A LinearRing is a LineString that is both closed and simple.
 
void reset(char *ewkb, te::common::MachineByteOrder byteOrder=te::common::NDR)
It resets the EWKB writer an allows a new geometry to be seriealized to a new buffer.
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
 
void visit(const te::gm::Polygon &visited)
 
An utility class for writing a PostGIS EWKB.
 
A point with x and y coordinate values.
 
void visit(const te::gm::CurvePolygon &)
 
static void write(const te::gm::Geometry *geom, char *ewkb, te::common::MachineByteOrder byteOrder=te::common::NDR)
It serializes the geometry to an EWKB representation into the specified buffer.
 
void visit(const te::gm::MultiPolygon &visited)
 
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.