OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Geospatial::GeoGeometryCollection Class Reference

#include <Types.h>

+ Inheritance diagram for Geospatial::GeoGeometryCollection:
+ Collaboration diagram for Geospatial::GeoGeometryCollection:

Public Member Functions

 GeoGeometryCollection (const std::vector< double > &coords, const std::vector< int32_t > &ring_sizes, const std::vector< int32_t > &poly_rings, const std::vector< int32_t > &geo_kinds)
 
 GeoGeometryCollection (const std::string &wkt)
 
void getColumns (std::vector< double > &coords, std::vector< int32_t > &ring_sizes, std::vector< int32_t > &poly_rings, std::vector< int32_t > &geo_kinds, std::vector< double > &bounds) const
 
GeoType getType () const final
 
std::unique_ptr< GeoBaseclone () const final
 
- Public Member Functions inherited from Geospatial::GeoBase
 GeoBase ()
 
virtual ~GeoBase ()
 
std::string getWktString () const
 
bool getWkb (std::vector< uint8_t > &) const
 
const OGRGeometry * getOGRGeometry () const
 
int32_t getBestPlanarSRID () const
 
bool transform (int32_t srid0, int32_t srid1)
 
bool transform (SQLTypeInfo &ti)
 
virtual bool operator== (const GeoBase &other) const
 
bool isEmpty () const
 
std::unique_ptr< GeoBaserun (GeoOp op, const GeoBase &other) const
 
std::unique_ptr< GeoBaseoptimized_run (GeoOp op, const GeoBase &other) const
 
std::unique_ptr< GeoBaserun (GeoOp op, double param) const
 
bool run (GeoOp op) const
 

Protected Member Functions

 GeoGeometryCollection (OGRGeometry *geom, const bool owns_geom_obj)
 
- Protected Member Functions inherited from Geospatial::GeoBase
 GeoBase (OGRGeometry *geom, const bool owns_geom_obj)
 

Friends

class GeoTypesFactory
 

Additional Inherited Members

- Public Types inherited from Geospatial::GeoBase
enum  GeoType {
  GeoType::kPOINT, GeoType::kLINESTRING, GeoType::kPOLYGON, GeoType::kMULTIPOLYGON,
  GeoType::kGEOMETRY, GeoType::kGEOMETRYCOLLECTION, GeoType::kMULTILINESTRING, GeoType::kMULTIPOINT
}
 
enum  GeoOp {
  GeoOp::kPROJECTION = 0, GeoOp::kINTERSECTION = 1, GeoOp::kDIFFERENCE = 2, GeoOp::kUNION = 3,
  GeoOp::kBUFFER = 4, GeoOp::kISVALID = 5, GeoOp::kISEMPTY = 6, GeoOp::kEQUALS = 7,
  GeoOp::kCONCAVEHULL = 8, GeoOp::kCONVEXHULL = 9
}
 
- Static Public Member Functions inherited from Geospatial::GeoBase
static std::shared_ptr
< OGRCoordinateTransformation > 
getTransformation (int32_t srid0, int32_t srid1)
 
- Static Protected Member Functions inherited from Geospatial::GeoBase
static int createFromWktString (const std::string &wkt, OGRGeometry **geom)
 
static int createFromWkbView (OGRGeometry **geom, WkbView const)
 
- Protected Attributes inherited from Geospatial::GeoBase
OGRGeometry * geom_ = nullptr
 
bool owns_geom_obj_
 

Detailed Description

Definition at line 263 of file Types.h.

Constructor & Destructor Documentation

Geospatial::GeoGeometryCollection::GeoGeometryCollection ( const std::vector< double > &  coords,
const std::vector< int32_t > &  ring_sizes,
const std::vector< int32_t > &  poly_rings,
const std::vector< int32_t > &  geo_kinds 
)
inline

Definition at line 265 of file Types.h.

Referenced by clone().

268  {};

+ Here is the caller graph for this function:

Geospatial::GeoGeometryCollection::GeoGeometryCollection ( const std::string &  wkt)

Definition at line 979 of file Types.cpp.

References CHECK, Geospatial::GeoBase::createFromWktString(), and Geospatial::GeoBase::geom_.

979  {
980  const auto err = GeoBase::createFromWktString(wkt, &geom_);
981  if (err != OGRERR_NONE) {
982  throw GeoTypesError("GeometryCollection", err);
983  }
984  CHECK(geom_);
985  if (wkbFlatten(geom_->getGeometryType()) != OGRwkbGeometryType::wkbGeometryCollection) {
986  throw GeoTypesError("GeometryCollection",
987  "Unexpected geometry type from WKT string: " +
988  std::string(OGRGeometryTypeToName(geom_->getGeometryType())));
989  }
990 }
OGRGeometry * geom_
Definition: Types.h:102
static int createFromWktString(const std::string &wkt, OGRGeometry **geom)
Definition: Types.cpp:155
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

Geospatial::GeoGeometryCollection::GeoGeometryCollection ( OGRGeometry *  geom,
const bool  owns_geom_obj 
)
inlineprotected

Definition at line 281 of file Types.h.

References Geospatial::GeoBase::isEmpty().

282  : GeoBase(geom, owns_geom_obj) {
283  if (!isEmpty()) {
284  throw GeoTypesError("GeoTypesFactory", "Non-empty GEOMETRYCOLLECTION");
285  }
286  }
bool isEmpty() const
Definition: Types.cpp:197

+ Here is the call graph for this function:

Member Function Documentation

std::unique_ptr< GeoBase > Geospatial::GeoGeometryCollection::clone ( ) const
finalvirtual

Implements Geospatial::GeoBase.

Definition at line 974 of file Types.cpp.

References CHECK, GeoGeometryCollection(), and Geospatial::GeoBase::geom_.

974  {
975  CHECK(geom_);
976  return std::unique_ptr<GeoBase>(new GeoGeometryCollection(geom_->clone(), true));
977 }
OGRGeometry * geom_
Definition: Types.h:102
GeoGeometryCollection(const std::vector< double > &coords, const std::vector< int32_t > &ring_sizes, const std::vector< int32_t > &poly_rings, const std::vector< int32_t > &geo_kinds)
Definition: Types.h:265
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

void Geospatial::GeoGeometryCollection::getColumns ( std::vector< double > &  coords,
std::vector< int32_t > &  ring_sizes,
std::vector< int32_t > &  poly_rings,
std::vector< int32_t > &  geo_kinds,
std::vector< double > &  bounds 
) const
inline

Definition at line 271 of file Types.h.

275  {};
GeoType Geospatial::GeoGeometryCollection::getType ( ) const
inlinefinalvirtual

Friends And Related Function Documentation

friend class GeoTypesFactory
friend

Definition at line 288 of file Types.h.


The documentation for this class was generated from the following files: