System.Sensors.TGpsSatellite

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

TGpsSatellite = record

C++

struct DECLSPEC_DRECORD TGpsSatellite
{
private:
    double FElevation;
    double FSnr;
    int FPrn;
    bool FUsedInFix;
    bool FHasAlmanac;
    double FAzimuth;
    bool FHasEphemeris;
public:
    __property double Azimuth = {read=FAzimuth};
    __property double Elevation = {read=FElevation};
    __property int Prn = {read=FPrn};
    __property double Snr = {read=FSnr};
    __property bool HasAlmanac = {read=FHasAlmanac};
    __property bool HasEphemeris = {read=FHasEphemeris};
    __property bool UsedInFix = {read=FUsedInFix};
    __fastcall TGpsSatellite(double Azimuth, double Elevation, int Prn, double Snr, bool HasAlmanac, bool HasEphemeris, bool UsedInFix);
    TGpsSatellite() {}
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
System.Sensors.pas
System.Sensors.hpp
System.Sensors System.Sensors

Description

Contient des informations sur l'état d'un satellite.

TGpsSatellite utilise Azimuth et Elevation pour mesurer la position.

Voir aussi