Coordinate

Search for usage in LXR

#include <Coordinate.h>

Inheritance diagram for Coordinate:

Public Types

enum  Notation {
  Decimal , DMS , DM , UTM ,
  Astro
}
 

Properties

qreal altitude
 
Notation defaultNotation
 
qreal latitude
 
qreal longitude
 
- Properties inherited from QObject
 objectName
 

Signals

void altitudeChanged ()
 
void defaultNotationChanged (Notation defaultNotation)
 
void latitudeChanged ()
 
void longitudeChanged ()
 

Public Member Functions

 Coordinate (const Marble::GeoDataCoordinates &coordinates)
 
 Coordinate (qreal lon=0.0, qreal lat=0.0, qreal altitude=0.0, QObject *parent=nullptr)
 
qreal altitude () const
 
Q_INVOKABLE qreal bearing (qreal longitude, qreal latitude) const
 
Marble::GeoDataCoordinates coordinates () const
 
Notation defaultNotation ()
 
Q_INVOKABLE qreal distance (qreal longitude, qreal latitude) const
 
qreal latitude () const
 
qreal longitude () const
 
bool operator!= (const Coordinate &other) const
 
bool operator== (const Coordinate &other) const
 
void setAltitude (qreal alt)
 
void setCoordinates (const Marble::GeoDataCoordinates &coordinates)
 
void setDefaultNotation (Notation defaultNotation)
 
void setLatitude (qreal lat)
 
void setLongitude (qreal lon)
 
Q_INVOKABLE QString toGeoString (Coordinate::Notation notation=Coordinate::DMS, int precision=-1) const
 
- Public Member Functions inherited from QObject
 QObject (QObject *parent)
 
QBindable< QStringbindableObjectName ()
 
bool blockSignals (bool block)
 
const QObjectListchildren () const const
 
QMetaObject::Connection connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const const
 
void deleteLater ()
 
void destroyed (QObject *obj)
 
bool disconnect (const char *signal, const QObject *receiver, const char *method) const const
 
bool disconnect (const QObject *receiver, const char *method) const const
 
void dumpObjectInfo () const const
 
void dumpObjectTree () const const
 
QList< QByteArraydynamicPropertyNames () const const
 
virtual bool event (QEvent *e)
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 
findChild (const QString &name, Qt::FindChildOptions options) const const
 
QList< T > findChildren (const QRegularExpression &re, Qt::FindChildOptions options) const const
 
QList< T > findChildren (const QString &name, Qt::FindChildOptions options) const const
 
QList< T > findChildren (Qt::FindChildOptions options) const const
 
bool inherits (const char *className) const const
 
void installEventFilter (QObject *filterObj)
 
bool isQuickItemType () const const
 
bool isWidgetType () const const
 
bool isWindowType () const const
 
void killTimer (int id)
 
virtual const QMetaObjectmetaObject () const const
 
void moveToThread (QThread *targetThread)
 
QString objectName () const const
 
void objectNameChanged (const QString &objectName)
 
QObjectparent () const const
 
QVariant property (const char *name) const const
 
 Q_CLASSINFO (Name, Value)
 
 Q_EMIT Q_EMIT
 
 Q_ENUM (...)
 
 Q_ENUM_NS (...)
 
 Q_ENUMS (...)
 
 Q_FLAG (...)
 
 Q_FLAG_NS (...)
 
 Q_FLAGS (...)
 
 Q_GADGET Q_GADGET
 
 Q_GADGET_EXPORT (EXPORT_MACRO)
 
 Q_INTERFACES (...)
 
 Q_INVOKABLE Q_INVOKABLE
 
 Q_MOC_INCLUDE Q_MOC_INCLUDE
 
 Q_NAMESPACE Q_NAMESPACE
 
 Q_NAMESPACE_EXPORT (EXPORT_MACRO)
 
 Q_OBJECT Q_OBJECT
 
 Q_PROPERTY (...)
 
 Q_REVISION Q_REVISION
 
 Q_SET_OBJECT_NAME (Object)
 
 Q_SIGNAL Q_SIGNAL
 
 Q_SIGNALS Q_SIGNALS
 
 Q_SLOT Q_SLOT
 
 Q_SLOTS Q_SLOTS
 
qobject_cast (const QObject *object)
 
qobject_cast (QObject *object)
 
 QT_NO_NARROWING_CONVERSIONS_IN_CONNECT QT_NO_NARROWING_CONVERSIONS_IN_CONNECT
 
void removeEventFilter (QObject *obj)
 
void setObjectName (const QString &name)
 
void setObjectName (QAnyStringView name)
 
void setParent (QObject *parent)
 
bool setProperty (const char *name, const QVariant &value)
 
bool setProperty (const char *name, QVariant &&value)
 
bool signalsBlocked () const const
 
int startTimer (int interval, Qt::TimerType timerType)
 
int startTimer (std::chrono::milliseconds interval, Qt::TimerType timerType)
 
QThreadthread () const const
 

Additional Inherited Members

