Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtPositioning More...
#include <qgeocoordinate.h>
Public Types | |
enum | CoordinateType { InvalidCoordinate , Coordinate2D , Coordinate3D } |
Defines the types of a coordinate. More... | |
enum | CoordinateFormat { Degrees , DegreesWithHemisphere , DegreesMinutes , DegreesMinutesWithHemisphere , DegreesMinutesSeconds , DegreesMinutesSecondsWithHemisphere } |
Defines the possible formatting options for toString(). More... | |
Public Member Functions | |
QGeoCoordinate () | |
Constructs a coordinate. | |
QGeoCoordinate (double latitude, double longitude) | |
Constructs a coordinate with the given latitude and longitude. | |
QGeoCoordinate (double latitude, double longitude, double altitude) | |
Constructs a coordinate with the given latitude, longitude and altitude. | |
QGeoCoordinate (const QGeoCoordinate &other) | |
Constructs a coordinate from the contents of other. | |
QGeoCoordinate (QGeoCoordinate &&other) noexcept=default | |
~QGeoCoordinate () | |
Destroys the coordinate object. | |
QGeoCoordinate & | operator= (const QGeoCoordinate &other) |
Assigns other to this coordinate and returns a reference to this coordinate. | |
void | swap (QGeoCoordinate &other) noexcept |
bool | isValid () const |
Returns true if the \l longitude and \l latitude are valid. | |
CoordinateType | type () const |
Returns the type of this coordinate. | |
void | setLatitude (double latitude) |
Sets the latitude (in decimal degrees) to latitude. | |
double | latitude () const |
Returns the latitude, in decimal degrees. | |
void | setLongitude (double longitude) |
Sets the longitude (in decimal degrees) to longitude. | |
double | longitude () const |
Returns the longitude, in decimal degrees. | |
void | setAltitude (double altitude) |
Sets the altitude (meters above sea level) to altitude. | |
double | altitude () const |
Returns the altitude (meters above sea level). | |
Q_INVOKABLE qreal | distanceTo (const QGeoCoordinate &other) const |
Returns the distance (in meters) from this coordinate to the coordinate specified by other. | |
Q_INVOKABLE qreal | azimuthTo (const QGeoCoordinate &other) const |
Returns the azimuth (or bearing) in degrees from this coordinate to the coordinate specified by other. | |
Q_INVOKABLE QGeoCoordinate | atDistanceAndAzimuth (qreal distance, qreal azimuth, qreal distanceUp=0.0) const |
Returns the coordinate that is reached by traveling distance meters from the current coordinate at azimuth (or bearing) along a great-circle. | |
Q_INVOKABLE QString | toString (CoordinateFormat format=DegreesMinutesSecondsWithHemisphere) const |
Returns this coordinate as a string in the specified format. | |
Properties | |
double | latitude |
This property holds the latitude in decimal degrees. | |
double | longitude |
This property holds the longitude in decimal degrees. | |
double | altitude |
This property holds the altitude in meters above sea level. | |
bool | isValid |
This property holds the validity of this geo coordinate. | |
Friends | |
class | QGeoCoordinatePrivate |
class | QQuickGeoCoordinateAnimation |
bool | operator== (const QGeoCoordinate &lhs, const QGeoCoordinate &rhs) |
Returns true if the latitude, longitude and altitude of the lhs coordinate are the same as those of the rhs coordinate. | |
bool | operator!= (const QGeoCoordinate &lhs, const QGeoCoordinate &rhs) |
Returns true if latitude, longitude, or altitude of the lhs coordinate are not identical to those of the rhs coordinate. | |
QDebug | operator<< (QDebug dbg, const QGeoCoordinate &coord) |
QDataStream & | operator<< (QDataStream &stream, const QGeoCoordinate &coordinate) |
Writes the given coordinate to the specified stream. | |
QDataStream & | operator>> (QDataStream &stream, QGeoCoordinate &coordinate) |
Reads a coordinate from the specified stream into the given coordinate. | |
\inmodule QtPositioning
The QGeoCoordinate class defines a geographical position on the surface of the Earth.
A QGeoCoordinate is defined by latitude, longitude, and optionally, altitude.
Use type() to determine whether a coordinate is a 2D coordinate (has latitude and longitude only) or 3D coordinate (has latitude, longitude and altitude). Use distanceTo() and azimuthTo() to calculate the distance and bearing between coordinates.
The coordinate values should be specified using the WGS84 datum. For more information on geographical terms see this article on \l {http://en.wikipedia.org/wiki/Geographic_coordinate_system}{coordinates} and another on \l {http://en.wikipedia.org/wiki/Geodetic_system}{geodetic systems} including WGS84.
Azimuth in this context is equivalent to a compass bearing based on true north.
This class is a \l Q_GADGET since Qt 5.5. It can be \l{Cpp_value_integration_positioning}{directly used from C++ and QML}.
Definition at line 21 of file qgeocoordinate.h.
Defines the possible formatting options for toString().
\value Degrees Returns a string representation of the coordinates in decimal degrees format. \value DegreesWithHemisphere Returns a string representation of the coordinates in decimal degrees format, using 'N', 'S', 'E' or 'W' to indicate the hemispheres of the coordinates. \value DegreesMinutes Returns a string representation of the coordinates in degrees-minutes format. \value DegreesMinutesWithHemisphere Returns a string representation of the coordinates in degrees-minutes format, using 'N', 'S', 'E' or 'W' to indicate the hemispheres of the coordinates. \value DegreesMinutesSeconds Returns a string representation of the coordinates in degrees-minutes-seconds format. \value DegreesMinutesSecondsWithHemisphere Returns a string representation of the coordinates in degrees-minutes-seconds format, using 'N', 'S', 'E' or 'W' to indicate the hemispheres of the coordinates.
Enumerator | |
---|---|
Degrees | |
DegreesWithHemisphere | |
DegreesMinutes | |
DegreesMinutesWithHemisphere | |
DegreesMinutesSeconds | |
DegreesMinutesSecondsWithHemisphere |
Definition at line 39 of file qgeocoordinate.h.
Defines the types of a coordinate.
\value InvalidCoordinate An invalid coordinate. A coordinate is invalid if its latitude or longitude values are invalid. \value Coordinate2D A coordinate with valid latitude and longitude values. \value Coordinate3D A coordinate with valid latitude and longitude values, and also an altitude value.
Enumerator | |
---|---|
InvalidCoordinate | |
Coordinate2D | |
Coordinate3D |
Definition at line 33 of file qgeocoordinate.h.
QGeoCoordinate::QGeoCoordinate | ( | ) |
Constructs a coordinate.
The coordinate will be invalid until setLatitude() and setLongitude() have been called.
Definition at line 168 of file qgeocoordinate.cpp.
QGeoCoordinate::QGeoCoordinate | ( | double | latitude, |
double | longitude ) |
Constructs a coordinate with the given latitude and longitude.
If the latitude is not between -90 to 90 inclusive, or the longitude is not between -180 to 180 inclusive, none of the values are set and the type() will be QGeoCoordinate::InvalidCoordinate.
Definition at line 182 of file qgeocoordinate.cpp.
QGeoCoordinate::QGeoCoordinate | ( | double | latitude, |
double | longitude, | ||
double | altitude ) |
Constructs a coordinate with the given latitude, longitude and altitude.
If the latitude is not between -90 to 90 inclusive, or the longitude is not between -180 to 180 inclusive, none of the values are set and the type() will be QGeoCoordinate::InvalidCoordinate.
Note that altitude specifies the meters above sea level.
Definition at line 203 of file qgeocoordinate.cpp.
QGeoCoordinate::QGeoCoordinate | ( | const QGeoCoordinate & | other | ) |
Constructs a coordinate from the contents of other.
Definition at line 216 of file qgeocoordinate.cpp.
|
defaultnoexcept |
Constructs a coordinate by moving from other.
QGeoCoordinate::~QGeoCoordinate | ( | ) |
Destroys the coordinate object.
Definition at line 258 of file qgeocoordinate.cpp.
double QGeoCoordinate::altitude | ( | ) | const |
Returns the altitude (meters above sea level).
The return value is undefined if the altitude has not been set.
Definition at line 367 of file qgeocoordinate.cpp.
QGeoCoordinate QGeoCoordinate::atDistanceAndAzimuth | ( | qreal | distance, |
qreal | azimuth, | ||
qreal | distanceUp = 0.0 ) const |
Returns the coordinate that is reached by traveling distance meters from the current coordinate at azimuth (or bearing) along a great-circle.
There is an assumption that the Earth is spherical for the purpose of this calculation.
The altitude will have distanceUp added to it.
Returns an invalid coordinate if this coordinate is invalid.
Definition at line 480 of file qgeocoordinate.cpp.
qreal QGeoCoordinate::azimuthTo | ( | const QGeoCoordinate & | other | ) | const |
Returns the azimuth (or bearing) in degrees from this coordinate to the coordinate specified by other.
Altitude is not used in the calculation.
The bearing returned is the bearing from the origin to other along the great-circle between the two coordinates. There is an assumption that the Earth is spherical for the purpose of this calculation.
Returns 0 if the type of this coordinate or the type of other is QGeoCoordinate::InvalidCoordinate.
Definition at line 426 of file qgeocoordinate.cpp.
qreal QGeoCoordinate::distanceTo | ( | const QGeoCoordinate & | other | ) | const |
Returns the distance (in meters) from this coordinate to the coordinate specified by other.
Altitude is not used in the calculation.
This calculation returns the great-circle distance between the two coordinates, with an assumption that the Earth is spherical for the purpose of this calculation.
Returns 0 if the type of this coordinate or the type of other is QGeoCoordinate::InvalidCoordinate.
Definition at line 393 of file qgeocoordinate.cpp.
bool QGeoCoordinate::isValid | ( | ) | const |
Returns true
if the \l longitude and \l latitude are valid.
Definition at line 285 of file qgeocoordinate.cpp.
double QGeoCoordinate::latitude | ( | ) | const |
Returns the latitude, in decimal degrees.
The return value is undefined if the latitude has not been set.
A positive latitude indicates the Northern Hemisphere, and a negative latitude indicates the Southern Hemisphere.
Definition at line 315 of file qgeocoordinate.cpp.
double QGeoCoordinate::longitude | ( | ) | const |
Returns the longitude, in decimal degrees.
The return value is undefined if the longitude has not been set.
A positive longitude indicates the Eastern Hemisphere, and a negative longitude indicates the Western Hemisphere.
Definition at line 342 of file qgeocoordinate.cpp.
QGeoCoordinate & QGeoCoordinate::operator= | ( | const QGeoCoordinate & | other | ) |
Assigns other to this coordinate and returns a reference to this coordinate.
Move-assigns other to this coordinate and returns a reference to this coordinate.
Definition at line 234 of file qgeocoordinate.cpp.
void QGeoCoordinate::setAltitude | ( | double | altitude | ) |
Sets the altitude (meters above sea level) to altitude.
Definition at line 377 of file qgeocoordinate.cpp.
void QGeoCoordinate::setLatitude | ( | double | latitude | ) |
Sets the latitude (in decimal degrees) to latitude.
The value should be in the WGS84 datum.
To be valid, the latitude must be between -90 to 90 inclusive.
Definition at line 328 of file qgeocoordinate.cpp.
void QGeoCoordinate::setLongitude | ( | double | longitude | ) |
Sets the longitude (in decimal degrees) to longitude.
The value should be in the WGS84 datum.
To be valid, the longitude must be between -180 to 180 inclusive.
Definition at line 355 of file qgeocoordinate.cpp.
|
inlinenoexcept |
Definition at line 58 of file qgeocoordinate.h.
QString QGeoCoordinate::toString | ( | CoordinateFormat | format = DegreesMinutesSecondsWithHemisphere | ) | const |
Returns this coordinate as a string in the specified format.
For example, if this coordinate has a latitude of -27.46758, a longitude of 153.027892 and an altitude of 28.1, these are the strings returned depending on format:
\table \header
The altitude field is omitted if no altitude is set.
If the coordinate is invalid, an empty string is returned.
Definition at line 527 of file qgeocoordinate.cpp.
QGeoCoordinate::CoordinateType QGeoCoordinate::type | ( | ) | const |
Returns the type of this coordinate.
Definition at line 294 of file qgeocoordinate.cpp.
|
friend |
Returns true
if latitude, longitude, or altitude of the lhs coordinate are not identical to those of the rhs coordinate.
Otherwise returns false
.
Definition at line 64 of file qgeocoordinate.h.
|
friend |
Writes the given coordinate to the specified stream.
Definition at line 102 of file qgeocoordinate.h.
|
friend |
Definition at line 95 of file qgeocoordinate.h.
|
friend |
Returns true
if the latitude, longitude and altitude of the lhs coordinate are the same as those of the rhs coordinate.
Otherwise returns false
.
The longitude will be ignored if the latitude is +/- 90 degrees.
Definition at line 60 of file qgeocoordinate.h.
|
friend |
Reads a coordinate from the specified stream into the given coordinate.
Definition at line 106 of file qgeocoordinate.h.
|
friend |
Definition at line 92 of file qgeocoordinate.h.
|
friend |
Definition at line 93 of file qgeocoordinate.h.
|
readwrite |
This property holds the altitude in meters above sea level.
The property is undefined (\l {qQNaN()}) if the altitude has not been set.
While this property is introduced in Qt 5.5, the related accessor functions exist since the first version of this class.
Definition at line 28 of file qgeocoordinate.h.
|
read |
This property holds the validity of this geo coordinate.
The geo coordinate is valid if the \l [CPP]{longitude} and \l [CPP]{latitude} properties have been set to valid values.
While this property is introduced in Qt 5.5, the related accessor functions exist since the first version of this class.
Definition at line 29 of file qgeocoordinate.h.
|
readwrite |
This property holds the latitude in decimal degrees.
The property is undefined (\l {qQNaN()}) if the latitude has not been set. A positive latitude indicates the Northern Hemisphere, and a negative latitude indicates the Southern Hemisphere. When setting the latitude the new value should be in the \l {http://en.wikipedia.org/wiki/World_Geodetic_System}{WGS84} datum format.
To be valid, the latitude must be between -90 to 90 inclusive.
While this property is introduced in Qt 5.5, the related accessor functions exist since the first version of this class.
Definition at line 26 of file qgeocoordinate.h.
|
readwrite |
This property holds the longitude in decimal degrees.
The property is undefined (\l {qQNaN()}) if the longitude has not been set. A positive longitude indicates the Eastern Hemisphere, and a negative longitude indicates the Western Hemisphere. When setting the longitude the new value should be in the \l {http://en.wikipedia.org/wiki/World_Geodetic_System}{WGS84} datum format.
To be valid, the longitude must be between -180 to 180 inclusive.
While this property is introduced in Qt 5.5, the related accessor functions exist since the first version of this class.
Definition at line 27 of file qgeocoordinate.h.