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

    Interface GPXTrack

    Represents a track, which is an ordered list of points describing a path.

    interface GPXTrack {
        cmt?: string;
        desc?: string;
        extensions?: GPXExtensions;
        link?: GPXLink[];
        name?: string;
        number?: number;
        src?: string;
        trkseg?: GPXTrackSegment[];
        type?: string;
    }
    Index

    Properties

    cmt?: string

    Track comment

    desc?: string

    Track description

    extensions?: GPXExtensions

    Custom extensions

    link?: GPXLink[]

    Links to external information

    name?: string

    Track name

    number?: number

    Track number

    src?: string

    Source of data

    trkseg?: GPXTrackSegment[]

    Ordered list of track segments

    type?: string

    Classification type of the track