Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::GeoTypeInfo Struct Reference
Inheritance diagram for duckdb::GeoTypeInfo:
Collaboration diagram for duckdb::GeoTypeInfo:

Public Member Functions

void Serialize (Serializer &serializer) const override
 
shared_ptr< ExtraTypeInfoCopy () const override
 
- Public Member Functions inherited from duckdb::ExtraTypeInfo
 ExtraTypeInfo (ExtraTypeInfoType type)
 
 ExtraTypeInfo (ExtraTypeInfoType type, string alias)
 
bool Equals (ExtraTypeInfo *other_p) const
 
virtual shared_ptr< ExtraTypeInfoDeepCopy () const
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Static Public Member Functions

static shared_ptr< ExtraTypeInfoDeserialize (Deserializer &source)
 
- Static Public Member Functions inherited from duckdb::ExtraTypeInfo
static shared_ptr< ExtraTypeInfoDeserialize (Deserializer &source)
 

Public Attributes

CoordinateReferenceSystem crs
 
- Public Attributes inherited from duckdb::ExtraTypeInfo
ExtraTypeInfoType type
 
string alias
 
unique_ptr< ExtensionTypeInfoextension_info
 

Protected Member Functions

bool EqualsInternal (ExtraTypeInfo *other_p) const override
 
- Protected Member Functions inherited from duckdb::ExtraTypeInfo
 ExtraTypeInfo (const ExtraTypeInfo &other)
 
ExtraTypeInfooperator= (const ExtraTypeInfo &other)
 

Constructor & Destructor Documentation

◆ GeoTypeInfo()

duckdb::GeoTypeInfo::GeoTypeInfo ( )
72656 : ExtraTypeInfo(ExtraTypeInfoType::GEO_TYPE_INFO) {
72657}

Member Function Documentation

◆ Serialize()

void duckdb::GeoTypeInfo::Serialize ( Serializer serializer) const
overridevirtual

Reimplemented from duckdb::ExtraTypeInfo.

◆ Copy()

shared_ptr< ExtraTypeInfo > duckdb::GeoTypeInfo::Copy ( ) const
overridevirtual

Reimplemented from duckdb::ExtraTypeInfo.

72665 {
72666 return make_shared_ptr<GeoTypeInfo>(*this);
72667}

◆ EqualsInternal()

bool duckdb::GeoTypeInfo::EqualsInternal ( ExtraTypeInfo other_p) const
overrideprotectedvirtual

Reimplemented from duckdb::ExtraTypeInfo.

72659 {
72660 // No additional info to compare
72661 const auto &other = other_p->Cast<GeoTypeInfo>();
72662 return other.crs.Equals(crs);
72663}

The documentation for this struct was generated from the following file: