package nmea

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | ZDA
  2. | VDO
  3. | VDM
  4. | UNIT of string
  5. | STAR
  6. | SPREFIX
  7. | SLASH
  8. | RMC
  9. | REAL of float
  10. | NS of Coord.ns
  11. | NAT of int
  12. | ID of string
  13. | HEX of int
  14. | HDT
  15. | HDM
  16. | HDG
  17. | GSV
  18. | GSA
  19. | GP
  20. | GLL
  21. | GGA
  22. | EW of Coord.ew
  23. | EOL
  24. | COMMA
  25. | APREFIX
exception Error
val sentence : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Sentence.t