18 releases (10 breaking)

0.10.0 Dec 4, 2023
0.9.1 Jun 5, 2023
0.9.0 May 30, 2023
0.8.6 May 28, 2022
0.0.1 Jan 21, 2015

#1 in #exchange

Download history 1662/week @ 2023-12-04 1729/week @ 2023-12-11 1902/week @ 2023-12-18 1317/week @ 2023-12-25 976/week @ 2024-01-01 1144/week @ 2024-01-08 780/week @ 2024-01-15 1118/week @ 2024-01-22 1134/week @ 2024-01-29 1154/week @ 2024-02-05 1671/week @ 2024-02-12 1319/week @ 2024-02-19 1731/week @ 2024-02-26 1029/week @ 2024-03-04 1255/week @ 2024-03-11 1345/week @ 2024-03-18

5,396 downloads per month
Used in 10 crates

MIT license

140KB
2.5K SLoC

gpx

Crates.io Build Status docs.rs

gpx is a library for reading and writing GPX (GPS Exchange Format) files. It uses the primitives provided by geo-types to allow for storage of GPS data.

Examples

Read a GPX file

extern crate gpx;

use std::io::BufReader;
use std::fs::File;

use gpx::read;
use gpx::{Gpx, Track, TrackSegment};

fn main() {
    // This XML file actually exists — try it for yourself!
    let file = File::open("tests/fixtures/wikipedia_example.gpx").unwrap();
    let reader = BufReader::new(file);

    // read takes any io::Read and gives a Result<Gpx, Error>.
    let gpx: Gpx = read(reader).unwrap();

    // Each GPX file has multiple "tracks", this takes the first one.
    let track: &Track = &gpx.tracks[0];
    assert_eq!(track.name, Some(String::from("Example GPX Document")));

    // Each track will have different segments full of waypoints, where a
    // waypoint contains info like latitude, longitude, and elevation.
    let segment: &TrackSegment = &track.segments[0];

    // This is an example of retrieving the elevation (in meters) at certain points.
    assert_eq!(segment.points[0].elevation, Some(4.46));
    assert_eq!(segment.points[1].elevation, Some(4.94));
    assert_eq!(segment.points[2].elevation, Some(6.87));
}

Generate a new GPX file

This example only generates tracks. You can add waypoints and routes as well by instantiating new Waypoints and Routes.

use geo_types::{coord, Point};
use gpx::{Gpx, GpxVersion, Track, TrackSegment, Waypoint};
use std::{error::Error, fs::File, io::BufWriter, path::Path};

pub fn to_gpx<P: AsRef<Path>>(out_path: P) -> Result<(), Box<dyn Error>> {
    // Instantiate Gpx struct
    let track_segment = TrackSegment {
        points: vec![]
    };
    let track = Track {
        name: Some("Track 1".to_string()),
        comment: None,
        description: None,
        source: None,
        links: vec![],
        type_: None,
        number: None,
        segments: vec![track_segment],
    };
    let mut gpx = Gpx {
        version: GpxVersion::Gpx11,
        creator: None,
        metadata: None,
        waypoints: vec![],
        tracks: vec![track],
        routes: vec![],
    };

    // Create file at path
    let gpx_file = File::create(out_path)?;
    let buf = BufWriter::new(gpx_file);

    // Add track point
    let geo_coord = coord! { x: -121.1, y: 38.82 };
    let geo_point: Point = geo_coord.into();
    gpx.tracks[0].segments[0].points.push(Waypoint::new(geo_point));

    // Write to file
    gpx::write(&gpx, buf)?;

    Ok(())
}

Write to string

write will write the GPX output to anything that implements std::io::Write. To save the output to a string, write it to a u8 vector, and then convert the vector to a string.

let mut vec = Vec::new();
gpx::write(&gpx, &mut vec)?;
let string = String::from_utf8(vec)?;

Current Status

rust-gpx currently supports reading and writing both GPX 1.1 and 1.0. GPX extensions are not yet supported.

Contributing

All contributions are welcome! Please open an issue if you find a bug / have any questions, and pull requests are always appreciated.

License

rust-gpx is licensed under the MIT license.

Dependencies

~2–2.6MB
~54K SLoC