Struct gpx::Track
[−]
[src]
pub struct Track {
pub name: Option<String>,
pub comment: Option<String>,
pub description: Option<String>,
pub source: Option<String>,
pub links: Vec<Link>,
pub _type: Option<String>,
pub segments: Vec<TrackSegment>,
}Track represents an ordered list of points describing a path.
Fields
name: Option<String>
GPS name of track.
comment: Option<String>
GPS comment for track.
description: Option<String>
User description of track.
source: Option<String>
Source of data. Included to give user some idea of reliability and accuracy of data.
links: Vec<Link>
Links to external information about the track.
_type: Option<String>
Type (classification) of track.
segments: Vec<TrackSegment>
A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.
Methods
impl Track[src]
pub fn multilinestring(&self) -> MultiLineString<f64>[src]
Gives the multi-linestring that this track represents, which is multiple linestrings.
pub fn new() -> Track[src]
Creates a new Track with default values.
use gpx::{Track, TrackSegment}; let mut track: Track = Track::new(); let segment = TrackSegment::new(); track.segments.push(segment);
Trait Implementations
impl Clone for Track[src]
fn clone(&self) -> Track[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Default for Track[src]
impl Debug for Track[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more