Struct gpx::TrackSegment [−][src]
TrackSegment represents a list of track points.
This TrackSegment 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.
Fields
points: Vec<Waypoint>
Each Waypoint holds the coordinates, elevation, timestamp, and metadata for a single point in a track.
Methods
impl TrackSegment[src]
impl TrackSegmentpub fn linestring(&self) -> LineString<f64>[src]
pub fn linestring(&self) -> LineString<f64>Gives the linestring of the segment's points, the sequence of points that comprises the track segment.
pub fn new() -> TrackSegment[src]
pub fn new() -> TrackSegmentCreates a new TrackSegment with default values.
extern crate gpx; extern crate geo; use gpx::{TrackSegment, Waypoint}; use geo::Point; fn main() { let mut trkseg: TrackSegment = TrackSegment::new(); let point = Waypoint::new(Point::new(-121.97, 37.24)); trkseg.points.push(point); }
Trait Implementations
impl Clone for TrackSegment[src]
impl Clone for TrackSegmentfn clone(&self) -> TrackSegment[src]
fn clone(&self) -> TrackSegmentReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for TrackSegment[src]
impl Default for TrackSegmentfn default() -> TrackSegment[src]
fn default() -> TrackSegmentReturns the "default value" for a type. Read more
impl Debug for TrackSegment[src]
impl Debug for TrackSegmentfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl ToGeo<f64> for TrackSegment[src]
impl ToGeo<f64> for TrackSegmentAuto Trait Implementations
impl Send for TrackSegment
impl Send for TrackSegmentimpl Sync for TrackSegment
impl Sync for TrackSegment