Deep Trekker BRIDGE API - v1.0.3
    Preparing search index...

    Type Alias GpsStatusReadonly

    GPS Status

    Contains GPS status information for the ROV.

    type GpsStatus = {
        fix?: GpsFixState;
        hdop?: number;
        satelliteCount?: number;
    }
    Index

    Properties

    The current fix state

    hdop?: number

    The HDOP (Horizontal Dilution of Precision) value

    {
    "hdop": 0.5
    }
    satelliteCount?: number

    The number of satellites used for the GPS fix

    {
    "satelliteCount": 5
    }