2024-07-22 -
This commit is contained in:
parent
ad1c779724
commit
51ff47cdee
126
csvdummy.py
Executable file
126
csvdummy.py
Executable file
@ -0,0 +1,126 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding:utf-8 -*-
|
||||
import RPi.GPIO as GPIO
|
||||
import serial
|
||||
import time, os
|
||||
import csv
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
# GPIO configuration
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
GPIO.setwarnings(False)
|
||||
|
||||
ser = serial.Serial('/dev/ttyS0',115200)
|
||||
ser.flushInput()
|
||||
|
||||
rec_buff = ''
|
||||
time_count = 0
|
||||
|
||||
myhost = os.uname()[1]
|
||||
|
||||
|
||||
# CSV file settings
|
||||
csv_filename = f"gps_data_{myhost}.csv"
|
||||
csv_headers = ["Timestamp", "Latitude", "Longitude"]
|
||||
|
||||
def convert_to_decimal(coord_str):
|
||||
coord = coord_str[:-2]
|
||||
direction = coord_str[-1]
|
||||
|
||||
degrees = float(coord[:2] if direction in ['N', 'S'] else coord[:3])
|
||||
minutes = float(coord[2:] if direction in ['N', 'S'] else coord[3:])
|
||||
|
||||
decimal = degrees + (minutes / 60)
|
||||
|
||||
if direction in ['S', 'W']:
|
||||
decimal = -decimal
|
||||
|
||||
return decimal
|
||||
|
||||
def parse_gps_data(gps_string):
|
||||
parts = gps_string.split(',')
|
||||
if len(parts) != 4:
|
||||
return "Invalid GPS data"
|
||||
|
||||
lat = convert_to_decimal(parts[0] + ',' + parts[1])
|
||||
lon = convert_to_decimal(parts[2] + ',' + parts[3])
|
||||
|
||||
return f"{lat:.6f}", f"{lon:.6f}"
|
||||
|
||||
def write_to_csv(lat, lon):
|
||||
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||
with open(csv_filename, mode='a', newline='') as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow(["Test Timestamp", 0.0, 0.0])
|
||||
|
||||
|
||||
def send_at(command,back,timeout):
|
||||
rec_buff = ''
|
||||
ser.write((command+'\r\n').encode())
|
||||
time.sleep(timeout)
|
||||
if ser.inWaiting():
|
||||
time.sleep(0.01)
|
||||
rec_buff = ser.read(ser.inWaiting())
|
||||
if rec_buff != '':
|
||||
if back not in rec_buff.decode():
|
||||
print(command + ' ERROR')
|
||||
print(command + ' back:\t' + rec_buff.decode())
|
||||
return 0
|
||||
else:
|
||||
gps_data = rec_buff.decode()[13:-36]
|
||||
print("Raw GPS data:", gps_data)
|
||||
lat, lon = parse_gps_data(gps_data)
|
||||
converted_gps = f"{lat}, {lon}"
|
||||
print("Converted GPS data for Google Maps:", converted_gps)
|
||||
current_time = datetime.datetime.now()
|
||||
write_to_csv(current_time, lat, lon)
|
||||
return 1
|
||||
else:
|
||||
print('GPS no está listo')
|
||||
return 0
|
||||
|
||||
def get_gps_position():
|
||||
rec_null = True
|
||||
answer = 0
|
||||
print('Iniciando GPS')
|
||||
rec_buff = ''
|
||||
send_at('AT+CGPS=1,1','OK',1)
|
||||
time.sleep(2)
|
||||
while rec_null:
|
||||
answer = send_at('AT+CGPSINFO','+CGPSINFO: ',1)
|
||||
client.publish("iiot/"+ myhost +"/gps", rec_buff, 0)
|
||||
if 1 == answer:
|
||||
answer = 0
|
||||
if ',,,,,,' in rec_buff:
|
||||
print('GPS no está listo')
|
||||
rec_null = False
|
||||
time.sleep(1)
|
||||
else:
|
||||
print('error %d'%answer)
|
||||
rec_buff = ''
|
||||
send_at('AT+CGPS=0','OK',1)
|
||||
return False
|
||||
time.sleep(1.5)
|
||||
|
||||
|
||||
# Create CSV file with headers if it doesn't exist
|
||||
if not os.path.exists(csv_filename):
|
||||
with open(csv_filename, mode='w', newline='') as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow([timestamp, lat, lon])
|
||||
writer.writerow(csv_headers)
|
||||
|
||||
|
||||
try:
|
||||
get_gps_position()
|
||||
|
||||
except:
|
||||
if ser != None:
|
||||
ser.close()
|
||||
GPIO.cleanup()
|
||||
|
||||
if ser != None:
|
||||
ser.close()
|
||||
GPIO.cleanup()
|
||||
|
118
gps001.py
Executable file
118
gps001.py
Executable file
@ -0,0 +1,118 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding:utf-8 -*-
|
||||
import RPi.GPIO as GPIO
|
||||
import serial
|
||||
import time
|
||||
import os
|
||||
import csv
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
# GPIO configuration
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
GPIO.setwarnings(False)
|
||||
|
||||
ser = serial.Serial('/dev/ttyS0', 115200)
|
||||
ser.flushInput()
|
||||
|
||||
rec_buff = ''
|
||||
time_count = 0
|
||||
|
||||
myhost = os.uname()[1]
|
||||
|
||||
# CSV file settings
|
||||
csv_filename = f"gps_data_{myhost}.csv"
|
||||
csv_headers = ["Timestamp", "Latitude", "Longitude"]
|
||||
|
||||
def convert_to_decimal(coord_str):
|
||||
coord = coord_str[:-2]
|
||||
direction = coord_str[-1]
|
||||
|
||||
degrees = float(coord[:2] if direction in ['N', 'S'] else coord[:3])
|
||||
minutes = float(coord[2:] if direction in ['N', 'S'] else coord[3:])
|
||||
|
||||
decimal = degrees + (minutes / 60)
|
||||
|
||||
if direction in ['S', 'W']:
|
||||
decimal = -decimal
|
||||
|
||||
return decimal
|
||||
|
||||
def parse_gps_data(gps_string):
|
||||
parts = gps_string.split(',')
|
||||
if len(parts) != 4:
|
||||
return "Invalid GPS data"
|
||||
|
||||
lat = convert_to_decimal(parts[0] + ',' + parts[1])
|
||||
lon = convert_to_decimal(parts[2] + ',' + parts[3])
|
||||
|
||||
return f"{lat:.6f}", f"{lon:.6f}"
|
||||
|
||||
def write_to_csv(lat, lon):
|
||||
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||
with open(csv_filename, mode='a', newline='') as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow([timestamp, lat, lon])
|
||||
|
||||
|
||||
def send_at(command, back, timeout):
|
||||
rec_buff = ''
|
||||
ser.write((command + '\r\n').encode())
|
||||
time.sleep(timeout)
|
||||
if ser.inWaiting():
|
||||
time.sleep(0.01)
|
||||
rec_buff = ser.read(ser.inWaiting())
|
||||
if rec_buff:
|
||||
if back not in rec_buff.decode():
|
||||
print(command + ' ERROR')
|
||||
print(command + ' back:\t' + rec_buff.decode())
|
||||
return 0
|
||||
else:
|
||||
gps_data = rec_buff.decode()[13:-36]
|
||||
print("Raw GPS data:", gps_data)
|
||||
lat, lon = parse_gps_data(gps_data)
|
||||
converted_gps = f"{lat}, {lon}"
|
||||
print("Converted GPS data for Google Maps:", converted_gps)
|
||||
current_time = datetime.now()
|
||||
write_to_csv(lat, lon)
|
||||
return 1
|
||||
else:
|
||||
print('GPS no está listo')
|
||||
return 0
|
||||
|
||||
def get_gps_position():
|
||||
rec_null = True
|
||||
answer = 0
|
||||
print('Iniciando GPS')
|
||||
rec_buff = ''
|
||||
send_at('AT+CGPS=1,1', 'OK', 1)
|
||||
time.sleep(2)
|
||||
while rec_null:
|
||||
answer = send_at('AT+CGPSINFO', '+CGPSINFO: ', 1)
|
||||
# Handle MQTT publishing here if needed
|
||||
if answer == 1:
|
||||
if ',,,,,,' in rec_buff:
|
||||
print('GPS no está listo')
|
||||
rec_null = False
|
||||
time.sleep(1)
|
||||
else:
|
||||
print(f'Error {answer}')
|
||||
rec_buff = ''
|
||||
send_at('AT+CGPS=0', 'OK', 1)
|
||||
return False
|
||||
time.sleep(1.5)
|
||||
|
||||
# Create CSV file with headers if it doesn't exist
|
||||
if not os.path.exists(csv_filename):
|
||||
with open(csv_filename, mode='w', newline='') as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow(csv_headers)
|
||||
|
||||
try:
|
||||
get_gps_position()
|
||||
except Exception as e:
|
||||
print(f"Error: {e}")
|
||||
finally:
|
||||
if ser:
|
||||
ser.close()
|
||||
GPIO.cleanup()
|
5
gps01.py
5
gps01.py
@ -6,6 +6,7 @@ import time, os
|
||||
import csv
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
# GPIO configuration
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
GPIO.setwarnings(False)
|
||||
@ -18,6 +19,7 @@ time_count = 0
|
||||
|
||||
myhost = os.uname()[1]
|
||||
|
||||
|
||||
# CSV file settings
|
||||
csv_filename = f"gps_data_{myhost}.csv"
|
||||
csv_headers = ["Timestamp", "Latitude", "Longitude"]
|
||||
@ -107,7 +109,8 @@ if not os.path.exists(csv_filename):
|
||||
with open(csv_filename, mode='w', newline='') as file:
|
||||
writer = csv.writer(file)
|
||||
writer.writerow([timestamp, lat, lon])
|
||||
# writer.writerow(csv_headers)
|
||||
writer.writerow(csv_headers)
|
||||
|
||||
|
||||
try:
|
||||
get_gps_position()
|
||||
|
127
gps08.py
Normal file
127
gps08.py
Normal file
@ -0,0 +1,127 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding:utf-8 -*-
|
||||
import RPi.GPIO as GPIO
|
||||
import paho.mqtt.client as mqtt
|
||||
import serial
|
||||
import time
|
||||
import os
|
||||
import csv
|
||||
from datetime import datetime
|
||||
|
||||
# MQTT Broker settings
|
||||
mqttBroker = "65.108.199.212"
|
||||
myhost = os.uname()[1]
|
||||
client = mqtt.Client(myhost)
|
||||
|
||||
ser = serial.Serial('/dev/ttyS0', 115200)
|
||||
ser.flushInput()
|
||||
|
||||
rec_buff = ''
|
||||
time_count = 0
|
||||
|
||||
# GPIO setup
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
GPIO.setwarnings(False)
|
||||
gpio_initialized = False
|
||||
|
||||
def setup_gpio(power_key):
|
||||
global gpio_initialized
|
||||
if not gpio_initialized:
|
||||
GPIO.setup(power_key, GPIO.OUT)
|
||||
gpio_initialized = True
|
||||
|
||||
def send_at(command, back, timeout):
|
||||
rec_buff = ''
|
||||
ser.write((command+'\r\n').encode())
|
||||
time.sleep(timeout)
|
||||
if ser.inWaiting():
|
||||
time.sleep(0.01)
|
||||
rec_buff = ser.read(ser.inWaiting())
|
||||
if rec_buff != '':
|
||||
if back not in rec_buff.decode():
|
||||
print(command + ' ERROR')
|
||||
print(command + ' back:\t' + rec_buff.decode())
|
||||
return 0
|
||||
else:
|
||||
gps_data = rec_buff.decode()[13:-36]
|
||||
print(gps_data)
|
||||
client.publish("iiot/" + myhost + "/gps", gps_data)
|
||||
return gps_data
|
||||
else:
|
||||
print('GPS no está listo')
|
||||
return 0
|
||||
|
||||
def parse_gps_data(gps_data):
|
||||
parts = gps_data.split(',')
|
||||
if len(parts) >= 4:
|
||||
lat = float(parts[0][:2]) + float(parts[0][2:]) / 60
|
||||
lon = float(parts[2][:3]) + float(parts[2][3:]) / 60
|
||||
if parts[1] == 'S':
|
||||
lat = -lat
|
||||
if parts[3] == 'W':
|
||||
lon = -lon
|
||||
return lat, lon
|
||||
return None, None
|
||||
|
||||
def write_to_csv(lat, lon):
|
||||
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||
with open('gps_data.csv', 'a', newline='') as csvfile:
|
||||
writer = csv.writer(csvfile)
|
||||
writer.writerow([timestamp, lat, lon])
|
||||
|
||||
def get_gps_position():
|
||||
rec_null = True
|
||||
print('Iniciando GPS')
|
||||
send_at('AT+CGPS=1,1', 'OK', 1)
|
||||
time.sleep(2)
|
||||
while rec_null:
|
||||
gps_data = send_at('AT+CGPSINFO', '+CGPSINFO: ', 1)
|
||||
if gps_data and gps_data != 0:
|
||||
if ',,,,,,' not in gps_data:
|
||||
lat, lon = parse_gps_data(gps_data)
|
||||
if lat is not None and lon is not None:
|
||||
write_to_csv(lat, lon)
|
||||
print(f"GPS data written to CSV: {lat}, {lon}")
|
||||
rec_null = False
|
||||
else:
|
||||
print('GPS no está listo')
|
||||
else:
|
||||
print('error')
|
||||
send_at('AT+CGPS=0', 'OK', 1)
|
||||
return False
|
||||
time.sleep(1.5)
|
||||
|
||||
def power_on(power_key):
|
||||
print('SIM7600X is starting:')
|
||||
setup_gpio(power_key)
|
||||
time.sleep(0.1)
|
||||
GPIO.output(power_key, GPIO.HIGH)
|
||||
time.sleep(2)
|
||||
GPIO.output(power_key, GPIO.LOW)
|
||||
time.sleep(20)
|
||||
ser.flushInput()
|
||||
print('SIM7600X is ready')
|
||||
|
||||
def power_down(power_key):
|
||||
if gpio_initialized:
|
||||
print('SIM7600X is loging off:')
|
||||
GPIO.output(power_key, GPIO.HIGH)
|
||||
time.sleep(3)
|
||||
GPIO.output(power_key, GPIO.LOW)
|
||||
time.sleep(18)
|
||||
print('Good bye')
|
||||
|
||||
try:
|
||||
power_key = 6 # Replace with your actual power key GPIO pin number
|
||||
power_on(power_key)
|
||||
get_gps_position()
|
||||
power_down(power_key)
|
||||
except Exception as e:
|
||||
print(f"An error occurred: {e}")
|
||||
finally:
|
||||
if ser is not None:
|
||||
ser.close()
|
||||
if gpio_initialized:
|
||||
GPIO.cleanup()
|
||||
|
||||
print("Script execution completed.")
|
@ -0,0 +1,673 @@
|
||||
Timestamp,Latitude,Longitude
|
||||
2024-07-22 17:19:23,9.939921,-84.104926
|
||||
2024-07-22 17:19:25,9.939921,-84.104926
|
||||
2024-07-22 17:19:28,9.939921,-84.104926
|
||||
2024-07-22 17:19:30,9.939921,-84.104926
|
||||
2024-07-22 17:26:10,9.939916,-84.104928
|
||||
2024-07-22 17:26:13,9.939916,-84.104928
|
||||
2024-07-22 17:26:15,9.939916,-84.104928
|
||||
2024-07-22 17:26:18,9.939916,-84.104929
|
||||
2024-07-22 17:26:20,9.939916,-84.104929
|
||||
2024-07-22 17:26:23,9.939916,-84.104929
|
||||
2024-07-22 17:26:26,9.939916,-84.104929
|
||||
2024-07-22 17:26:28,9.939916,-84.104929
|
||||
2024-07-22 17:26:31,9.939916,-84.104929
|
||||
2024-07-22 17:26:33,9.939916,-84.104929
|
||||
2024-07-22 17:26:36,9.939916,-84.104929
|
||||
2024-07-22 17:26:38,9.939916,-84.104928
|
||||
2024-07-22 17:26:41,9.939916,-84.104928
|
||||
2024-07-22 17:26:43,9.939916,-84.104928
|
||||
2024-07-22 17:26:46,9.939916,-84.104928
|
||||
2024-07-22 17:26:48,9.939916,-84.104928
|
||||
2024-07-22 17:26:51,9.939916,-84.104929
|
||||
2024-07-22 17:26:53,9.939916,-84.104929
|
||||
2024-07-22 17:26:56,9.939916,-84.104929
|
||||
2024-07-22 17:26:58,9.939916,-84.104929
|
||||
2024-07-22 17:27:01,9.939916,-84.104929
|
||||
2024-07-22 17:27:03,9.939916,-84.104929
|
||||
2024-07-22 17:27:06,9.939916,-84.104929
|
||||
2024-07-22 17:27:08,9.939916,-84.104929
|
||||
2024-07-22 17:27:11,9.939916,-84.104929
|
||||
2024-07-22 17:27:13,9.939916,-84.104929
|
||||
2024-07-22 17:27:16,9.939916,-84.104929
|
||||
2024-07-22 17:27:18,9.939916,-84.104929
|
||||
2024-07-22 17:27:21,9.939916,-84.104929
|
||||
2024-07-22 17:27:23,9.939916,-84.104929
|
||||
2024-07-22 17:27:26,9.939916,-84.104929
|
||||
2024-07-22 17:27:28,9.939916,-84.104929
|
||||
2024-07-22 17:27:31,9.939916,-84.104929
|
||||
2024-07-22 17:27:33,9.939916,-84.104929
|
||||
2024-07-22 17:27:36,9.939916,-84.104929
|
||||
2024-07-22 17:27:38,9.939916,-84.104929
|
||||
2024-07-22 17:27:41,9.939916,-84.104929
|
||||
2024-07-22 17:27:43,9.939916,-84.104929
|
||||
2024-07-22 17:27:46,9.939916,-84.104929
|
||||
2024-07-22 17:27:48,9.939916,-84.104929
|
||||
2024-07-22 17:27:53,9.939916,-84.104929
|
||||
2024-07-22 17:27:55,9.939916,-84.104929
|
||||
2024-07-22 17:27:58,9.939916,-84.104929
|
||||
2024-07-22 17:28:00,9.939916,-84.104929
|
||||
2024-07-22 17:28:03,9.939916,-84.104929
|
||||
2024-07-22 17:28:06,9.939916,-84.104929
|
||||
2024-07-22 17:28:08,9.939916,-84.104929
|
||||
2024-07-22 17:28:11,9.939916,-84.104929
|
||||
2024-07-22 17:28:13,9.939916,-84.104929
|
||||
2024-07-22 17:28:16,9.939916,-84.104929
|
||||
2024-07-22 17:28:18,9.939916,-84.104929
|
||||
2024-07-22 17:28:21,9.939916,-84.104929
|
||||
2024-07-22 17:28:23,9.939916,-84.104929
|
||||
2024-07-22 17:28:26,9.939916,-84.104929
|
||||
2024-07-22 17:28:28,9.939916,-84.104929
|
||||
2024-07-22 17:28:31,9.939916,-84.104929
|
||||
2024-07-22 17:28:33,9.939916,-84.104929
|
||||
2024-07-22 17:28:36,9.939916,-84.104929
|
||||
2024-07-22 17:28:38,9.939916,-84.104929
|
||||
2024-07-22 17:28:41,9.939916,-84.104929
|
||||
2024-07-22 17:28:43,9.939916,-84.104929
|
||||
2024-07-22 17:28:46,9.939916,-84.104929
|
||||
2024-07-22 17:28:48,9.939916,-84.104929
|
||||
2024-07-22 17:28:51,9.939916,-84.104929
|
||||
2024-07-22 17:28:53,9.939916,-84.104929
|
||||
2024-07-22 17:28:56,9.939916,-84.104929
|
||||
2024-07-22 17:28:58,9.939916,-84.104929
|
||||
2024-07-22 17:29:01,9.939916,-84.104929
|
||||
2024-07-22 17:29:03,9.939916,-84.104929
|
||||
2024-07-22 17:29:06,9.939916,-84.104929
|
||||
2024-07-22 17:29:08,9.939916,-84.104929
|
||||
2024-07-22 17:29:11,9.939916,-84.104929
|
||||
2024-07-22 17:29:13,9.939916,-84.104929
|
||||
2024-07-22 17:29:16,9.939916,-84.104929
|
||||
2024-07-22 17:29:18,9.939916,-84.104929
|
||||
2024-07-22 17:29:21,9.939916,-84.104929
|
||||
2024-07-22 17:29:23,9.939916,-84.104929
|
||||
2024-07-22 17:29:26,9.939916,-84.104929
|
||||
2024-07-22 17:29:28,9.939916,-84.104929
|
||||
2024-07-22 17:29:31,9.939916,-84.104929
|
||||
2024-07-22 17:29:34,9.939916,-84.104929
|
||||
2024-07-22 17:29:36,9.939916,-84.104929
|
||||
2024-07-22 17:29:39,9.939916,-84.104929
|
||||
2024-07-22 17:29:41,9.939916,-84.104929
|
||||
2024-07-22 17:29:44,9.939916,-84.104929
|
||||
2024-07-22 17:29:46,9.939916,-84.104929
|
||||
2024-07-22 17:29:49,9.939916,-84.104929
|
||||
2024-07-22 17:29:51,9.939916,-84.104929
|
||||
2024-07-22 17:29:54,9.939916,-84.104929
|
||||
2024-07-22 17:29:56,9.939916,-84.104929
|
||||
2024-07-22 17:29:59,9.939916,-84.104929
|
||||
2024-07-22 17:30:01,9.939916,-84.104929
|
||||
2024-07-22 17:30:04,9.939916,-84.104929
|
||||
2024-07-22 17:30:06,9.939916,-84.104929
|
||||
2024-07-22 17:30:09,9.939916,-84.104929
|
||||
2024-07-22 17:30:11,9.939916,-84.104929
|
||||
2024-07-22 17:30:14,9.939916,-84.104929
|
||||
2024-07-22 17:30:16,9.939916,-84.104929
|
||||
2024-07-22 17:30:19,9.939916,-84.104929
|
||||
2024-07-22 17:30:21,9.939916,-84.104929
|
||||
2024-07-22 17:30:24,9.939916,-84.104929
|
||||
2024-07-22 17:30:26,9.939916,-84.104929
|
||||
2024-07-22 17:30:29,9.939916,-84.104929
|
||||
2024-07-22 17:30:31,9.939916,-84.104929
|
||||
2024-07-22 17:30:34,9.939916,-84.104929
|
||||
2024-07-22 17:30:36,9.939916,-84.104929
|
||||
2024-07-22 17:30:39,9.939916,-84.104929
|
||||
2024-07-22 17:30:41,9.939916,-84.104929
|
||||
2024-07-22 17:30:44,9.939916,-84.104929
|
||||
2024-07-22 17:30:46,9.939916,-84.104929
|
||||
2024-07-22 17:30:49,9.939916,-84.104929
|
||||
2024-07-22 17:30:51,9.939916,-84.104929
|
||||
2024-07-22 17:30:54,9.939916,-84.104929
|
||||
2024-07-22 17:30:56,9.939916,-84.104929
|
||||
2024-07-22 17:30:59,9.939916,-84.104929
|
||||
2024-07-22 17:31:01,9.939916,-84.104929
|
||||
2024-07-22 17:31:04,9.939916,-84.104929
|
||||
2024-07-22 17:31:07,9.939916,-84.104929
|
||||
2024-07-22 17:31:09,9.939916,-84.104929
|
||||
2024-07-22 17:31:12,9.939916,-84.104929
|
||||
2024-07-22 17:31:14,9.939916,-84.104929
|
||||
2024-07-22 17:31:17,9.939916,-84.104929
|
||||
2024-07-22 17:31:19,9.939916,-84.104929
|
||||
2024-07-22 17:31:22,9.939916,-84.104929
|
||||
2024-07-22 17:31:24,9.939916,-84.104929
|
||||
2024-07-22 17:31:27,9.939916,-84.104929
|
||||
2024-07-22 17:31:29,9.939916,-84.104929
|
||||
2024-07-22 17:31:32,9.939916,-84.104929
|
||||
2024-07-22 17:31:34,9.939916,-84.104929
|
||||
2024-07-22 17:31:37,9.939916,-84.104929
|
||||
2024-07-22 17:31:39,9.939916,-84.104929
|
||||
2024-07-22 17:31:42,9.939916,-84.104929
|
||||
2024-07-22 17:31:44,9.939916,-84.104929
|
||||
2024-07-22 17:31:47,9.939916,-84.104929
|
||||
2024-07-22 17:31:49,9.939916,-84.104929
|
||||
2024-07-22 17:32:11,9.939917,-84.104929
|
||||
2024-07-22 17:32:13,9.939917,-84.104929
|
||||
2024-07-22 17:32:16,9.939917,-84.104929
|
||||
2024-07-22 17:32:18,9.939917,-84.104929
|
||||
2024-07-22 17:32:21,9.939917,-84.104929
|
||||
2024-07-22 17:32:23,9.939917,-84.104929
|
||||
2024-07-22 17:32:26,9.939917,-84.104929
|
||||
2024-07-22 17:32:28,9.939917,-84.104929
|
||||
2024-07-22 17:32:31,9.939917,-84.104929
|
||||
2024-07-22 17:32:33,9.939917,-84.104929
|
||||
2024-07-22 17:32:36,9.939917,-84.104929
|
||||
2024-07-22 17:32:38,9.939917,-84.104929
|
||||
2024-07-22 17:32:41,9.939917,-84.104929
|
||||
2024-07-22 17:32:43,9.939917,-84.104929
|
||||
2024-07-22 17:32:46,9.939917,-84.104929
|
||||
2024-07-22 17:32:48,9.939917,-84.104929
|
||||
2024-07-22 17:32:51,9.939917,-84.104929
|
||||
2024-07-22 17:32:53,9.939917,-84.104929
|
||||
2024-07-22 17:32:56,9.939917,-84.104929
|
||||
2024-07-22 17:32:58,9.939917,-84.104929
|
||||
2024-07-22 17:33:01,9.939917,-84.104929
|
||||
2024-07-22 17:33:04,9.939917,-84.104929
|
||||
2024-07-22 17:33:06,9.939917,-84.104929
|
||||
2024-07-22 17:33:09,9.939917,-84.104929
|
||||
2024-07-22 17:33:11,9.939917,-84.104929
|
||||
2024-07-22 17:33:14,9.939917,-84.104929
|
||||
2024-07-22 17:33:16,9.939917,-84.104929
|
||||
2024-07-22 17:33:19,9.939917,-84.104929
|
||||
2024-07-22 17:33:21,9.939917,-84.104929
|
||||
2024-07-22 17:33:24,9.939917,-84.104929
|
||||
2024-07-22 17:33:26,9.939917,-84.104929
|
||||
2024-07-22 17:33:29,9.939917,-84.104929
|
||||
2024-07-22 17:33:31,9.939917,-84.104929
|
||||
2024-07-22 17:33:34,9.939917,-84.104929
|
||||
2024-07-22 17:33:36,9.939917,-84.104929
|
||||
2024-07-22 17:33:39,9.939917,-84.104929
|
||||
2024-07-22 17:33:41,9.939917,-84.104929
|
||||
2024-07-22 17:33:44,9.939917,-84.104929
|
||||
2024-07-22 17:33:46,9.939917,-84.104929
|
||||
2024-07-22 17:33:49,9.939917,-84.104929
|
||||
2024-07-22 17:33:51,9.939917,-84.104929
|
||||
2024-07-22 17:33:54,9.939917,-84.104929
|
||||
2024-07-22 17:33:56,9.939917,-84.104929
|
||||
2024-07-22 17:33:59,9.939917,-84.104929
|
||||
2024-07-22 17:34:01,9.939917,-84.104929
|
||||
2024-07-22 17:34:04,9.939917,-84.104929
|
||||
2024-07-22 17:34:06,9.939917,-84.104929
|
||||
2024-07-22 17:34:09,9.939917,-84.104929
|
||||
2024-07-22 17:34:11,9.939917,-84.104929
|
||||
2024-07-22 17:34:14,9.939917,-84.104929
|
||||
2024-07-22 17:34:16,9.939917,-84.104929
|
||||
2024-07-22 17:34:19,9.939917,-84.104929
|
||||
2024-07-22 17:34:21,9.939917,-84.104929
|
||||
2024-07-22 17:34:24,9.939917,-84.104929
|
||||
2024-07-22 17:34:26,9.939917,-84.104929
|
||||
2024-07-22 17:34:29,9.939917,-84.104929
|
||||
2024-07-22 17:34:31,9.939917,-84.104929
|
||||
2024-07-22 17:34:34,9.939917,-84.104929
|
||||
2024-07-22 17:34:37,9.939917,-84.104929
|
||||
2024-07-22 17:34:39,9.939917,-84.104929
|
||||
2024-07-22 17:34:42,9.939917,-84.104929
|
||||
2024-07-22 17:34:44,9.939917,-84.104929
|
||||
2024-07-22 17:34:47,9.939917,-84.104929
|
||||
2024-07-22 17:34:49,9.939917,-84.104929
|
||||
2024-07-22 17:34:52,9.939917,-84.104929
|
||||
2024-07-22 17:34:54,9.939917,-84.104929
|
||||
2024-07-22 17:34:57,9.939917,-84.104929
|
||||
2024-07-22 17:34:59,9.939917,-84.104929
|
||||
2024-07-22 17:35:02,9.939917,-84.104929
|
||||
2024-07-22 17:35:04,9.939917,-84.104929
|
||||
2024-07-22 17:35:23,9.939916,-84.104929
|
||||
2024-07-22 17:35:25,9.939916,-84.104929
|
||||
2024-07-22 17:35:28,9.939916,-84.104929
|
||||
2024-07-22 17:35:31,9.939916,-84.104929
|
||||
2024-07-22 17:35:33,9.939916,-84.104929
|
||||
2024-07-22 17:35:36,9.939916,-84.104929
|
||||
2024-07-22 17:35:38,9.939916,-84.104929
|
||||
2024-07-22 17:35:41,9.939916,-84.104929
|
||||
2024-07-22 17:35:43,9.939916,-84.104929
|
||||
2024-07-22 17:35:46,9.939916,-84.104929
|
||||
2024-07-22 17:35:48,9.939916,-84.104929
|
||||
2024-07-22 17:35:51,9.939916,-84.104929
|
||||
2024-07-22 17:35:53,9.939916,-84.104929
|
||||
2024-07-22 17:35:56,9.939916,-84.104929
|
||||
2024-07-22 17:35:58,9.939916,-84.104929
|
||||
2024-07-22 17:36:01,9.939916,-84.104929
|
||||
2024-07-22 17:36:03,9.939916,-84.104929
|
||||
2024-07-22 17:36:06,9.939916,-84.104929
|
||||
2024-07-22 17:36:08,9.939916,-84.104929
|
||||
2024-07-22 17:36:11,9.939916,-84.104929
|
||||
2024-07-22 17:36:13,9.939916,-84.104929
|
||||
2024-07-22 17:36:16,9.939916,-84.104929
|
||||
2024-07-22 17:36:18,9.939916,-84.104929
|
||||
2024-07-22 17:36:21,9.939916,-84.104929
|
||||
2024-07-22 17:36:23,9.939916,-84.104929
|
||||
2024-07-22 17:36:26,9.939916,-84.104929
|
||||
2024-07-22 17:36:28,9.939916,-84.104929
|
||||
2024-07-22 17:36:31,9.939916,-84.104929
|
||||
2024-07-22 17:36:33,9.939916,-84.104929
|
||||
2024-07-22 17:36:36,9.939916,-84.104929
|
||||
2024-07-22 17:36:38,9.939916,-84.104929
|
||||
2024-07-22 17:36:41,9.939916,-84.104929
|
||||
2024-07-22 17:36:43,9.939916,-84.104929
|
||||
2024-07-22 17:36:46,9.939916,-84.104929
|
||||
2024-07-22 17:36:48,9.939916,-84.104929
|
||||
2024-07-22 17:36:51,9.939916,-84.104929
|
||||
2024-07-22 17:36:53,9.939916,-84.104929
|
||||
2024-07-22 17:36:56,9.939917,-84.104929
|
||||
2024-07-22 17:36:58,9.939917,-84.104929
|
||||
2024-07-22 17:37:01,9.939917,-84.104929
|
||||
2024-07-22 17:37:04,9.939917,-84.104929
|
||||
2024-07-22 17:37:06,9.939917,-84.104929
|
||||
2024-07-22 17:37:09,9.939917,-84.104929
|
||||
2024-07-22 17:37:11,9.939917,-84.104929
|
||||
2024-07-22 17:37:14,9.939917,-84.104929
|
||||
2024-07-22 17:37:16,9.939917,-84.104929
|
||||
2024-07-22 17:37:19,9.939917,-84.104929
|
||||
2024-07-22 17:37:21,9.939917,-84.104929
|
||||
2024-07-22 17:37:24,9.939917,-84.104929
|
||||
2024-07-22 17:37:26,9.939917,-84.104929
|
||||
2024-07-22 17:37:29,9.939917,-84.104929
|
||||
2024-07-22 17:40:01,9.939917,-84.104929
|
||||
2024-07-22 17:40:03,9.939917,-84.104929
|
||||
2024-07-22 17:40:06,9.939917,-84.104929
|
||||
2024-07-22 17:40:08,9.939917,-84.104929
|
||||
2024-07-22 17:40:11,9.939917,-84.104929
|
||||
2024-07-22 17:40:13,9.939917,-84.104929
|
||||
2024-07-22 17:40:16,9.939917,-84.104929
|
||||
2024-07-22 17:40:18,9.939917,-84.104929
|
||||
2024-07-22 17:40:21,9.939917,-84.104929
|
||||
2024-07-22 17:40:24,9.939917,-84.104929
|
||||
2024-07-22 17:40:26,9.939917,-84.104929
|
||||
2024-07-22 17:40:29,9.939917,-84.104929
|
||||
2024-07-22 17:40:31,9.939917,-84.104929
|
||||
2024-07-22 17:40:34,9.939917,-84.104929
|
||||
2024-07-22 17:40:36,9.939917,-84.104929
|
||||
2024-07-22 17:40:39,9.939917,-84.104929
|
||||
2024-07-22 17:40:41,9.939917,-84.104929
|
||||
2024-07-22 17:40:44,9.939917,-84.104929
|
||||
2024-07-22 17:40:46,9.939917,-84.104929
|
||||
2024-07-22 17:40:49,9.939917,-84.104929
|
||||
2024-07-22 17:40:51,9.939917,-84.104929
|
||||
2024-07-22 17:40:54,9.939917,-84.104929
|
||||
2024-07-22 17:40:56,9.939917,-84.104929
|
||||
2024-07-22 17:40:59,9.939917,-84.104929
|
||||
2024-07-22 17:41:01,9.939917,-84.104929
|
||||
2024-07-22 17:41:04,9.939917,-84.104929
|
||||
2024-07-22 17:41:06,9.939917,-84.104929
|
||||
2024-07-22 17:41:09,9.939917,-84.104929
|
||||
2024-07-22 17:41:11,9.939917,-84.104929
|
||||
2024-07-22 17:41:14,9.939917,-84.104929
|
||||
2024-07-22 17:41:16,9.939917,-84.104929
|
||||
2024-07-22 17:41:19,9.939917,-84.104929
|
||||
2024-07-22 17:41:21,9.939917,-84.104929
|
||||
2024-07-22 17:41:24,9.939917,-84.104929
|
||||
2024-07-22 17:41:26,9.939917,-84.104929
|
||||
2024-07-22 17:41:29,9.939917,-84.104929
|
||||
2024-07-22 17:41:31,9.939917,-84.104929
|
||||
2024-07-22 17:41:34,9.939917,-84.104929
|
||||
2024-07-22 17:41:36,9.939917,-84.104929
|
||||
2024-07-22 17:41:39,9.939917,-84.104929
|
||||
2024-07-22 17:41:41,9.939917,-84.104929
|
||||
2024-07-22 17:41:44,9.939918,-84.104929
|
||||
2024-07-22 17:41:46,9.939918,-84.104929
|
||||
2024-07-22 17:41:49,9.939918,-84.104929
|
||||
2024-07-22 17:41:52,9.939918,-84.104929
|
||||
2024-07-22 17:41:54,9.939918,-84.104929
|
||||
2024-07-22 17:41:57,9.939918,-84.104929
|
||||
2024-07-22 17:41:59,9.939918,-84.104929
|
||||
2024-07-22 17:42:02,9.939918,-84.104929
|
||||
2024-07-22 17:42:04,9.939918,-84.104929
|
||||
2024-07-22 17:42:07,9.939918,-84.104929
|
||||
2024-07-22 17:42:09,9.939918,-84.104929
|
||||
2024-07-22 17:42:12,9.939918,-84.104929
|
||||
2024-07-22 17:42:14,9.939918,-84.104929
|
||||
2024-07-22 17:42:17,9.939918,-84.104929
|
||||
2024-07-22 17:42:19,9.939918,-84.104929
|
||||
2024-07-22 17:42:22,9.939918,-84.104929
|
||||
2024-07-22 17:42:24,9.939918,-84.104929
|
||||
2024-07-22 17:42:27,9.939918,-84.104929
|
||||
2024-07-22 17:42:29,9.939918,-84.104929
|
||||
2024-07-22 17:42:32,9.939918,-84.104930
|
||||
2024-07-22 17:42:34,9.939918,-84.104930
|
||||
2024-07-22 17:42:37,9.939918,-84.104930
|
||||
2024-07-22 17:42:39,9.939918,-84.104930
|
||||
2024-07-22 17:42:42,9.939918,-84.104930
|
||||
2024-07-22 17:42:44,9.939918,-84.104930
|
||||
2024-07-22 17:42:47,9.939918,-84.104930
|
||||
2024-07-22 17:42:49,9.939918,-84.104930
|
||||
2024-07-22 17:42:52,9.939918,-84.104930
|
||||
2024-07-22 17:42:54,9.939918,-84.104930
|
||||
2024-07-22 17:42:57,9.939918,-84.104930
|
||||
2024-07-22 17:42:59,9.939918,-84.104930
|
||||
2024-07-22 17:43:02,9.939918,-84.104930
|
||||
2024-07-22 17:43:04,9.939918,-84.104930
|
||||
2024-07-22 17:43:07,9.939918,-84.104930
|
||||
2024-07-22 17:43:09,9.939918,-84.104930
|
||||
2024-07-22 17:43:12,9.939918,-84.104930
|
||||
2024-07-22 17:43:14,9.939918,-84.104930
|
||||
2024-07-22 17:43:17,9.939918,-84.104930
|
||||
2024-07-22 17:43:19,9.939918,-84.104930
|
||||
2024-07-22 17:43:22,9.939918,-84.104930
|
||||
2024-07-22 17:43:25,9.939918,-84.104930
|
||||
2024-07-22 17:43:27,9.939918,-84.104930
|
||||
2024-07-22 17:43:30,9.939918,-84.104930
|
||||
2024-07-22 17:43:32,9.939918,-84.104930
|
||||
2024-07-22 17:43:35,9.939918,-84.104930
|
||||
2024-07-22 17:43:37,9.939918,-84.104930
|
||||
2024-07-22 17:43:40,9.939918,-84.104930
|
||||
2024-07-22 17:43:42,9.939918,-84.104930
|
||||
2024-07-22 17:43:45,9.939918,-84.104930
|
||||
2024-07-22 17:43:47,9.939918,-84.104930
|
||||
2024-07-22 17:43:50,9.939918,-84.104930
|
||||
2024-07-22 17:43:52,9.939918,-84.104930
|
||||
2024-07-22 17:43:55,9.939918,-84.104930
|
||||
2024-07-22 17:43:57,9.939918,-84.104930
|
||||
2024-07-22 17:44:00,9.939918,-84.104930
|
||||
2024-07-22 17:44:02,9.939918,-84.104930
|
||||
2024-07-22 17:44:05,9.939918,-84.104930
|
||||
2024-07-22 17:44:07,9.939918,-84.104930
|
||||
2024-07-22 17:44:10,9.939918,-84.104930
|
||||
2024-07-22 17:44:12,9.939918,-84.104930
|
||||
2024-07-22 17:44:15,9.939918,-84.104930
|
||||
2024-07-22 17:44:17,9.939918,-84.104930
|
||||
2024-07-22 17:44:20,9.939918,-84.104930
|
||||
2024-07-22 17:44:22,9.939918,-84.104930
|
||||
2024-07-22 17:44:25,9.939918,-84.104930
|
||||
2024-07-22 17:44:27,9.939918,-84.104930
|
||||
2024-07-22 17:44:30,9.939918,-84.104930
|
||||
2024-07-22 17:44:32,9.939918,-84.104930
|
||||
2024-07-22 17:44:35,9.939918,-84.104930
|
||||
2024-07-22 17:44:37,9.939918,-84.104930
|
||||
2024-07-22 17:44:40,9.939918,-84.104930
|
||||
2024-07-22 17:44:42,9.939918,-84.104930
|
||||
2024-07-22 17:44:45,9.939918,-84.104930
|
||||
2024-07-22 17:44:47,9.939918,-84.104930
|
||||
2024-07-22 17:44:50,9.939918,-84.104930
|
||||
2024-07-22 17:44:52,9.939918,-84.104930
|
||||
2024-07-22 17:44:55,9.939918,-84.104930
|
||||
2024-07-22 17:44:58,9.939918,-84.104930
|
||||
2024-07-22 17:45:00,9.939918,-84.104930
|
||||
2024-07-22 17:45:03,9.939918,-84.104930
|
||||
2024-07-22 17:45:05,9.939918,-84.104930
|
||||
2024-07-22 17:45:08,9.939918,-84.104930
|
||||
2024-07-22 17:45:10,9.939918,-84.104930
|
||||
2024-07-22 17:45:13,9.939918,-84.104930
|
||||
2024-07-22 17:45:15,9.939918,-84.104930
|
||||
2024-07-22 17:45:18,9.939918,-84.104930
|
||||
2024-07-22 17:45:20,9.939918,-84.104930
|
||||
2024-07-22 17:45:23,9.939918,-84.104930
|
||||
2024-07-22 17:45:25,9.939918,-84.104930
|
||||
2024-07-22 17:45:28,9.939918,-84.104930
|
||||
2024-07-22 17:45:30,9.939918,-84.104930
|
||||
2024-07-22 17:45:33,9.939918,-84.104930
|
||||
2024-07-22 17:45:35,9.939918,-84.104930
|
||||
2024-07-22 17:45:38,9.939918,-84.104930
|
||||
2024-07-22 17:45:40,9.939918,-84.104930
|
||||
2024-07-22 17:45:43,9.939918,-84.104930
|
||||
2024-07-22 17:45:45,9.939918,-84.104930
|
||||
2024-07-22 17:45:48,9.939918,-84.104930
|
||||
2024-07-22 17:45:50,9.939918,-84.104930
|
||||
2024-07-22 17:45:53,9.939918,-84.104930
|
||||
2024-07-22 17:45:55,9.939918,-84.104930
|
||||
2024-07-22 17:45:58,9.939918,-84.104930
|
||||
2024-07-22 17:46:00,9.939918,-84.104930
|
||||
2024-07-22 17:46:03,9.939918,-84.104930
|
||||
2024-07-22 17:46:05,9.939918,-84.104930
|
||||
2024-07-22 17:46:08,9.939918,-84.104930
|
||||
2024-07-22 17:46:10,9.939917,-84.104928
|
||||
2024-07-22 17:46:13,9.939897,-84.104917
|
||||
2024-07-22 17:46:15,9.939891,-84.104911
|
||||
2024-07-22 17:46:18,9.939888,-84.104920
|
||||
2024-07-22 17:46:20,9.939885,-84.104926
|
||||
2024-07-22 17:46:23,9.939879,-84.104930
|
||||
2024-07-22 17:46:25,9.939874,-84.104931
|
||||
2024-07-22 17:46:28,9.939872,-84.104932
|
||||
2024-07-22 17:46:31,9.939872,-84.104932
|
||||
2024-07-22 17:46:33,9.939869,-84.104931
|
||||
2024-07-22 17:46:36,9.939869,-84.104930
|
||||
2024-07-22 17:46:38,9.939869,-84.104930
|
||||
2024-07-22 17:46:41,9.939870,-84.104930
|
||||
2024-07-22 17:46:43,9.939869,-84.104930
|
||||
2024-07-22 17:46:46,9.939870,-84.104931
|
||||
2024-07-22 17:46:48,9.939871,-84.104931
|
||||
2024-07-22 17:46:51,9.939871,-84.104931
|
||||
2024-07-22 17:46:53,9.939871,-84.104931
|
||||
2024-07-22 17:46:56,9.939871,-84.104931
|
||||
2024-07-22 17:46:58,9.939871,-84.104931
|
||||
2024-07-22 17:47:01,9.939871,-84.104931
|
||||
2024-07-22 17:47:03,9.939871,-84.104931
|
||||
2024-07-22 17:47:06,9.939871,-84.104931
|
||||
2024-07-22 17:47:08,9.939871,-84.104931
|
||||
2024-07-22 17:47:11,9.939871,-84.104931
|
||||
2024-07-22 17:47:13,9.939871,-84.104931
|
||||
2024-07-22 17:47:16,9.939871,-84.104931
|
||||
2024-07-22 17:47:18,9.939871,-84.104931
|
||||
2024-07-22 17:47:21,9.939871,-84.104931
|
||||
2024-07-22 17:47:23,9.939871,-84.104931
|
||||
2024-07-22 17:47:26,9.939871,-84.104931
|
||||
2024-07-22 17:47:28,9.939871,-84.104931
|
||||
2024-07-22 17:47:31,9.939871,-84.104931
|
||||
2024-07-22 17:47:33,9.939871,-84.104931
|
||||
2024-07-22 17:47:36,9.939871,-84.104931
|
||||
2024-07-22 17:47:38,9.939871,-84.104931
|
||||
2024-07-22 17:47:41,9.939871,-84.104931
|
||||
2024-07-22 17:47:43,9.939871,-84.104931
|
||||
2024-07-22 17:47:46,9.939871,-84.104931
|
||||
2024-07-22 17:47:48,9.939872,-84.104931
|
||||
2024-07-22 17:47:51,9.939872,-84.104931
|
||||
2024-07-22 17:47:53,9.939872,-84.104931
|
||||
2024-07-22 17:47:56,9.939872,-84.104931
|
||||
2024-07-22 17:47:58,9.939872,-84.104931
|
||||
2024-07-22 17:48:01,9.939872,-84.104931
|
||||
2024-07-22 17:48:04,9.939872,-84.104931
|
||||
2024-07-22 17:48:06,9.939872,-84.104931
|
||||
2024-07-22 17:48:09,9.939872,-84.104931
|
||||
2024-07-22 17:48:11,9.939872,-84.104931
|
||||
2024-07-22 17:48:14,9.939872,-84.104931
|
||||
2024-07-22 17:48:16,9.939872,-84.104931
|
||||
2024-07-22 17:48:19,9.939873,-84.104931
|
||||
2024-07-22 17:48:21,9.939873,-84.104931
|
||||
2024-07-22 17:48:24,9.939873,-84.104931
|
||||
2024-07-22 17:48:26,9.939873,-84.104931
|
||||
2024-07-22 17:48:29,9.939873,-84.104931
|
||||
2024-07-22 17:48:31,9.939873,-84.104931
|
||||
2024-07-22 17:48:34,9.939873,-84.104931
|
||||
2024-07-22 17:48:36,9.939873,-84.104931
|
||||
2024-07-22 17:48:39,9.939873,-84.104931
|
||||
2024-07-22 17:48:41,9.939873,-84.104931
|
||||
2024-07-22 17:48:44,9.939873,-84.104931
|
||||
2024-07-22 17:48:46,9.939873,-84.104931
|
||||
2024-07-22 17:48:49,9.939873,-84.104932
|
||||
2024-07-22 17:48:51,9.939873,-84.104932
|
||||
2024-07-22 17:48:54,9.939873,-84.104932
|
||||
2024-07-22 17:48:56,9.939874,-84.104932
|
||||
2024-07-22 17:48:59,9.939874,-84.104932
|
||||
2024-07-22 17:49:01,9.939874,-84.104932
|
||||
2024-07-22 17:49:04,9.939874,-84.104932
|
||||
2024-07-22 17:49:06,9.939874,-84.104932
|
||||
2024-07-22 17:49:09,9.939875,-84.104933
|
||||
2024-07-22 17:49:11,9.939875,-84.104933
|
||||
2024-07-22 17:49:14,9.939875,-84.104933
|
||||
2024-07-22 17:49:16,9.939875,-84.104933
|
||||
2024-07-22 17:49:19,9.939874,-84.104933
|
||||
2024-07-22 17:49:21,9.939874,-84.104933
|
||||
2024-07-22 17:49:24,9.939874,-84.104933
|
||||
2024-07-22 17:49:26,9.939874,-84.104933
|
||||
2024-07-22 17:49:29,9.939874,-84.104933
|
||||
2024-07-22 17:49:31,9.939874,-84.104933
|
||||
2024-07-22 17:49:34,9.939874,-84.104933
|
||||
2024-07-22 17:49:37,9.939874,-84.104933
|
||||
2024-07-22 17:49:39,9.939874,-84.104933
|
||||
2024-07-22 17:49:42,9.939874,-84.104933
|
||||
2024-07-22 17:49:44,9.939874,-84.104932
|
||||
2024-07-22 17:49:47,9.939874,-84.104932
|
||||
2024-07-22 17:49:49,9.939874,-84.104932
|
||||
2024-07-22 17:49:52,9.939874,-84.104932
|
||||
2024-07-22 17:49:54,9.939874,-84.104932
|
||||
2024-07-22 17:49:57,9.939874,-84.104932
|
||||
2024-07-22 17:49:59,9.939874,-84.104932
|
||||
2024-07-22 17:50:02,9.939874,-84.104932
|
||||
2024-07-22 17:50:04,9.939874,-84.104932
|
||||
2024-07-22 17:50:07,9.939875,-84.104933
|
||||
2024-07-22 17:50:09,9.939875,-84.104933
|
||||
2024-07-22 17:50:12,9.939875,-84.104933
|
||||
2024-07-22 17:50:14,9.939875,-84.104933
|
||||
2024-07-22 17:50:17,9.939875,-84.104933
|
||||
2024-07-22 17:50:19,9.939875,-84.104933
|
||||
2024-07-22 17:50:22,9.939875,-84.104933
|
||||
2024-07-22 17:50:24,9.939875,-84.104933
|
||||
2024-07-22 17:50:27,9.939875,-84.104933
|
||||
2024-07-22 17:50:29,9.939875,-84.104933
|
||||
2024-07-22 17:50:32,9.939875,-84.104933
|
||||
2024-07-22 17:50:34,9.939875,-84.104933
|
||||
2024-07-22 17:50:37,9.939875,-84.104933
|
||||
2024-07-22 17:50:39,9.939875,-84.104933
|
||||
2024-07-22 17:50:42,9.939875,-84.104933
|
||||
2024-07-22 17:50:44,9.939875,-84.104933
|
||||
2024-07-22 17:50:47,9.939875,-84.104933
|
||||
2024-07-22 17:50:49,9.939875,-84.104933
|
||||
2024-07-22 17:50:52,9.939875,-84.104933
|
||||
2024-07-22 17:50:54,9.939875,-84.104933
|
||||
2024-07-22 17:50:57,9.939875,-84.104933
|
||||
2024-07-22 17:50:59,9.939875,-84.104933
|
||||
2024-07-22 17:51:02,9.939875,-84.104933
|
||||
2024-07-22 17:51:05,9.939875,-84.104933
|
||||
2024-07-22 17:54:32,9.939884,-84.105016
|
||||
2024-07-22 17:54:34,9.939884,-84.105016
|
||||
2024-07-22 17:54:37,9.939884,-84.105015
|
||||
2024-07-22 17:54:39,9.939884,-84.105016
|
||||
2024-07-22 17:54:44,9.939884,-84.105016
|
||||
2024-07-22 17:54:47,9.939884,-84.105016
|
||||
2024-07-22 17:55:12,9.939884,-84.105016
|
||||
2024-07-22 17:55:14,9.939884,-84.105016
|
||||
2024-07-22 17:55:17,9.939884,-84.105016
|
||||
2024-07-22 17:55:19,9.939884,-84.105016
|
||||
2024-07-22 17:55:22,9.939884,-84.105016
|
||||
2024-07-22 17:55:24,9.939884,-84.105016
|
||||
2024-07-22 17:55:27,9.939884,-84.105017
|
||||
2024-07-22 17:55:29,9.939884,-84.105017
|
||||
2024-07-22 17:55:32,9.939884,-84.105017
|
||||
2024-07-22 17:55:34,9.939884,-84.105017
|
||||
2024-07-22 17:55:37,9.939884,-84.105016
|
||||
2024-07-22 17:55:40,9.939884,-84.105016
|
||||
2024-07-22 17:55:42,9.939884,-84.105017
|
||||
2024-07-22 17:55:45,9.939884,-84.105017
|
||||
2024-07-22 17:55:52,9.939884,-84.105016
|
||||
2024-07-22 17:55:54,9.939884,-84.105016
|
||||
2024-07-22 17:55:57,9.939884,-84.105016
|
||||
2024-07-22 17:55:59,9.939884,-84.105016
|
||||
2024-07-22 17:56:02,9.939884,-84.105016
|
||||
2024-07-22 17:56:04,9.939884,-84.105016
|
||||
2024-07-22 17:56:07,9.939884,-84.105016
|
||||
2024-07-22 17:56:09,9.939884,-84.105017
|
||||
2024-07-22 17:56:12,9.939884,-84.105017
|
||||
2024-07-22 17:56:14,9.939884,-84.105017
|
||||
2024-07-22 17:56:17,9.939884,-84.105016
|
||||
2024-07-22 17:56:19,9.939884,-84.105016
|
||||
2024-07-22 17:56:22,9.939884,-84.105017
|
||||
2024-07-22 17:56:24,9.939884,-84.105017
|
||||
2024-07-22 17:56:27,9.939884,-84.105018
|
||||
2024-07-22 17:56:29,9.939884,-84.105018
|
||||
2024-07-22 17:56:32,9.939884,-84.105018
|
||||
2024-07-22 17:56:34,9.939884,-84.105018
|
||||
2024-07-22 17:56:37,9.939884,-84.105019
|
||||
2024-07-22 17:56:39,9.939885,-84.105018
|
||||
2024-07-22 17:56:42,9.939885,-84.105018
|
||||
2024-07-22 17:56:44,9.939885,-84.105018
|
||||
2024-07-22 17:56:47,9.939885,-84.105019
|
||||
2024-07-22 17:56:49,9.939885,-84.105019
|
||||
2024-07-22 17:56:52,9.939885,-84.105019
|
||||
2024-07-22 17:56:54,9.939885,-84.105019
|
||||
2024-07-22 17:56:57,9.939886,-84.105018
|
||||
2024-07-22 17:56:59,9.939886,-84.105018
|
||||
2024-07-22 17:57:02,9.939886,-84.105018
|
||||
2024-07-22 17:57:04,9.939886,-84.105018
|
||||
2024-07-22 17:57:07,9.939886,-84.105018
|
||||
2024-07-22 17:57:09,9.939886,-84.105018
|
||||
2024-07-22 17:57:12,9.939886,-84.105019
|
||||
2024-07-22 17:57:14,9.939886,-84.105019
|
||||
2024-07-22 17:57:18,9.939886,-84.105019
|
||||
2024-07-22 17:57:21,9.939886,-84.105019
|
||||
2024-07-22 17:57:23,9.939886,-84.105019
|
||||
2024-07-22 17:57:32,9.939886,-84.105024
|
||||
2024-07-22 17:57:34,9.939885,-84.105025
|
||||
2024-07-22 17:57:37,9.939884,-84.105026
|
||||
2024-07-22 17:57:39,9.939884,-84.105027
|
||||
2024-07-22 17:57:46,9.939884,-84.105028
|
||||
2024-07-22 17:57:50,9.939885,-84.105028
|
||||
2024-07-22 17:57:52,9.939884,-84.105028
|
||||
2024-07-22 17:58:15,9.939884,-84.105029
|
||||
2024-07-22 17:58:17,9.939884,-84.105030
|
||||
2024-07-22 17:58:20,9.939883,-84.105031
|
||||
2024-07-22 17:58:23,9.939883,-84.105031
|
||||
2024-07-22 17:58:25,9.939883,-84.105032
|
||||
2024-07-22 17:58:28,9.939883,-84.105032
|
||||
2024-07-22 17:58:30,9.939883,-84.105033
|
||||
2024-07-22 17:58:33,9.939883,-84.105033
|
||||
2024-07-22 17:58:37,9.939882,-84.105034
|
||||
2024-07-22 17:58:39,9.939882,-84.105035
|
||||
2024-07-22 17:58:45,9.939882,-84.105036
|
||||
2024-07-22 17:58:48,9.939882,-84.105036
|
||||
2024-07-22 17:58:50,9.939882,-84.105036
|
||||
2024-07-22 17:58:53,9.939882,-84.105036
|
||||
2024-07-22 17:58:55,9.939882,-84.105036
|
||||
2024-07-22 17:58:58,9.939881,-84.105037
|
||||
2024-07-22 17:59:01,9.939881,-84.105036
|
||||
2024-07-22 17:59:03,9.939882,-84.105036
|
||||
2024-07-22 17:59:06,9.939882,-84.105036
|
||||
2024-07-22 17:59:08,9.939882,-84.105036
|
||||
2024-07-22 17:59:11,9.939888,-84.105026
|
||||
2024-07-22 17:59:13,9.939897,-84.105009
|
||||
2024-07-22 17:59:16,9.939901,-84.105003
|
||||
2024-07-22 17:59:18,9.939901,-84.105003
|
||||
2024-07-22 17:59:21,9.939900,-84.105005
|
||||
2024-07-22 17:59:23,9.939899,-84.105006
|
||||
2024-07-22 17:59:26,9.939899,-84.105007
|
||||
2024-07-22 17:59:28,9.939899,-84.105007
|
||||
2024-07-22 17:59:31,9.939899,-84.105007
|
||||
2024-07-22 17:59:33,9.939899,-84.105006
|
||||
2024-07-22 17:59:36,9.939900,-84.105006
|
||||
2024-07-22 17:59:38,9.939900,-84.105006
|
||||
2024-07-22 17:59:41,9.939900,-84.105006
|
||||
2024-07-22 17:59:43,9.939900,-84.105006
|
||||
2024-07-22 17:59:46,9.939901,-84.105005
|
||||
2024-07-22 17:59:48,9.939901,-84.105004
|
||||
2024-07-22 17:59:51,9.939902,-84.105004
|
||||
2024-07-22 17:59:53,9.939902,-84.105004
|
||||
2024-07-22 17:59:56,9.939902,-84.105004
|
||||
2024-07-22 17:59:58,9.939902,-84.105004
|
||||
2024-07-22 18:00:01,9.939902,-84.105004
|
||||
2024-07-22 18:00:03,9.939902,-84.105004
|
||||
2024-07-22 18:00:06,9.939903,-84.105004
|
||||
2024-07-22 18:00:08,9.939903,-84.105004
|
||||
2024-07-22 18:00:11,9.939903,-84.105004
|
||||
2024-07-22 18:00:13,9.939903,-84.105004
|
||||
2024-07-22 18:00:16,9.939903,-84.105004
|
||||
2024-07-22 18:00:18,9.939903,-84.105004
|
||||
2024-07-22 18:00:21,9.939903,-84.105005
|
||||
2024-07-22 18:00:23,9.939903,-84.105005
|
||||
2024-07-22 18:00:26,9.939903,-84.105005
|
||||
2024-07-22 18:00:28,9.939903,-84.105005
|
||||
2024-07-22 18:00:31,9.939903,-84.105005
|
||||
2024-07-22 18:00:34,9.939903,-84.105006
|
||||
2024-07-22 18:00:37,9.939904,-84.105006
|
||||
2024-07-22 18:00:39,9.939904,-84.105006
|
||||
|