Hi all,
I’m here to ask for your help, I’ve been going around forums for days trying to get what I want but coming up with no results.
Every second i receive data via UDP from two gps in NMEA format; with python pynmea2 library I can decode the gps strings, below is an example:
data = “$GPGGA,121501.00,4443.35240977,S,16914.59591748,E,2,07,1.4,355.389,M,5.081,M,6.0,0122*6D”
msg = pynmea2.parse(data)
msg
<GGA(timestamp=datetime.time(12, 15, 1, tzinfo=datetime.timezone.utc), lat=‘4443.35240977’, lat_dir=‘S’, lon=‘16914.59591748’, lon_dir=‘E’, gps_qual=2, num_sats=‘07’, horizontal_dil=‘1.4’, altitude=355.389, altitude_units=‘M’, geo_sep=‘5.081’, geo_sep_units=‘M’, age_gps_data=‘6.0’, ref_station_id=‘0122’)>
Now I would like to import all these data into influxdb, can someone kindly tell me how to do?
Thanks in advance for your support.