Represents a geographical point with altitude, latitude, longitude, and source information.

interface TrackPoint {
    alt: number;
    grade: number;
    lat: number;
    loc: number;
    lon: number;
    source: Types.Point | LLA;
}

Hierarchy (View Summary)

Implemented by

Properties

Properties

alt: number

The altitude of the point in meters.

grade: number

The grade of the track at the point in percent.

lat: number

The latitude of the point in decimal degrees.

loc: number

The location of the point along the track in kilometers.

lon: number

The longitude of the point in decimal degrees.

source: Types.Point | LLA

The source information of the point, which can be either an object containing altitude, latitude, and longitude, or another Point instance.