Python Forum
Don't update/upload null data
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Don't update/upload null data
#1
Hello,
I have been trying to build a GPS tracker for my car.
I found a very useful tutorial online, and have built what is a very precise, most of the time.
Data is taken from a GPS board,onto my Pi3, and parsed by NMEA, filtered, and uplaoded to my firebase database.
My problem is that occasionally, the gps returns zero data (ie, at cold boot, or when passing through a tunnel), it's parsed, and uploaded, causing my location to jump to Lat 0 Lng 0.
It appears to be a very simple piece of code, but my attempts at modifying it, to not update the database when this happens, have not worked.

firebase=pyrebase.initialize_app(firebaseConfig)
db=firebase.database()

while True:
        port="/dev/ttyAMA0"
        ser=serial.Serial(port, baudrate=9600, timeout=0.5)
        dataout = pynmea2.NMEAStreamReader()
        newdata=ser.readline()
        n_data = newdata.decode('latin-1')
        if n_data[0:6] == '$GPRMC':
                newmsg=pynmea2.parse(n_data)
                lat=newmsg.latitude
                lng=newmsg.longitude
                gps = "Latitude=" + str(lat) + " and Longitude=" + str(lng)
                print(gps)
                data = {"LAT": lat, "LNG": lng}
                db.update(data)
                print("Data sent")
I am at a very basic level, and would be very grateful for any help you could provide.
Thanks in advance
Phil
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to express null value klatlap 3 1,849 Mar-25-2023, 10:40 AM
Last Post: klatlap
  value null when update in json file 3lnyn0 6 7,325 Dec-30-2021, 05:52 PM
Last Post: ndc85430
  simple html page with update data korenron 3 4,560 Nov-15-2021, 09:31 AM
Last Post: jamesaarr
Question Python + Google Sheet | Best way to update specific cells in a single Update()? Vokofe 1 3,822 Dec-16-2020, 05:26 AM
Last Post: Vokofe
  Multiple conditions, one is null moralear27 1 2,777 Sep-13-2020, 06:11 AM
Last Post: scidam
  I didnt get the NULL values salwa17 0 1,956 Jul-10-2020, 02:54 PM
Last Post: salwa17
  g Null Byte using DictReader eshwinsukhdeve 13 10,020 May-15-2019, 08:50 AM
Last Post: buran
  How to update only two colums in database from csv without touching data in other col Prince_Bhatia 0 2,663 Aug-21-2018, 09:13 AM
Last Post: Prince_Bhatia
  How to update data on each iteration Raj 1 2,901 Apr-23-2018, 04:17 PM
Last Post: Larz60+
  Script to read, write data to excel file and update it to firebase Expertlearner 1 4,141 Jan-03-2018, 03:32 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020