Description Usage Arguments Value Examples
Most NMEA sentences are valid ASCII text. Some, however, contain embedded
nul characters as part of their structure and can't be represented by
a character()
. For most NMEA text you probably don't need this class
(just read the file as lines and pass to the other functions in
this package).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
x |
An object to be converted to one or more NMEA sentences |
... |
Unused |
nmea_col |
A column name containing the NMEA sentence in a data.frame.
Defaults to "sentence" as this is the column returned by |
A new_nmea()
.
1 2 3 4 5 6 7 8 | nmea()
as_nmea(NA_character_)
as_nmea(nmea_test_basic)
as_nmea(list(charToRaw(nmea_test_basic[1])))
as_nmea(charToRaw(nmea_test_basic[1]))
# can include 0x00!
nmea(list(as.raw(0x00)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.