gis-tools-ts - v0.6.0
    Preparing search index...

    Interface GPXWaypoint

    Represents a waypoint, point of interest, or named feature on a map.

    interface GPXWaypoint {
        ageofdgpsdata?: number;
        cmt?: string;
        desc?: string;
        dgpsid?: number;
        ele?: number;
        extensions?: GPXExtensions;
        fix?: GPXFixType;
        geoidheight?: number;
        hdop?: number;
        lat: number;
        link?: GPXLink[];
        lon: number;
        magvar?: number;
        name?: string;
        pdop?: number;
        sat?: number;
        src?: string;
        sym?: string;
        time?: string;
        type?: string;
        vdop?: number;
    }
    Index

    Properties

    ageofdgpsdata?: number

    Time since last DGPS update in seconds

    cmt?: string

    Waypoint comment

    desc?: string

    Description of the waypoint

    dgpsid?: number

    ID of DGPS station used

    ele?: number

    Optional elevation in meters

    extensions?: GPXExtensions

    Custom extensions

    Type of GPS fix

    geoidheight?: number

    Height of geoid above WGS84 ellipsoid

    hdop?: number

    Horizontal dilution of precision

    lat: number

    Latitude in decimal degrees (WGS84)

    link?: GPXLink[]

    Links to additional information

    lon: number

    Longitude in decimal degrees (WGS84)

    magvar?: number

    Optional magnetic variation in degrees

    name?: string

    Waypoint name

    pdop?: number

    Position dilution of precision

    sat?: number

    Number of satellites used for the fix

    src?: string

    Source of data

    sym?: string

    Symbol name for the waypoint

    time?: string

    Optional timestamp in ISO 8601 format

    type?: string

    Classification type of the waypoint

    vdop?: number

    Vertical dilution of precision