Registry / serialization / gpx
library0.10.0rscratesunverified

Rust read/write support for GPS Exchange Format (GPX).

# Cargo.toml [dependencies] gpx = "0.10.0"
INSTALL
IMPORT
SIG · GPX
G
gpx
serializationrustv0.10.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Gpx
use gpx::Gpx;

Reads a GPX file and prints the number of tracks.

use gpx::Gpx; use std::fs::File; fn main() -> Result<(), Box<dyn std::error::Error>> { let file = File::open("track.gpx")?; let gpx: Gpx = quick_xml::de::from_reader(file)?; println!("Tracks: {}", gpx.tracks.len()); Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
Meta
1
Resources
gpx — cargo add gpx · libregistry