Functions | Variables
libnmea_navsat_driver::parser Namespace Reference

Functions

def convert_deg_to_rads
def convert_knots_to_mps
def convert_latitude
def convert_longitude
def convert_status_flag
def convert_time
def parse_nmea_sentence

Variables

dictionary parse_maps

Function Documentation

Definition at line 69 of file parser.py.

Definition at line 65 of file parser.py.

Definition at line 38 of file parser.py.

Definition at line 41 of file parser.py.

Definition at line 57 of file parser.py.

Definition at line 44 of file parser.py.

Definition at line 100 of file parser.py.


Variable Documentation

Initial value:
00001 {
00002         "GGA": [
00003             ("fix_type", int, 6),
00004             ("latitude", convert_latitude, 2),
00005             ("latitude_direction", str, 3),
00006             ("longitude", convert_longitude, 4),
00007             ("longitude_direction", str, 5),
00008             ("altitude", float, 9),
00009             ("mean_sea_level", float, 11),
00010             ("hdop", float, 8),
00011             ("num_satellites", int, 7),
00012             ("utc_time", convert_time, 1),
00013             ],
00014         "RMC": [
00015             ("utc_time", convert_time, 1),
00016             ("fix_valid", convert_status_flag, 2),
00017             ("latitude", convert_latitude, 3),
00018             ("latitude_direction", str, 4),
00019             ("longitude", convert_longitude, 5),
00020             ("longitude_direction", str, 6),
00021             ("speed", convert_knots_to_mps, 7),
00022             ("true_course", convert_deg_to_rads, 8),
00023             ]
00024         }

Definition at line 75 of file parser.py.



nmea_navsat_driver
Author(s): Eric Perko , Steven Martin
autogenerated on Thu Aug 27 2015 14:11:02