Convert GeoJSON to GPX

Convert GeoJSON points/lines to a GPX file for GPS devices and apps, in your browser.

Output (GPX)
<?xml version="1.0" encoding="UTF-8"?>
<gpx version="1.1" creator="tool4u.net" xmlns="http://www.topografix.com/GPX/1/1">
<wpt lat="37.7749" lon="-122.4194"><name>City Hall</name></wpt>
</gpx>

Runs entirely in your browser - nothing is sent to a server.

Related tools

How it works

  1. 1

    Paste your GeoJSON

    Point features become waypoints, LineString features become tracks.

  2. 2

    Copy the GPX

    Ready to load onto a GPS device or app.

FAQ

Does this support Polygon geometry?
No - GPX only has a concept of waypoints and tracks, so only Point and LineString features convert; a Polygon-only input returns an error.
Are feature names preserved?
Yes for waypoints (a Point feature’s name property becomes the GPX <name>) - tracks don’t carry a per-segment name.