QAltimeterReading
Since: 1.3
#include <QtSensors/QAltimeterReading>
More information will be added here shortly. For now, you'll find more extensive information about this class in the Qt reference for QAltimeterReading
QtSensors
The QAltimeterReading class holds readings from the altimeter sensor.
The altitude is reported in meters relative to mean sea level.
On BlackBerry, the altimeter uses a combination of pressure and location to determine the altitude, as using pressure alone would yield to inaccurate results due to changes in air pressure caused by the weather. The location information is used to compensate for the weather. This requires that the user has enabled location services in the global settings.
Overview
Inheritance
QSensorReading | ||
QAltimeterReading |
Public Functions Index
qreal | altitude () const |
void | setAltitude (qreal altitude) |
void | setTimestamp (qtimestamp timestamp)![]() |
qtimestamp | timestamp () const ![]() |
QVariant | value (int index) const ![]() |
int | valueCount () const ![]() |
Protected Functions Index
Only has inherited protected functions
virtual void | copyValuesFrom (QSensorReading *other)![]() |
QScopedPointer< QSensorReadingPrivate > * | d_ptr ()![]() |
QSensorReading (QObject *parent, QSensorReadingPrivate *d)![]() |
Properties
qreal
The altitude in meters relative to mean sea level.
Public Functions
qreal
void
Sets the altitude to altitude.
void 
Sets the timestamp of the reading.
1.0
QVariant 
Returns the value of the property at index.
Note that this function is slower than calling the data function directly.
Here is an example of getting a property via the different mechanisms available.
Accessing directly provides the best performance but requires compile-time knowledge of the data you are accessing.
QAccelerometerReading *reading = ...; qreal x = reading->x();
You can also access a property by name. To do this you must call QObject::property().
qreal x = reading->property("x").value<qreal>();
Finally, you can access values via numeric index.
qreal x = reading->value(0).value<qreal>();
Note that value() can only access properties declared with Q_PROPERTY() in sub-classes of QSensorReading.
valueCount(), QObject::property()
1.0
int 
Returns the number of extra properties that the reading has.
Note that this does not count properties declared in QSensorReading.
1.0
Protected Functions
(Only has inherited protected functions)
© 2013 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.
The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.
Documentation sources may be obtained from www.qt-project.org.
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy