QGeoSatelliteInfo Class
QGeoSatelliteInfo 类包含卫星的基本信息。更多
头文件: | #include <QGeoSatelliteInfo> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Positioning) target_link_libraries(mytarget PRIVATE Qt6::Positioning) |
qmake: | QT += positioning |
- 所有成员(包括继承成员)的列表
- QGeoSatelliteInfo 属于隐式共享类。
公共类型
enum | Attribute { Elevation, Azimuth } |
enum | SatelliteSystem { Undefined, GPS, GLONASS, GALILEO, BEIDOU, …, CustomType } |
公共函数
QGeoSatelliteInfo() | |
QGeoSatelliteInfo(const QGeoSatelliteInfo &other) | |
(since 6.2) | QGeoSatelliteInfo(QGeoSatelliteInfo &&other) |
~QGeoSatelliteInfo() | |
qreal | attribute(QGeoSatelliteInfo::Attribute attribute) const |
bool | hasAttribute(QGeoSatelliteInfo::Attribute attribute) const |
void | removeAttribute(QGeoSatelliteInfo::Attribute attribute) |
int | satelliteIdentifier() const |
QGeoSatelliteInfo::SatelliteSystem | satelliteSystem() const |
void | setAttribute(QGeoSatelliteInfo::Attribute attribute, qreal value) |
void | setSatelliteIdentifier(int satId) |
void | setSatelliteSystem(QGeoSatelliteInfo::SatelliteSystem system) |
void | setSignalStrength(int signalStrength) |
int | signalStrength() const |
(since 6.2) void | swap(QGeoSatelliteInfo &other) |
(since 6.2) QGeoSatelliteInfo & | operator=(QGeoSatelliteInfo &&other) |
QGeoSatelliteInfo & | operator=(const QGeoSatelliteInfo &other) |
相关非成员
bool | operator!=(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs) |
QDataStream & | operator<<(QDataStream &stream, const QGeoSatelliteInfo &info) |
bool | operator==(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs) |
QDataStream & | operator>>(QDataStream &stream, QGeoSatelliteInfo &info) |
另请参见 QGeoSatelliteInfoSource 。
成员类型文档
enum QGeoSatelliteInfo::Attribute
定义卫星信息的属性。
常数 | 值 | 说明 |
---|---|---|
QGeoSatelliteInfo::Elevation | 0 | 卫星的仰角,单位为度。 |
QGeoSatelliteInfo::Azimuth | 1 | 真北方位角,单位为度。 |
enum QGeoSatelliteInfo::SatelliteSystem
定义卫星的 GNSS 系统。
常数 | 值 | 说明 |
---|---|---|
QGeoSatelliteInfo::Undefined | 0x00 | 未定义。 |
QGeoSatelliteInfo::GPS | 0x01 | 全球定位系统(美国)。 |
QGeoSatelliteInfo::GLONASS | 0x02 | 全球定位系统(俄罗斯)。 |
QGeoSatelliteInfo::GALILEO | 0x03 | 全球导航卫星系统(欧盟)。 |
QGeoSatelliteInfo::BEIDOU | 0x04 | 北斗导航卫星系统(中国)。 |
QGeoSatelliteInfo::QZSS | 0x05 | 准天顶卫星系统(日本)。 |
QGeoSatelliteInfo::Multiple | 0xFF | 这种类型通常表示信息是从支持多个卫星系统的设备接收的,但没有明确指定卫星系统。根据数据源的不同,您可以使用其他信息来确定实际的系统类型。使用该类型的一个例子是 NMEA $GNGSA 信息,其中包含所使用卫星的 ID,但未明确提及其系统类型。 |
QGeoSatelliteInfo::CustomType | 0x100 | 第一种可用于用户目的的类型。例如,在QNmeaSatelliteInfoSource 中重新实现 NMEA 数据解析时。用户可使用CustomType + 1 ,CustomType + 2 等添加更多类型。 |
成员函数文档
QGeoSatelliteInfo::QGeoSatelliteInfo()
创建一个卫星信息对象。
QGeoSatelliteInfo::QGeoSatelliteInfo(const QGeoSatelliteInfo &other)
用other 的值创建一个卫星信息对象。
[noexcept, since 6.2]
QGeoSatelliteInfo::QGeoSatelliteInfo(QGeoSatelliteInfo &&other)
通过从other 移动创建一个卫星信息对象。
请注意,从移动的 QGeoSatelliteInfo 只能被销毁或赋值。调用析构函数或赋值操作符之外的其他函数的效果未定义。
此函数在 Qt 6.2 中引入。
[noexcept]
QGeoSatelliteInfo::~QGeoSatelliteInfo()
销毁卫星信息对象。
[invokable]
qreal QGeoSatelliteInfo::attribute(QGeoSatelliteInfo::Attribute attribute) const
以 qreal 值返回指定attribute 的值。
如果未设置该值,则返回-1。
注: 可通过元对象系统和 QML 调用此函数。请参见Q_INVOKABLE 。
另请参阅 hasAttribute() 和setAttribute()。
[invokable]
bool QGeoSatelliteInfo::hasAttribute(QGeoSatelliteInfo::Attribute attribute) const
如果指定的attribute 存在于本次更新中,则返回 true。
注: 可通过元对象系统和 QML 调用此函数。请参阅Q_INVOKABLE 。
void QGeoSatelliteInfo::removeAttribute(QGeoSatelliteInfo::Attribute attribute)
删除指定的attribute 及其值。
int QGeoSatelliteInfo::satelliteIdentifier() const
返回卫星标识符编号。
卫星标识符编号可用于识别卫星系统中的卫星。
实际值可能因平台和所选后端而异。
例如,如果使用nmea插件,GPS 卫星系统的卫星标识符代表 PRN(伪随机噪声)编号,GLONASS 卫星系统的卫星标识符代表槽编号。
对于基于 NMEA 的后端,如果无法从其他来源获得卫星系统类型,则可使用卫星标识符来确定卫星系统类型。您可以参考卫星标识符列表来查看不同卫星系统的标识符范围。
注意: 根据平台和所选后端,不同卫星系统的卫星标识符范围可能会有交叉。要唯一标识一个卫星,必须使用 satelliteIndetifier() 和satelliteSystem() 的组合。
注: 属性 satelliteIdentifier 的获取函数。
另请参阅 setSatelliteIdentifier() 和satelliteSystem()。
QGeoSatelliteInfo::SatelliteSystem QGeoSatelliteInfo::satelliteSystem() const
返回卫星系统(GPS、GLONASS...)
注: 该值可与satelliteIdentifier() 一起使用,以唯一标识卫星。
注: 属性 satelliteSystem 的获取函数。
另请参阅 setSatelliteSystem() 和satelliteIdentifier()。
void QGeoSatelliteInfo::setAttribute(QGeoSatelliteInfo::Attribute attribute, qreal value)
将attribute 的值设置为value 。
另请参阅 attribute() 。
void QGeoSatelliteInfo::setSatelliteIdentifier(int satId)
将卫星标识符编号设置为satId 。
卫星标识符编号可用于在卫星系统中识别卫星。
实际值可能会有所不同,取决于平台和所选的后端。
例如,如果使用nmea插件,GPS 卫星系统的卫星标识符代表 PRN(伪随机噪声)编号,GLONASS 卫星系统的卫星标识符代表槽编号。
另请参阅 satelliteIdentifier().
void QGeoSatelliteInfo::setSatelliteSystem(QGeoSatelliteInfo::SatelliteSystem system)
将卫星系统(GPS、GLONASS...)设置为system 。
另请参阅 satelliteSystem() 。
void QGeoSatelliteInfo::setSignalStrength(int signalStrength)
将信号强度设置为signalStrength ,单位为分贝。
另请参阅 signalStrength() 。
int QGeoSatelliteInfo::signalStrength() const
返回信号强度,如果未设置该值,则返回 -1。
注: 属性 signalStrength 的获取函数。
另请参阅 setSignalStrength().
[noexcept, since 6.2]
void QGeoSatelliteInfo::swap(QGeoSatelliteInfo &other)
将该卫星信息与other 互换。该操作速度非常快,而且从未出现过故障。
此功能在 Qt 6.2 中引入。
[noexcept, since 6.2]
QGeoSatelliteInfo &QGeoSatelliteInfo::operator=(QGeoSatelliteInfo &&other)
移动-将other 中的值赋值给此对象
请注意,moved-fromQGeoSatelliteInfo 只能被销毁或赋值。调用析构函数或赋值操作符之外的其他函数的效果未定义。
此函数在 Qt 6.2 中引入。
QGeoSatelliteInfo &QGeoSatelliteInfo::operator=(const QGeoSatelliteInfo &other)
将other 中的值赋值给此对象。
相关非成员
bool operator!=(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs)
如果lhs 卫星的任何参数与rhs 的参数不一致,则返回true
。否则返回false
。
QDataStream &operator<<(QDataStream &stream, const QGeoSatelliteInfo &info)
将给定的info 写入指定的stream 。
另请参阅 序列化 Qt 数据类型。
bool operator==(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs)
如果lhs 卫星的所有参数与rhs 的参数相同,则返回true
。否则返回false
。
QDataStream &operator>>(QDataStream &stream, QGeoSatelliteInfo &info)
将卫星信息从指定的stream 读取到给定的info 中。
另请参阅 序列化 Qt 数据类型。
© 2025 The Qt Company Ltd. 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. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.