1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/gps/qgssatelliteinformation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSatelliteInfo
{
%Docstring(signature="appended")
Encapsulates information relating to a GPS satellite.
%End
%TypeHeaderCode
#include "qgssatelliteinformation.h"
%End
public:
int id;
bool inUse;
double elevation;
double azimuth;
int signal;
QChar satType;
Qgis::GnssConstellation constellation() const;
%Docstring
Returns the GNSS constellation associated with the information.
.. versionadded:: 3.30
%End
bool operator==( const QgsSatelliteInfo &other ) const;
bool operator!=( const QgsSatelliteInfo &other ) const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/gps/qgssatelliteinformation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|