NMEA
Your GPS receiver might output or record your tracks in NMEA format, this is a format that can easily be converted to GPX so you can upload it to our website. Even though GPX is preferred there are still several OpenStreetMap tools that support NMEA including new versions of JOSM.
Describing what is what in NMEA
You might need to know what the NMEA key words are, if you buy a GPS or if you want to setup and configure your device. E.g. a specification can say "This unit support the Commands: GGA, GSA, GSV, RMC, GLL och VTG"
NMEA command definitions
RMC
- is the recommended minimum sentence, it
GGA
- Global Positioning System Fix Data; can also contain DOP information (I think)
GSA
- DOP values. My interpretation of this is (which might very well be wrong): If these values are high your data is guarnteed to be bad, if low you data might be bad anyways. It only indicates how the sattelites are positioned and how that effects your position, you might still have radio interference that might mess things up.
GSV
- Satellites in view
GLL
- Geographic Position - Latitude/Longitude
VTG
- Track made good and Ground speed, how far, long and at what compass direction have been travelling (in short; speed, heading and log)
ZDA
- UTC Date/Time and Local Time Zone Offset (Log the timezone you have setup in the device)
NMEA information sources
- Wikipedia
- What is what in NMEA messages
- Product sheet which contains info
- NMEA Parser Design by Monte Variakojis
Uploading NMEA text dumps (web interface)
At https://richard.dev.openstreetmap.org/upload.cgi , you can upload your tracks in NMEA (or any other) format to OSM.
The script will use gpsbabel to convert your tracks to GPX, then upload them to the main server, saving you the effort!
Support of NMEA
This is true for the NaviGPS and for Neo1973 using gllin driver. If your GPS receiver logs in NMEA format, you will need to convert the NMEA files to GPX before you can upload via the OSM website in order to make them public. New versions of JOSM can handle NMEA files.
It exists a windows application supporting live NMEA on OSM maps under http://gawisp.com/perry/nroute/
Raw NMEA Data
NMEA message strings are in the form:
$GPAAM,A,A,0.10,N,Waypointname*checksum $GPRMC,030102.653,A,3929.7,N,10506.6,W,0.14,135.42,100204,,*checksum $GPGSA,A,3,11,19,07,08,4,17,24,,,,,,1.9,1.12,3.0*checksum
Where the chars following $GP and preceding then first "," i the message type. They contain different sets of information, but the information is duplicated in different commands, so you will get your position in many of these commands.
GGA
The fields are
- Time (UTC)
- Latitude
- N for northern hemisphere and S for southern
- longitude
- East or West of prime meridian
- Type of GPS fix, 0=none, 1=fix, 2=DGPS
- Number of satellites used for fix
- HDOP. estimated error of position in the horizontal plane
- Altitude
- M=meters (unit of previous field)
- Geoidal separation
- M=meters (unit of previous field)
- DGPS channel
GSA
Data about what satellites we were using, and errors.
- xx
- type of fix: 1=none, 2=2D, 3=3D
- satellite IDs (lots of fields)
- PDOP (0-50 where 0 is good)
- HDOP
- VDOP
- Checksum
Software support
- GPSBabel — CLI/GUI converter, can read and write NMEA
- GpsPrune — for view and edit tracks: can read NMEA, but can't write in NMEA
- JOSM — editor, can read NMEA, but can't write in NMEA
|