geoSatelliteInfo QML Value Type
El tipo geoSatelliteInfo representa información básica sobre un satélite. Más...
| Import Statement: | import QtPositioning |
| Since: | Qt 6.5 |
Propiedades
- satelliteIdentifier : int
- satelliteSystem : enumeration
- signalStrength : real
Métodos
- real attribute(Attribute attr)
- bool hasAttribute(Attribute attr)
Descripción detallada
Este tipo es una representación QML de QGeoSatelliteInfo. El tipo no se puede crear desde QML y sólo se puede utilizar cuando se manejan actualizaciones de satélites desde SatelliteSource.
Este tipo contiene las propiedades de sólo lectura satelliteSystem, satelliteIdentifier y signalStrength, y también atributos opcionales.
Utilice el método hasAttribute para comprobar si el atributo existe o no, y el método attribute para obtener su valor.
Véase también QGeoSatelliteInfo.
Documentación de propiedades
satelliteIdentifier : int [read-only]
Contiene el número identificador del satélite.
El número de identificador de satélite puede utilizarse para identificar un satélite dentro del sistema de satélites.
El valor real puede variar en función de la plataforma y del backend seleccionado.
satelliteSystem : enumeration [read-only]
Indica el sistema GNSS del satélite.
| Constante | Descripción |
|---|---|
GeoSatelliteInfo.Undefined | No definida. |
GeoSatelliteInfo.GPS | Sistema de Posicionamiento Global (EE.UU.). |
GeoSatelliteInfo.GLONASS | Sistema de posicionamiento global (Rusia). |
GeoSatelliteInfo.GALILEO | Sistema mundial de navegación por satélite (UE). |
GeoSatelliteInfo.BEIDOU | Sistema de navegación por satélite BeiDou (China). |
GeoSatelliteInfo.QZSS | Sistema de satélites cuasi cenitales (Japón). |
GeoSatelliteInfo.Multiple | Este tipo indica normalmente que la información se recibe de un dispositivo que admite varios sistemas de satélites, y no se especifica explícitamente el sistema de satélites. |
GeoSatelliteInfo.CustomType | Es el primer tipo que puede utilizarse para fines de usuario. |
signalStrength : real [read-only]
Indica la intensidad de la señal en decibelios.
Documentación del método
real attribute(Attribute attr)
Devuelve el valor del atributo attr o -1 si no se ha establecido el valor.
Se admiten los siguientes atributos
GeoSatelliteInfo.Elevation- la elevación del satélite, en grados.GeoSatelliteInfo.Azimuth- el acimut al norte verdadero, en grados.
bool hasAttribute(Attribute attr)
Devuelve true si la información del satélite contiene el atributo attr. En caso contrario devuelve false.
Véase attribute() para la lista de atributos admitidos.
© 2026 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.