- Static Public Member Functions inherited from QObject
QMetaObject::Connection connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, const QObject *context, Functor functor, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method, Qt::ConnectionType type)
 
QMetaObject::Connection connect (const QObject *sender, PointerToMemberFunction signal, Functor functor)
 
bool disconnect (const QMetaObject::Connection &connection)
 
bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method)
 
bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method)
 
bool disconnect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method)
 
QString tr (const char *sourceText, const char *disambiguation, int n)
 
- Public Attributes inherited from QObject
typedef QObjectList
 
- Protected Member Functions inherited from QObject
virtual void childEvent (QChildEvent *event)
 
virtual void connectNotify (const QMetaMethod &signal)
 
virtual void customEvent (QEvent *event)
 
virtual void disconnectNotify (const QMetaMethod &signal)
 
bool isSignalConnected (const QMetaMethod &signal) const const
 
int receivers (const char *signal) const const
 
QObjectsender () const const
 
int senderSignalIndex () const const
 
virtual void timerEvent (QTimerEvent *event)
 

Detailed Description

Represents a coordinate with the properties of a name and coordinates.

Todo
: Introduce GeoDataCoordinates

Definition at line 18 of file Coordinate.h.

Member Enumeration Documentation

◆ Notation

Enumerator
Decimal 

"Decimal" notation (base-10)

DMS 

"Sexagesimal DMS" notation (base-60)

DM 

"Sexagesimal DM" notation (base-60)

Astro 

< "RA and DEC" notation (used for astronomical sky coordinates)

Definition at line 29 of file Coordinate.h.

Property Documentation

◆ altitude

qreal Coordinate::altitude
readwrite

Definition at line 24 of file Coordinate.h.

◆ defaultNotation

Coordinate::Notation Coordinate::defaultNotation
readwrite

Definition at line 26 of file Coordinate.h.

◆ latitude

qreal Coordinate::latitude
readwrite

Definition at line 23 of file Coordinate.h.

◆ longitude

qreal Coordinate::longitude
readwrite

Definition at line 22 of file Coordinate.h.

Constructor & Destructor Documentation

◆ Coordinate() [1/2]

Coordinate::Coordinate ( qreal lon = 0.0,
qreal lat = 0.0,
qreal altitude = 0.0,
QObject * parent = nullptr )
explicit

Constructor.

Definition at line 15 of file Coordinate.cpp.

◆ Coordinate() [2/2]

Coordinate::Coordinate ( const Marble::GeoDataCoordinates & coordinates)
explicit

Definition at line 23 of file Coordinate.cpp.

Member Function Documentation

◆ altitude()

qreal Coordinate::altitude ( ) const

Provides access to the altitude (meters) of the coordinate.

Definition at line 50 of file Coordinate.cpp.

◆ bearing()

qreal Coordinate::bearing ( qreal longitude,
qreal latitude ) const

Bearing (in degree) to the given coordinate.

Definition at line 83 of file Coordinate.cpp.

◆ coordinates()

GeoDataCoordinates Coordinate::coordinates ( ) const

Change the altitude of the coordinate.

Definition at line 61 of file Coordinate.cpp.

◆ distance()

qreal Coordinate::distance ( qreal longitude,
qreal latitude ) const

Distance (in meter) to the given coordinate.

Definition at line 76 of file Coordinate.cpp.

◆ latitude()

qreal Coordinate::latitude ( ) const

Provides access to the latitude (degree) of the coordinate.

Definition at line 39 of file Coordinate.cpp.

◆ longitude()

qreal Coordinate::longitude ( ) const

Provides access to the longitude (degree) of the coordinate.

Definition at line 28 of file Coordinate.cpp.

◆ operator!=()

bool Coordinate::operator!= ( const Coordinate & other) const

Definition at line 97 of file Coordinate.cpp.

◆ operator==()

bool Coordinate::operator== ( const Coordinate & other) const

Definition at line 92 of file Coordinate.cpp.

◆ setAltitude()

void Coordinate::setAltitude ( qreal alt)

Change the altitude of the coordinate.

Definition at line 55 of file Coordinate.cpp.

◆ setCoordinates()

void Coordinate::setCoordinates ( const Marble::GeoDataCoordinates & coordinates)

Change all coordinates at once.

Definition at line 66 of file Coordinate.cpp.

◆ setDefaultNotation()

void Coordinate::setDefaultNotation ( Coordinate::Notation defaultNotation)

Definition at line 107 of file Coordinate.cpp.

◆ setLatitude()

void Coordinate::setLatitude ( qreal lat)

Change the latitude of the coordinate.

Definition at line 44 of file Coordinate.cpp.

◆ setLongitude()

void Coordinate::setLongitude ( qreal lon)

Change the longitude of the coordinate.

Definition at line 33 of file Coordinate.cpp.

◆ toGeoString()

QString Coordinate::toGeoString ( Coordinate::Notation notation = Coordinate::DMS,
int precision = -1 ) const

Definition at line 71 of file Coordinate.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:18 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.