Usage¶
Reading a GPX file¶
from gpx import read_gpx
# Read GPX data from file
gpx = read_gpx("path/to/file.gpx")
# Access basic properties
print(f"Creator: {gpx.creator}")
print(f"Bounds: {gpx.bounds}")
print(f"Number of waypoints: {len(gpx.wpt)}")
print(f"Number of tracks: {len(gpx.trk)}")
print(f"Number of routes: {len(gpx.rte)}")
Working with waypoints¶
from gpx import Waypoint
from decimal import Decimal
# Create a new waypoint
waypoint = Waypoint(
lat=Decimal("52.3676"),
lon=Decimal("4.9041"),
name="Amsterdam",
desc="Capital of the Netherlands",
ele=Decimal("2.0"),
)
gpx.wpt.append(waypoint)
# Iterate over waypoints
for wpt in gpx.wpt:
print(f"{wpt.name}: ({wpt.lat}, {wpt.lon})")
Working with tracks and statistics¶
# Access track data
for track in gpx.trk:
print(f"Track: {track.name}")
# Get statistics from the track
print(f" Total distance: {track.total_distance:.2f} meters")
print(f" Total duration: {track.total_duration}")
print(f" Average speed: {track.avg_speed:.2f} m/s")
print(f" Max elevation: {track.max_elevation} meters")
print(f" Total ascent: {track.total_ascent} meters")
# Iterate over track segments and points
for segment in track.segments:
print(f" Segment with {len(segment.points)} points")
for point in segment.points:
print(f" Point: ({point.lat}, {point.lon}) at {point.time}")
Creating a GPX from scratch¶
from gpx import GPX, Metadata, Track, TrackSegment, Waypoint
from datetime import datetime, timezone
from decimal import Decimal
# Create track points
points = []
for i in range(5):
point = Waypoint(
lat=Decimal("52.0") + Decimal(i) * Decimal("0.01"),
lon=Decimal("4.0") + Decimal(i) * Decimal("0.01"),
ele=Decimal("10.0") + Decimal(i) * Decimal("2.0"),
time=datetime.now(timezone.utc),
)
points.append(point)
# Create a track with segments
segment = TrackSegment(trkpt=points)
track = Track(name="Morning Run", trkseg=[segment])
# Create metadata
metadata = Metadata(
name="My GPS Track",
desc="A sample track",
time=datetime.now(timezone.utc),
)
# Create GPX object (creator defaults to "*gpx*")
gpx = GPX(
creator="My Application",
metadata=metadata,
trk=[track],
)
Writing GPX files¶
from gpx import from_string
# Write GPX data to file
gpx.write_gpx("output.gpx")
# Convert to string
gpx_string = gpx.to_string()
print(gpx_string)
# Parse from string
gpx = from_string(gpx_string)
Working with routes¶
from gpx import Route
# Create route points (waypoints)
point1 = Waypoint(
lat=Decimal("52.3676"),
lon=Decimal("4.9041"),
name="Start: Amsterdam Centraal",
)
point2 = Waypoint(
lat=Decimal("52.3731"),
lon=Decimal("4.8922"),
name="Dam Square",
)
# Create a route
route = Route(name="City Tour", rtept=[point1, point2])
gpx.rte.append(route)
# Access route statistics
print(f"Route distance: {route.total_distance:.2f} meters")
Converting to other formats¶
gpx supports converting GPX data to various formats:
from gpx import GPX, read_gpx
gpx = read_gpx("path/to/file.gpx")
# Write to file formats
gpx.write_gpx("output.gpx") # GPX file
gpx.write_geojson("output.geojson") # GeoJSON file
gpx.write_kml("output.kml") # KML file (Google Earth)
# Convert to data formats (strings/bytes)
wkt_string = gpx.to_wkt() # Well-Known Text
wkb_bytes = gpx.to_wkb() # Well-Known Binary
# Access GeoJSON-compatible data via the __geo_interface__ property
geojson_dict = gpx.__geo_interface__
Reading from other formats¶
gpx can read data from various file formats:
from gpx import read_gpx, read_geojson, read_kml
# Read from files
gpx = read_gpx("path/to/file.gpx")
gpx = read_geojson("path/to/file.geojson")
gpx = read_kml("path/to/file.kml")
Converting from data formats¶
gpx can convert from data formats (strings, bytes, objects):
from gpx import from_geo_interface, from_wkt, from_wkb
# Convert from WKT (Well-Known Text)
gpx = from_wkt("POINT (4.9041 52.3676)")
gpx = from_wkt("LINESTRING (4.9 52.3, 4.91 52.31, 4.92 52.32)")
# Convert from WKB (Well-Known Binary)
gpx = from_wkb(wkb_bytes)
# Convert from any object that implements the __geo_interface__ protocol (e.g., Shapely)
from shapely.geometry import Point, LineString
point = Point(4.9041, 52.3676)
gpx = from_geo_interface(point)
line = LineString([(4.9, 52.3), (4.91, 52.31), (4.92, 52.32)])
gpx = from_geo_interface(line)
# Or convert from a GeoJSON dict directly
geojson = {"type": "Point", "coordinates": [4.9041, 52.3676]}
gpx = from_geo_interface(geojson)
Command-Line Interface¶
gpx provides a command-line interface (CLI) for common GPX operations:
# Validate a GPX file
gpx validate path/to/file.gpx
# Show information and statistics about a GPX file
gpx info path/to/file.gpx
gpx info --json path/to/file.gpx # Output as JSON
# Edit a GPX file
gpx edit input.gpx -o output.gpx --reverse-tracks
gpx edit input.gpx -o output.gpx --min-lat 52.0 --max-lat 53.0
gpx edit input.gpx -o output.gpx --start 2024-01-01T10:00:00 --end 2024-01-01T12:00:00
gpx edit input.gpx -o output.gpx --precision 5 --elevation-precision 1
gpx edit input.gpx -o output.gpx --strip-all-metadata
# Merge multiple GPX files
gpx merge file1.gpx file2.gpx file3.gpx -o merged.gpx
# Convert between formats
gpx convert input.gpx -o output.geojson
gpx convert input.gpx -o output.kml
gpx convert input.geojson -o output.gpx