Waypoint type

interface Waypoint {
    alt: number;
    cutoff?: number;
    description?: string;
    hasDelay?: boolean;
    isFinish?: boolean;
    isStart?: boolean;
    lat: number;
    loc: number;
    lon: number;
    loop: number;
    name?: string;
    site: Types.Site;
}

Hierarchy

  • Pick<
        Types.Site,
        | "alt"
        | "description"
        | "lat"
        | "lon"
        | "name"
        | "hasDelay"
        | "isFinish"
        | "isStart",
    >
    • Waypoint

Implemented by

Properties

alt: number

altitude of the site

cutoff?: number

cutoff time for the waypoint

description?: string

optional description for the site

hasDelay?: boolean

hasDelay - true if the site has a delay

isFinish?: boolean

isFinish - true if the site is the finish of the course

isStart?: boolean

isStart - true if the site is the start of the course

lat: number

latitude of the site

loc: number

location along the course (in km)

lon: number

longitude of the site

loop: number

loop number (1-indexed)

name?: string

optional name for the site

site: Types.Site

site for the waypoint