|
swift
|
Geodetic coordinate. More...
Public Member Functions | |
| CCoordinateGeodetic ()=default | |
| Default constructor (null coordinate) | |
| CCoordinateGeodetic (const QVector3D &normal) | |
| Constructor by normal vector. | |
| CCoordinateGeodetic (const std::array< double, 3 > &normalVector) | |
| Constructor by normal vector. | |
| CCoordinateGeodetic (const CLatitude &latitude, const CLongitude &longitude) | |
| Constructor by latitude/longitude, height is null. | |
| CCoordinateGeodetic (const CLatitude &latitude, const CLongitude &longitude, const aviation::CAltitude &geodeticHeight) | |
| Constructor by latitude/longitude/height (or altitude) | |
| CCoordinateGeodetic (double latitudeDegrees, double longitudeDegrees) | |
| Constructor by double values, but no geodetic height. | |
| CCoordinateGeodetic (double latitudeDegrees, double longitudeDegrees, double heightFeet) | |
| Constructor by values. | |
| CCoordinateGeodetic (const ICoordinateGeodetic &coordinate) | |
| Constructor by interface. | |
| CCoordinateGeodetic | calculatePosition (const physical_quantities::CLength &distance, const physical_quantities::CAngle &relBearing) const |
| Calculate a position in distance/bearing. | |
| CLatitude | latitude () const |
| Latitude. More... | |
| CLongitude | longitude () const |
| Longitude. More... | |
| const aviation::CAltitude & | geodeticHeight () const |
| Height, ellipsoidal or geodetic height (used in GPS) More... | |
| QVector3D | normalVector () const |
| Normal vector. More... | |
| std::array< double, 3 > | normalVectorDouble () const |
| Normal vector with double precision. More... | |
| QVariant | propertyByIndex (CPropertyIndexRef index) const |
| Property by index. More... | |
| void | setPropertyByIndex (CPropertyIndexRef index, const QVariant &variant) |
| Set property by index. More... | |
| int | comparePropertyByIndex (CPropertyIndexRef index, const CCoordinateGeodetic &compareValue) const |
| Set property by index. More... | |
| CCoordinateGeodetic & | switchUnit (const physical_quantities::CLengthUnit &unit) |
| Switch unit of height. | |
| void | setLatitude (const CLatitude &latitude) |
| Set latitude. | |
| void | setLatitudeFromWgs84 (const QString &wgs) |
| Set latitude. | |
| void | setLongitude (const CLongitude &longitude) |
| Set longitude. | |
| void | setLongitudeFromWgs84 (const QString &wgs) |
| Set longitude. | |
| void | setLatLong (const CLatitude &latitude, const CLongitude &longitude) |
| Set latitude and longitude. | |
| void | setLatLongFromWgs84 (const QString &latitude, const QString &longitude) |
| Set latitude and longitude. | |
| void | setGeodeticHeight (const aviation::CAltitude &height) |
| Set height (ellipsoidal or geodetic height) | |
| void | setGeodeticHeightToNull () |
| Set height to NULL. | |
| void | setNormalVector (const QVector3D &normal) |
| Set normal vector. | |
| void | setNormalVector (double x, double y, double z) |
| Set normal vector. | |
| void | setNormalVector (const std::array< double, 3 > &normalVector) |
| Set normal vector. | |
| int | clampVector () |
| Clamp vector values if out [-1, 1]. | |
| void | setNull () |
| Set to null. | |
| bool | isNull () const |
| Is null? | |
| QString | convertToQString (bool i18n=false) const |
| Cast as QString. More... | |
Public Member Functions inherited from swift::misc::mixin::MetaType< Derived > | |
| int | getMetaTypeId () const |
| Returns the Qt meta type ID of this object. More... | |
| QString | getClassName () const |
| Class name. | |
| bool | isA (int metaTypeId) const |
| Returns true if this object is an instance of the class with the given meta type ID, or one of its subclasses. | |
Public Member Functions inherited from swift::misc::mixin::DBusByMetaClass< Derived, Tags > | |
| void | marshallToDbus (QDBusArgument &arg, Tags...) const |
| Marshall without begin/endStructure, for when composed within another object. | |
| void | unmarshallFromDbus (const QDBusArgument &arg, Tags...) |
| Unmarshall without begin/endStructure, for when composed within another object. | |
Public Member Functions inherited from swift::misc::mixin::DataStreamByMetaClass< Derived > | |
| void | marshalToDataStream (QDataStream &stream) const |
| Marshal a value to a QDataStream. | |
| void | unmarshalFromDataStream (QDataStream &stream) |
| Unmarshal a value from a QDataStream. | |
Public Member Functions inherited from swift::misc::mixin::JsonByMetaClass< Derived > | |
| QJsonObject | toJson () const |
| Cast to JSON object. | |
| QString | toJsonString (QJsonDocument::JsonFormat format=QJsonDocument::Indented) const |
| Convenience function JSON as string. | |
| void | convertFromJson (const QJsonObject &json) |
| Assign from JSON object. | |
| void | convertFromJson (const QString &jsonString, bool acceptCacheFormat=false) |
| Assign from JSON object string. | |
Public Member Functions inherited from swift::misc::mixin::String< Derived > | |
| QString | toQString (bool i18n=false) const |
| Cast as QString. | |
| std::string | toStdString (bool i18n=false) const |
| To std string. | |
| QString | stringForStreaming () const |
| String for streaming operators. | |
Public Member Functions inherited from swift::misc::mixin::Index< Derived > | |
| CPropertyIndexList | apply (const CPropertyIndexVariantMap &indexMap, bool skipEqualValues=false) |
| Update by variant map. More... | |
| void | setPropertyByIndex (CPropertyIndexRef index, const QVariant &variant) |
| Set property by index. | |
| QVariant | propertyByIndex (CPropertyIndexRef index) const |
| Property by index. | |
| int | comparePropertyByIndex (CPropertyIndexRef index, const Derived &compareValue) const |
| Compare for index. | |
| bool | equalsPropertyByIndex (const QVariant &compareValue, CPropertyIndexRef index) const |
| Is given variant equal to value of property index? | |
Public Member Functions inherited from swift::misc::mixin::Icon< Derived, IconIndex > | |
| CIcons::IconIndex | toIcon () const |
| As icon, not implemented by all classes. | |
Public Member Functions inherited from swift::misc::geo::ICoordinateGeodetic | |
| ICoordinateGeodetic ()=default | |
| Ctor. | |
| virtual | ~ICoordinateGeodetic ()=default |
| Destructor. | |
| ICoordinateGeodetic (const ICoordinateGeodetic &)=default | |
| Copy constructor. | |
| ICoordinateGeodetic & | operator= (const ICoordinateGeodetic &)=default |
| Copy assignment operator. | |
| bool | equalNormalVectorDouble (const std::array< double, 3 > &otherVector) const |
| Is equal? Epsilon considered. | |
| bool | equalNormalVectorDouble (const ICoordinateGeodetic &otherCoordinate) const |
| Is equal, epsilon considered? | |
| QString | latitudeAsString () const |
| Latitude as string. | |
| QString | longitudeAsString () const |
| Longitude as string. | |
| QString | geodeticHeightAsString () const |
| Height as string. | |
| bool | isGeodeticHeightNull () const |
| Geodetic height null? | |
| bool | hasMSLGeodeticHeight () const |
| Geodetic height not null and aviation::CAltitude::MeanSeaLevel. | |
| physical_quantities::CLength | calculateGreatCircleDistance (const ICoordinateGeodetic &otherCoordinate) const |
| Great circle distance. | |
| bool | isWithinRange (const ICoordinateGeodetic &otherCoordinate, const physical_quantities::CLength &range) const |
| Object within range? | |
| physical_quantities::CAngle | calculateBearing (const ICoordinateGeodetic &otherCoordinate) const |
| Initial bearing. | |
| QVariant | propertyByIndex (CPropertyIndexRef index) const |
| Property by index. More... | |
| int | comparePropertyByIndex (CPropertyIndexRef index, const ICoordinateGeodetic &compareValue) const |
| Compare for index. More... | |
| QString | convertToQString (bool i18n=false) const |
| Cast as QString. More... | |
| bool | isNaNVector () const |
| Check values. | |
| bool | isNaNVectorDouble () const |
| Check values. | |
| bool | isInfVector () const |
| Check values. | |
| bool | isInfVectorDouble () const |
| Check values. | |
| bool | isValidVectorRange () const |
| Check values. | |
Static Public Member Functions | |
| static CCoordinateGeodetic | fromWgs84 (const QString &latitudeWgs84, const QString &longitudeWgs84, const aviation::CAltitude &geodeticHeight={}) |
| Coordinate by WGS84 position data. | |
| static const CCoordinateGeodetic & | null () |
| null coordinate | |
Static Public Member Functions inherited from swift::misc::mixin::MetaType< Derived > | |
| static void | registerMetadata () |
| Register metadata. | |
Static Public Member Functions inherited from swift::misc::mixin::JsonByMetaClass< Derived > | |
| template<class DerivedObj = Derived> | |
| static DerivedObj | fromJson (const QJsonObject &json) |
| Get object from QJsonObject. | |
| template<class DerivedObj = Derived> | |
| static DerivedObj | fromJson (const QString &jsonString, bool acceptCacheJson=false) |
| Get object from JSON string. | |
| template<class DerivedObj = Derived> | |
| static DerivedObj | fromJsonNoThrow (const QString &jsonString, bool acceptCacheJson, bool &success, QString &errMsg) |
| Get object from JSON string. | |
Static Public Member Functions inherited from swift::misc::geo::ICoordinateGeodetic | |
| static bool | isValidVector (const std::array< double, 3 > &v) |
| Check values. | |
Additional Inherited Members | |
Public Types inherited from swift::misc::CValueObject< CCoordinateGeodetic > | |
| using | base_type = CEmpty |
| Base class. | |
Public Types inherited from swift::misc::CEmpty | |
| using | base_type = CEmpty |
| Base class is alias of itself. | |
Public Types inherited from swift::misc::mixin::Index< Derived > | |
| enum | ColumnIndex { IndexPixmap = 10 , IndexIcon , IndexString } |
| Base class enums. | |
Public Types inherited from swift::misc::geo::ICoordinateGeodetic | |
| enum | ColumnIndex { IndexLatitude = CPropertyIndexRef::GlobalIndexICoordinateGeodetic , IndexLongitude , IndexLatitudeAsString , IndexLongitudeAsString , IndexGeodeticHeight , IndexGeodeticHeightAsString , IndexNormalVector } |
| Properties by index. | |
Protected Member Functions inherited from swift::misc::CValueObject< CCoordinateGeodetic > | |
| CValueObject ()=default | |
| Default constructor. | |
| CValueObject (const CValueObject &)=default | |
| Copy constructor. | |
| CValueObject & | operator= (const CValueObject &)=default |
| Copy assignment operator. | |
| ~CValueObject ()=default | |
| Destructor. | |
| CEmpty ()=default | |
| Inheriting constructors. | |
| CEmpty (const CEmpty &)=default | |
| Inheriting constructors. | |
Protected Member Functions inherited from swift::misc::CEmpty | |
| CEmpty ()=default | |
| Protected default constructor. | |
| CEmpty (const CEmpty &)=default | |
| Protected copy constructor. | |
| CEmpty & | operator= (const CEmpty &)=default |
| Protected copy assignment operator. | |
| ~CEmpty ()=default | |
| Non-virtual protected destructor. | |
Static Protected Member Functions inherited from swift::misc::geo::ICoordinateGeodetic | |
| static bool | canHandleIndex (CPropertyIndexRef index) |
| Can given index be handled? | |
Geodetic coordinate.
Definition at line 229 of file coordinategeodetic.h.
| int swift::misc::geo::CCoordinateGeodetic::comparePropertyByIndex | ( | CPropertyIndexRef | index, |
| const CCoordinateGeodetic & | compareValue | ||
| ) | const |
Set property by index.
Definition at line 299 of file coordinategeodetic.cpp.
| QString swift::misc::geo::CCoordinateGeodetic::convertToQString | ( | bool | i18n = false | ) | const |
Cast as QString.
Definition at line 22 of file coordinategeodetic.cpp.
|
inlinevirtual |
Height, ellipsoidal or geodetic height (used in GPS)
This is approximately MSL (orthometric) height, aka altitude, aka elevation. The terms "geodetic height", "altitude", and "elevation" are interchangable. "Geodetic height" is the generic, context-free term for the vertical component of a position. This is commonly called "altitude" for objects that can move freely in the vertical component. By a similar convention, "elevation" is commonly used for objects that are fixed to the ground.
Implements swift::misc::geo::ICoordinateGeodetic.
Definition at line 273 of file coordinategeodetic.h.
|
virtual |
Latitude.
Implements swift::misc::geo::ICoordinateGeodetic.
Definition at line 380 of file coordinategeodetic.cpp.
|
virtual |
Longitude.
Implements swift::misc::geo::ICoordinateGeodetic.
Definition at line 385 of file coordinategeodetic.cpp.
|
virtual |
Normal vector.
Implements swift::misc::geo::ICoordinateGeodetic.
Definition at line 391 of file coordinategeodetic.cpp.
|
virtual |
Normal vector with double precision.
Implements swift::misc::geo::ICoordinateGeodetic.
Definition at line 396 of file coordinategeodetic.cpp.
| QVariant swift::misc::geo::CCoordinateGeodetic::propertyByIndex | ( | CPropertyIndexRef | index | ) | const |
Property by index.
Definition at line 271 of file coordinategeodetic.cpp.
| void swift::misc::geo::CCoordinateGeodetic::setPropertyByIndex | ( | CPropertyIndexRef | index, |
| const QVariant & | variant | ||
| ) |
Set property by index.
Definition at line 278 of file coordinategeodetic.cpp.