Interface Waypoint

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

interface Waypoint {
    ageofdgpsdata?: number;
    cmt?: string;
    desc?: string;
    dgpsid?: number;
    ele?: number;
    extensions?: any;
    fix?: string;
    geoidheight?: number;
    hdop?: number;
    lat: number;
    link?: Link[];
    lon: number;
    magvar?: number;
    name?: string;
    pdop?: number;
    sat?: number;
    src?: string;
    sym?: string;
    time?: Date;
    type?: string;
    vdop?: number;
}

Properties

ageofdgpsdata?: number

Number of seconds since last DGPS update.

cmt?: string

GPS waypoint comment.

desc?: string

A text description of the element.

dgpsid?: number

ID of DGPS station used in differential correction.

ele?: number

Elevation (in meters) of the point.

extensions?: any

Extensions.

fix?: string

Type of GPX fix.

geoidheight?: number

Height (in meters) of geoid (mean sea level) above WGS84 earth ellipsoid. As defined in NMEA GGA message.

hdop?: number

Horizontal dilution of precision.

lat: number

The latitude of the point. This is always in decimal degrees, and always in WGS84 datum.

link?: Link[]

Link to additional information about the waypoint.

lon: number

The longitude of the point. This is always in decimal degrees, and always in WGS84 datum.

magvar?: number

Magnetic variation (in degrees) at the point.

name?: string

The GPS name of the waypoint.

pdop?: number

Position dilution of precision.

sat?: number

Number of satellites used to calculate the GPX fix.

src?: string

Source of data.

sym?: string

Text of GPS symbol name.

time?: Date

Creation/modification timestamp for element. Date and time in are in Universal Coordinated Time (UTC), not local time! Conforms to ISO 8601 specification for date/time representation. Fractional seconds are allowed for millisecond timing in track logs.

type?: string

Type (classification) of the waypoint.

vdop?: number

Vertical dilution of precision.