How to optimize GPS data on live location.

Bhanu From Nepal17 days ago

I just send from this script:

#!/usr/bin/env python3

import socket
import binascii

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("103.90.86.173", 5023))
#s.send(binascii.unhexlify('68680f0504035889905831401700df1a00000d0a'))
s.send(b"imei:867111063081688,tracker,151030080103,,F,000101.000,A,5443.3834,N,02512.9071,E,0.00,0;")

while True:
    print(s.recv(1024))

s.close()

and I got data on log like this:

2025-02-06 20:51:37  INFO: [Tc1bfc0eb] connected
2025-02-06 20:51:37  INFO: [Tc1bfc0eb: gt06 < 150.107.107.50] imei:867111063081688,tracker,151030080103,,F,000101.000,A,5443.3834,N,02512.9071,E,0.00,0; 

Here 150.107.107.50 is my computer's IP.

Our devices don't have any password. Please help me how to send data to device to check. and these are the logs of same device which is working:

025-02-06 20:50:17  INFO: [Td6c112ae: gt06 < 49.126.98.186] 79790020940a086711106308168842902024081549008997702222780554960f015108780d0a
2025-02-06 20:50:17  INFO: [Td6c112ae] id: 867111063081688, time: 2025-02-06 20:38:12, lat: 27.51140, lon: 83.44784, course: 206.0

Please help me how can I test, what modification needed on script or any other idea/way.

Track-trace16 days ago

Actually this is above my league as i understand now this type of tracker (i dont use gt06 protocol devices) use binary protocol and possible password.