process_gga.Rd
This function pulls out position fix data from NMEA-0183 G*GGA strings and dumps it into a list.
process_gga(string = NULL)
A string with valid NMEA-0183 G*GGA structure.
A list containing the data elements recorded in NMEA-0183 G*GGA data chunks. Elements are given appropriate R data types.
# first GPGGA msg from data('n38_demo')
msg_1 <- "$GPGGA,015808.00,2726.53758,S,15126.05255,E,1,08,1.0,365.1,M,39.5,M,,*79"
gpgga_1 <- em38:::process_gga(string = msg_1)