package nmea

  1. Overview
  2. Docs
Nmea parser

Install

Dune Dependency

Authors

Maintainers

Sources

v0.1.5.tar.gz
md5=a84ecb52034f5b2f7989d5bec78d3d90
sha512=663f942c49ede25f6e8f0433e5d85d7b9450a21313de1a2fbd12b482ca21228337434fb13c7b145f690d5af986ef6ea2ae0ce06cc4f4666bd1985bdca9ec2de7

README.md.html

NMEA sentence parser

An NMEA sentence parser for OCaml.

Install

opam install nmea

Usage

let rec loop_coord ch = match Nmea.Parse.next_coord with
| None -> ()
| Some(c) -> Printf.printf "Position: %s\n" c; loop_coord ch
in loop_coord (open_in "/dev/ttyACM0");;

Supported sentences

  • --GGA: Essential fix data which provide 3D location and accuracy data

  • --RMC: Recommended Minimum GPS PVT

  • --GLL: Geographic Latitude and Longitude

  • --GSV: Satellites in View

  • --GSA: GPS DOP and active satellites

  • --HDT: true heading

  • --HDM: magnetic heading

  • --HDG: magnetic heading, deviation and variation

  • --ZDA: Time & Date with timezone

https://www.tronico.fi/OH6NT/docs/NMEA0183.pdf

Roadmap

  1. ~~GPS related sentences~~

  2. ~~Heading related sentences~~

  3. Wind related sentences

  4. WP related sentences

  5. AIS related sentences

License

Copyright (c) 2020 Davide Gessa

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.