Added MQTT support
This commit is contained in:
@@ -59,3 +59,11 @@ First official release with LoRa support.
|
||||
|
||||
### Added
|
||||
- Web page for switchin on and of 5GHz links over LoRa
|
||||
|
||||
## [2.0.0] - 2023-12-08
|
||||
|
||||
### Fixed
|
||||
- APRS telemetry bug in process_aprs_messages.sh: first character of message was not saved.
|
||||
|
||||
### Added
|
||||
- MQTT support added (APRS MQTT bridge)
|
||||
|
@@ -14,6 +14,7 @@ It can:
|
||||
* Send and receive APRS messages
|
||||
* Display some basic statistics like heard stations.
|
||||
* Process and display data from the custom telemetry devices from PE1RXF
|
||||
* Forwards PE1RXF telemtry from APRS to MQTT and vice versa
|
||||
|
||||
In has (hardware):
|
||||
|
||||
@@ -32,6 +33,11 @@ It has (software):
|
||||
* LoRa KISS TNC support (repository found at https://git.meezenest.nl/marcel/RPi-LoRa-KISS-TNC)
|
||||
* Custom software (from this repository) for extra functionality
|
||||
|
||||
|
||||
## MQTT support
|
||||
|
||||
The programs "aprs_telemetry_to_mqtt" and "aprs-mqtt-bridge" are included, but are published separately in my git repo. The ones included work with this version. The ones published separately might or might not work.
|
||||
|
||||
## Changelog
|
||||
|
||||
Can be found [here](CHANGELOG.md)
|
||||
|
1
aprs_utils/aprs-mqtt-bridge
Submodule
1
aprs_utils/aprs-mqtt-bridge
Submodule
Submodule aprs_utils/aprs-mqtt-bridge added at 1ae761d989
16
aprs_utils/aprs-mqtt-bridge_old/CHANGELOG.md
Normal file
16
aprs_utils/aprs-mqtt-bridge_old/CHANGELOG.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
Added : for new features.
|
||||
Changed : for changes in existing functionality.
|
||||
Deprecated: for soon-to-be removed features.
|
||||
Removed : for now removed features.
|
||||
Fixed : for any bug fixes.
|
||||
Security : in case of vulnerabilities.
|
||||
|
||||
## [1.0.0] - 2023-01-13
|
||||
First working version.
|
||||
|
||||
## [1.0.1] - 2023-01-14
|
||||
Changed: aprs_status (published on the MQTT broker) now returns actual state of transmision (sending, retrying, send or failed) instead if just 'ready' and 'busy'.
|
67
aprs_utils/aprs-mqtt-bridge_old/README.md
Normal file
67
aprs_utils/aprs-mqtt-bridge_old/README.md
Normal file
@@ -0,0 +1,67 @@
|
||||
# APRS to MQTT bridge
|
||||
|
||||
The APRS to MQTT bridge can relay commands from an MQTT broker to the APRS nodes via the Linux AX.25 stack. For now, only commands which response with a defined acknowledge (commands 10 and higher) are supported.
|
||||
|
||||
This program is a utility for the APRS telemetry system used by PE1RXF. The telemetry is embedded in an APRS message which can travel over the existing APRS network. For more information about this open protocol visit this link: https://www.meezenest.nl/mees-elektronica/projects/aprs_telemetry/APRS_protocol_nodes_PE1RXF.pdf
|
||||
|
||||
## Configuration
|
||||
|
||||
The program is configured via a YAML file. The global section defines the MQTT broker and some APRS transmit settings. The topics define the MQTT topics on which a client can publish a request. The full path of the topic is 'topic_root/topic_name'. Call, server and port define the AX.25 settings where 'call' is the call of the APRS node the message is send to, 'server' is the call of the APRS server which sends the message (typically this is the call assigned to the ax25 port) and 'port' is the Linux AX.25 port on which the radio is connected.
|
||||
|
||||
Lets say we have an APRS node which can switch several power rails. (https://www.meezenest.nl/mees-elektronica/RPi-pico-LoRa-APRS.html). We connected a 5GHz HamNet dish to output 2 of this APRS node. The node is assigned the call 'PE1RXF-6'. Assume this node can be reached via the radio connected to AX.25 port ax2 on our server. The node switches the output to high when it receives command '33{33'. We want the bridge to send this command when it receives payload 'ON' via MQTT on topic 'hamnet_aprs_nodes/ubiquity_dish_ptmp_workshop'. With the below example configuration, we can achieve just that. And by sending MQTT payload 'OFF', the APRS node switches the ouptut off again.
|
||||
|
||||
Multiple topics for the same or another APRS node can be defined as shown in the example.
|
||||
|
||||
```
|
||||
# Global settings apply to all other entries
|
||||
global:
|
||||
broker: pe1rxf.ampr.org # The MQTT broker we are going to use
|
||||
port: 1883 # The tcp port of the MQTT broker
|
||||
topic_root: hamnet_aprs_nodes # MQTT topic root
|
||||
transmit_rate: 20 # Number of seconds between each transmision
|
||||
retry: 3 # Try this often before giving up
|
||||
destination: APRX29 # Destination or program ID
|
||||
digi_path: WIDE2-1 # Digi path of APRS messages
|
||||
#beacon_program: /usr/sbin/beacon # The external AX.25 beacon program => obsolete
|
||||
|
||||
|
||||
topics:
|
||||
# MQTT topic: 5GHz dish at workshop (must be unique name)
|
||||
- name: ubiquity_dish_ptmp_workshop
|
||||
call: PE1RXF-6 # Call of node to which commands below are send
|
||||
server: PE1RXF-3 # Call of APRS server sending the commands
|
||||
port: ax2 # Name of AX.25 port to use
|
||||
command:
|
||||
- payload: 'ON' # This is the payload we have to receive
|
||||
cmd: 33{33 # This command is send to the node
|
||||
response: ack33 # This response is expected from the node
|
||||
- payload: 'OFF'
|
||||
cmd: 32{32
|
||||
response: ack32
|
||||
|
||||
# Server at tiny house
|
||||
- name: server_tiny_house
|
||||
call: PE1RXF-7
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 31{31
|
||||
response: ack31
|
||||
- payload: 'OFF'
|
||||
cmd: 30{30
|
||||
response: ack30
|
||||
```
|
||||
The configuration entry 'global:retry' sets the amount of APRS message retries we attempt before giving up. The configuration entry 'global:transmit_rate' sets the time between retries.
|
||||
|
||||
For now, the state of the outputs of the APRS nodes is not published to the MQTT broker. In the future, this could be implemented in the software. It is possible to poll the nodes via command '06' to get the current state of the outputs.
|
||||
|
||||
## Requirements
|
||||
|
||||
- Python3
|
||||
- Python AX.25 Module for Python3 (https://github.com/ha5di/pyax25)
|
||||
- pathlib
|
||||
- yaml
|
||||
- paho-mqtt
|
||||
- Linux AX.25 stack
|
||||
|
392
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py
Executable file
392
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py
Executable file
@@ -0,0 +1,392 @@
|
||||
#!/usr/bin/python3
|
||||
"""
|
||||
A bridge between APRS messaging and MQTT, designed to control my lora_aprs_node_pico
|
||||
|
||||
(C)2022 M.T. Konstapel https://meezenest.nl/mees
|
||||
|
||||
This file is part of aprs-mqtt-bridge.
|
||||
|
||||
aprs-mqtt-bridge is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
aprs-mqtt-bridge is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with aprs-mqtt-bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import sys
|
||||
import random
|
||||
import time
|
||||
import os
|
||||
from pathlib import Path
|
||||
import yaml
|
||||
from yaml.loader import SafeLoader
|
||||
from paho.mqtt import client as mqtt_client
|
||||
import pythonax25
|
||||
|
||||
configuration_file = "aprs-mqtt-bridge.yml"
|
||||
|
||||
# This is where we keep our settings
|
||||
class mqtt_settings:
|
||||
#broker
|
||||
#topic_root
|
||||
#port
|
||||
#client_id
|
||||
#transmit_rate
|
||||
#retry
|
||||
#topics
|
||||
state = 'ready'
|
||||
aprs_state = 'idle'
|
||||
pass
|
||||
mqtt = mqtt_settings()
|
||||
|
||||
axport = []
|
||||
axdevice = []
|
||||
axaddress = []
|
||||
class aprs_status:
|
||||
nr_of_ports = 0
|
||||
busy = 0
|
||||
wait_for_ack = 0
|
||||
call_of_wait_for_ack = 0
|
||||
time_out_timer = 0
|
||||
retry_counter = 0
|
||||
selected_port = 0
|
||||
request_to_send = 0
|
||||
pass
|
||||
aprs = aprs_status()
|
||||
|
||||
def parsePacket(string):
|
||||
# Split the address and payload separated by APRS PID
|
||||
buffer = string.split(b'\x03\xf0')
|
||||
address = buffer[0]
|
||||
|
||||
# Check if the first byte indicates it is a data packet
|
||||
if address[0] == 0:
|
||||
# Cut the first byte and feed it to the address parser
|
||||
listAddress = getAllAddress(address[1:])
|
||||
|
||||
if listAddress != 0:
|
||||
# Get the source, destination, and digipeaters from the address list
|
||||
source = listAddress[1]
|
||||
destination = listAddress[0]
|
||||
digipeaters = listAddress[2:]
|
||||
payload = buffer[1]
|
||||
else:
|
||||
# If there was an error decoding the address we return save values which will be ignored by the rest of the program
|
||||
source = 'NOCALL'
|
||||
destination = 'NOCALL'
|
||||
digipeaters = 'NOCALL'
|
||||
payload = 'NOT VALID'
|
||||
else:
|
||||
# If there was an error decoding the address we return save values which will be ignored by the rest of the program
|
||||
source = 'NOCALL'
|
||||
destination = 'NOCALL'
|
||||
digipeaters = 'NOCALL'
|
||||
payload = 'NOT VALID'
|
||||
#raise Exception('Not a data packet')
|
||||
|
||||
return (source, destination, digipeaters, payload)
|
||||
|
||||
def getAllAddress(packetAddress):
|
||||
addressSize = 7
|
||||
# Check if the networked address string is valid
|
||||
if (len(packetAddress) % 7) == 0:
|
||||
# Create a list of all address in ASCII form
|
||||
try:
|
||||
allAddress = [pythonax25.network_to_ascii(packetAddress[i:i+addressSize])
|
||||
for i in range(0, len(packetAddress), addressSize)]
|
||||
except:
|
||||
allAddress = 0
|
||||
|
||||
return allAddress
|
||||
else:
|
||||
# Received a non valid address. Fill return value with NULL so we don't crash
|
||||
allAddress = 0
|
||||
return allAddress
|
||||
#raise Exception('Error: Address is not a multiple of 7')
|
||||
|
||||
def bind_ax25():
|
||||
# Check if there's any active AX25 port
|
||||
current_port = 0;
|
||||
port_nr = pythonax25.config_load_ports()
|
||||
aprs.nr_of_ports = port_nr
|
||||
if port_nr > 0:
|
||||
# Get the device name of the first port
|
||||
axport.append(pythonax25.config_get_first_port())
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
while port_nr - current_port > 0:
|
||||
axport.append(pythonax25.config_get_next_port(axport[current_port-1]))
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
# Initiate a PF_PACKET socket (RX)
|
||||
rx_socket = pythonax25.packet_socket()
|
||||
|
||||
return rx_socket
|
||||
|
||||
def receive_ax25(rx_socket):
|
||||
# Blocking receive packet, 10 ms timeout
|
||||
receive = pythonax25.packet_rx(rx_socket,10)
|
||||
return receive
|
||||
|
||||
def send_ax25(portCall, srcCall, dest, digi, msg):
|
||||
# Initiate a datagram socket (TX)
|
||||
tx_socket = pythonax25.datagram_socket()
|
||||
res = pythonax25.datagram_bind(tx_socket, srcCall, portCall)
|
||||
#print(res)
|
||||
|
||||
if digi == 0:
|
||||
res = pythonax25.datagram_tx(tx_socket, dest, msg)
|
||||
else:
|
||||
res = pythonax25.datagram_tx_digi(tx_socket, dest, digi, msg)
|
||||
#print(res)
|
||||
pythonax25.close_socket(tx_socket)
|
||||
|
||||
def connect_mqtt():
|
||||
def on_connect(client, userdata, flags, rc):
|
||||
if rc == 0:
|
||||
print("Connected to MQTT Broker!")
|
||||
else:
|
||||
print("Failed to connect, return code %d\n", rc)
|
||||
# Set Connecting Client ID
|
||||
client = mqtt_client.Client(mqtt.client_id)
|
||||
#client.username_pw_set(username, password)
|
||||
client.on_connect = on_connect
|
||||
client.connect(mqtt.broker, mqtt.port)
|
||||
return client
|
||||
|
||||
def publish(client, topic, message):
|
||||
result = client.publish(topic, message)
|
||||
status = result[0]
|
||||
if status == 0:
|
||||
print(f"Send `{message}` to topic `{topic}`")
|
||||
else:
|
||||
print(f"Failed to send message to topic {topic}")
|
||||
|
||||
def subscribe(client: mqtt_client, topic):
|
||||
def on_message(client, userdata, message):
|
||||
received_payload = message.payload.decode()
|
||||
received_topic = Path(message.topic).name
|
||||
print(f"Received `{received_payload}` from `{message.topic}` topic")
|
||||
# Find corresponding topic in configuration-file and send this to the next function
|
||||
for topics in mqtt.topics:
|
||||
if received_topic == topics['name']:
|
||||
#print ('Found topic in list!')
|
||||
#print (topics)
|
||||
process_message(topics, received_payload)
|
||||
break
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
|
||||
client.subscribe(topic)
|
||||
client.on_message = on_message
|
||||
|
||||
def read_config():
|
||||
try:
|
||||
with open(configuration_file) as f:
|
||||
cfg = yaml.load(f, Loader=SafeLoader)
|
||||
|
||||
mqtt.topics = cfg['topics']
|
||||
#print(mqtt.topics)
|
||||
#for topic in mqtt.topics:
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
except:
|
||||
print ("Configuration file ./" + configuration_file + " not found.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.broker = cfg['global']['broker']
|
||||
except:
|
||||
print ("Error in configuration file: no broker defined.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.port = cfg['global']['port']
|
||||
except:
|
||||
print ("Error in configuration file: no port defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.topic_root = cfg['global']['topic_root']
|
||||
except:
|
||||
print ("Error in configuration file: no topic defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.transmit_rate = cfg['global']['transmit_rate']
|
||||
except:
|
||||
print ("Error in configuration file: no transmit_rate defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.retry = cfg['global']['retry']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.destination = cfg['global']['destination']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
|
||||
mqtt.client_id = f'{mqtt.topic_root}-{random.randint(0, 1000)}'
|
||||
|
||||
print (mqtt.broker)
|
||||
print (mqtt.topic_root)
|
||||
print (mqtt.port)
|
||||
print (mqtt.client_id)
|
||||
|
||||
# Loop through all topics and activate them
|
||||
def add_subscribtions_from_configfile(client):
|
||||
for topics in mqtt.topics:
|
||||
current_topic = mqtt.topic_root + '/' + topics['name']
|
||||
subscribe(client,current_topic)
|
||||
print('Topic ' + topics['name'] + ' added')
|
||||
|
||||
def process_message(data, payload):
|
||||
#print ('Payload: '+ payload)
|
||||
#print (data['call'])
|
||||
#print (data['port'])
|
||||
|
||||
if aprs.busy == 0:
|
||||
# find payload in configuration file
|
||||
for commands in data['command']:
|
||||
if payload == commands['payload']:
|
||||
aprs.time_out_timer = time.time() # Start timeout timer
|
||||
aprs.busy = 1
|
||||
aprs.selected_port = data['port']
|
||||
|
||||
# Find call of ax25 port
|
||||
for position in range(len(axdevice)):
|
||||
if axdevice[position] == aprs.selected_port:
|
||||
aprs.port_call = axaddress[position]
|
||||
|
||||
aprs.source_call = data['server']
|
||||
aprs.wait_for_ack = commands['response']
|
||||
aprs.call_of_wait_for_ack = data['call']
|
||||
aprs.message = ':' + data['call'].ljust(9) + ':' + commands['cmd']
|
||||
arguments = '-d \"APRX29\" -s ' + data['port'] + ' \"' + aprs.message + '\"'
|
||||
beacon_program = "/usr/sbin/beacon"
|
||||
aprs.beacon_program_with_arguments = beacon_program + " " + arguments
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('APRS message ' + aprs.message + ' send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
mqtt.state = 'busy'
|
||||
mqtt.aprs_state = 'sending message'
|
||||
aprs.request_to_send = 1;
|
||||
else:
|
||||
mqtt.state = 'busy'
|
||||
|
||||
def run():
|
||||
read_config()
|
||||
|
||||
rx_socket = bind_ax25()
|
||||
|
||||
client = connect_mqtt()
|
||||
|
||||
add_subscribtions_from_configfile(client)
|
||||
#topic = mqtt.topic_root + '/set'
|
||||
#subscribe(client,topic)
|
||||
client.loop_start()
|
||||
|
||||
# Send ready to MQTT broker to indicate we are meaning business
|
||||
mqtt.aprs_state = 'ready'
|
||||
#topic = mqtt.topic_root + '/aprs_status'
|
||||
#publish(client,topic,'ready')
|
||||
mqtt.state = 'busy'
|
||||
|
||||
aprs.time_out_timer = time.time()
|
||||
while True:
|
||||
|
||||
if aprs.request_to_send == 1:
|
||||
send_ax25(aprs.port_call, aprs.source_call, mqtt.destination, 0, aprs.message)
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
#print(aprs.selected_port)
|
||||
#print(aprs.message)
|
||||
aprs.request_to_send = 0
|
||||
|
||||
receive = receive_ax25(rx_socket)
|
||||
for port in range(len(axdevice)):
|
||||
if receive[0][1] == axdevice[port]:
|
||||
#print(receive)
|
||||
source, destination, digipeaters, payload = parsePacket(receive[1])
|
||||
# bug UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf8 in position 47: invalid start byte
|
||||
try:
|
||||
payload = payload.decode()
|
||||
except:
|
||||
payload = 'NOT VALID'
|
||||
|
||||
#print("Packet Received by = %s"%axaddress[0])
|
||||
#print("Source Address = %s"%source)
|
||||
#print("Destination Address = %s"%destination)
|
||||
#print("Digipeaters =")
|
||||
#print(digipeaters)
|
||||
#print("Payload = %s"%payload)
|
||||
#print("")
|
||||
|
||||
if aprs.wait_for_ack != 0:
|
||||
if source == aprs.call_of_wait_for_ack:
|
||||
# split payload at colon. If it is a valid acknowledge, we should get three
|
||||
# substrings: the first in empty, the second with the call of the ax25
|
||||
# interface and the thirth with the acknowledge
|
||||
|
||||
split_message=payload.split(":")
|
||||
if len(split_message) == 3:
|
||||
if split_message[1].replace(" ", "") == axaddress[port]:
|
||||
if split_message[2] == aprs.wait_for_ack:
|
||||
print ('Received acknowledge ' + aprs.wait_for_ack + ' from ' + aprs.call_of_wait_for_ack + ".")
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
mqtt.aprs_state = 'message sent'
|
||||
#topic = mqtt.topic_root + '/aprs_status'
|
||||
#publish(client,topic,mqtt.aprs_state)
|
||||
mqtt.state = 'busy'
|
||||
|
||||
|
||||
# Time out waiting for acknowledge
|
||||
if aprs.wait_for_ack != 0:
|
||||
if time.time() - aprs.time_out_timer > mqtt.transmit_rate:
|
||||
aprs.retry_counter = aprs.retry_counter + 1
|
||||
if aprs.retry_counter < mqtt.retry:
|
||||
# Try again
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.request_to_send = 1;
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('Retry: APRS ' + aprs.message + ' message send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
mqtt.aprs_state = 'sending message (retry ' + str(aprs.retry_counter) + ')'
|
||||
mqtt.state = 'busy'
|
||||
else:
|
||||
# Give up
|
||||
print ('No acknowledge received from ' + aprs.call_of_wait_for_ack + '. Giving up.')
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
mqtt.aprs_state = 'sending message failed'
|
||||
#topic = mqtt.topic_root + '/aprs_status'
|
||||
#publish(client,topic,mqtt.aprs_state)
|
||||
mqtt.state = 'busy'
|
||||
# If APRS system is transmitting, retrying and still waiting for acknowledge, keep on waiting and send an MQTT update
|
||||
if mqtt.state == 'busy':
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,mqtt.aprs_state)
|
||||
mqtt.state = 'ready'
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
#sys.stdout = sys.stderr = open('debug.log', 'w')
|
||||
run()
|
||||
|
@@ -0,0 +1,115 @@
|
||||
"""
|
||||
A bridge between APRS messaging and MQTT, designed to control my lora_aprs_node_pico
|
||||
|
||||
(C)2022 M.T. Konstapel https://meezenest.nl/mees
|
||||
|
||||
This file is part of aprs-mqtt-bridge.
|
||||
|
||||
aprs-mqtt-bridge is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
aprs-mqtt-bridge is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with aprs-mqtt-bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import sys
|
||||
import random
|
||||
import time
|
||||
import config_with_yaml as config
|
||||
from paho.mqtt import client as mqtt_client
|
||||
|
||||
configuration_file = "aprs-mqtt-bridge.yml"
|
||||
|
||||
# This is where we keep our settings
|
||||
class mqtt_settings:
|
||||
pass
|
||||
mqtt = mqtt_settings()
|
||||
|
||||
def connect_mqtt():
|
||||
def on_connect(client, userdata, flags, rc):
|
||||
if rc == 0:
|
||||
print("Connected to MQTT Broker!")
|
||||
else:
|
||||
print("Failed to connect, return code %d\n", rc)
|
||||
# Set Connecting Client ID
|
||||
client = mqtt_client.Client(mqtt.client_id)
|
||||
#client.username_pw_set(username, password)
|
||||
client.on_connect = on_connect
|
||||
client.connect(mqtt.broker, mqtt.port)
|
||||
return client
|
||||
|
||||
def publish(client, topic, message):
|
||||
result = client.publish(topic, message)
|
||||
status = result[0]
|
||||
if status == 0:
|
||||
print(f"Send `{message}` to topic `{topic}`")
|
||||
else:
|
||||
print(f"Failed to send message to topic {topic}")
|
||||
|
||||
def subscribe(client: mqtt_client, topic):
|
||||
def on_message(client, userdata, message):
|
||||
print(f"Received `{message.payload.decode()}` from `{message.topic}` topic")
|
||||
|
||||
client.subscribe(topic)
|
||||
client.on_message = on_message
|
||||
|
||||
def read_config():
|
||||
try:
|
||||
cfg = config.load(configuration_file)
|
||||
except:
|
||||
print ("Configuration file ./" + configuration_file + " not found.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.broker = cfg.getProperty("global.broker")
|
||||
except:
|
||||
print ("Error in configuration file: no broker defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.port = cfg.getPropertyWithDefault("global.port", 1883)
|
||||
except:
|
||||
print ("Error in configuration file: no port defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.topic = cfg.getPropertyWithDefault("global.topic", "aprs-mqtt-bridge")
|
||||
except:
|
||||
print ("Error in configuration file: no topic defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.transmit_rate = cfg.getPropertyWithDefault("global.transmit_rate", 30)
|
||||
except:
|
||||
print ("Error in configuration file: no transmit_rate defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.retry = cfg.getPropertyWithDefault("global.retry", 3)
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
|
||||
mqtt.client_id = f'{mqtt.topic}-{random.randint(0, 1000)}'
|
||||
|
||||
print (mqtt.broker)
|
||||
print (mqtt.topic)
|
||||
print (mqtt.port)
|
||||
print (mqtt.client_id)
|
||||
print (cfg)
|
||||
|
||||
def run():
|
||||
read_config()
|
||||
|
||||
client = connect_mqtt()
|
||||
topic = mqtt.topic + '/set'
|
||||
subscribe(client,topic)
|
||||
client.loop_start()
|
||||
while True:
|
||||
time.sleep(1)
|
||||
topic = mqtt.topic + '/result'
|
||||
publish(client,topic,'test')
|
||||
|
||||
if __name__ == '__main__':
|
||||
run()
|
385
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py_2022-01-14
Executable file
385
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py_2022-01-14
Executable file
@@ -0,0 +1,385 @@
|
||||
#!/usr/bin/python3
|
||||
"""
|
||||
A bridge between APRS messaging and MQTT, designed to control my lora_aprs_node_pico
|
||||
|
||||
(C)2022 M.T. Konstapel https://meezenest.nl/mees
|
||||
|
||||
This file is part of aprs-mqtt-bridge.
|
||||
|
||||
aprs-mqtt-bridge is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
aprs-mqtt-bridge is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with aprs-mqtt-bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import sys
|
||||
import random
|
||||
import time
|
||||
import os
|
||||
from pathlib import Path
|
||||
import yaml
|
||||
from yaml.loader import SafeLoader
|
||||
from paho.mqtt import client as mqtt_client
|
||||
import pythonax25
|
||||
|
||||
configuration_file = "aprs-mqtt-bridge.yml"
|
||||
|
||||
# This is where we keep our settings
|
||||
class mqtt_settings:
|
||||
#broker
|
||||
#topic_root
|
||||
#port
|
||||
#client_id
|
||||
#transmit_rate
|
||||
#retry
|
||||
#topics
|
||||
state = 'ready'
|
||||
pass
|
||||
mqtt = mqtt_settings()
|
||||
|
||||
axport = []
|
||||
axdevice = []
|
||||
axaddress = []
|
||||
class aprs_status:
|
||||
nr_of_ports = 0
|
||||
busy = 0
|
||||
wait_for_ack = 0
|
||||
call_of_wait_for_ack = 0
|
||||
time_out_timer = 0
|
||||
retry_counter = 0
|
||||
selected_port = 0
|
||||
request_to_send = 0
|
||||
pass
|
||||
aprs = aprs_status()
|
||||
|
||||
def parsePacket(string):
|
||||
# Split the address and payload separated by APRS PID
|
||||
buffer = string.split(b'\x03\xf0')
|
||||
address = buffer[0]
|
||||
|
||||
# Check if the first byte indicates it is a data packet
|
||||
if address[0] == 0:
|
||||
# Cut the first byte and feed it to the address parser
|
||||
listAddress = getAllAddress(address[1:])
|
||||
|
||||
if listAddress != 0:
|
||||
# Get the source, destination, and digipeaters from the address list
|
||||
source = listAddress[1]
|
||||
destination = listAddress[0]
|
||||
digipeaters = listAddress[2:]
|
||||
payload = buffer[1]
|
||||
else:
|
||||
# If there was an error decoding the address we return save values which will be ignored by the rest of the program
|
||||
source = 'NOCALL'
|
||||
destination = 'NOCALL'
|
||||
digipeaters = 'NOCALL'
|
||||
payload = 'NOT VALID'
|
||||
else:
|
||||
# If there was an error decoding the address we return save values which will be ignored by the rest of the program
|
||||
source = 'NOCALL'
|
||||
destination = 'NOCALL'
|
||||
digipeaters = 'NOCALL'
|
||||
payload = 'NOT VALID'
|
||||
#raise Exception('Not a data packet')
|
||||
|
||||
return (source, destination, digipeaters, payload)
|
||||
|
||||
def getAllAddress(packetAddress):
|
||||
addressSize = 7
|
||||
# Check if the networked address string is valid
|
||||
if (len(packetAddress) % 7) == 0:
|
||||
# Create a list of all address in ASCII form
|
||||
try:
|
||||
allAddress = [pythonax25.network_to_ascii(packetAddress[i:i+addressSize])
|
||||
for i in range(0, len(packetAddress), addressSize)]
|
||||
except:
|
||||
allAddress = 0
|
||||
|
||||
return allAddress
|
||||
else:
|
||||
# Received a non valid address. Fill return value with NULL so we don't crash
|
||||
allAddress = 0
|
||||
return allAddress
|
||||
#raise Exception('Error: Address is not a multiple of 7')
|
||||
|
||||
def bind_ax25():
|
||||
# Check if there's any active AX25 port
|
||||
current_port = 0;
|
||||
port_nr = pythonax25.config_load_ports()
|
||||
aprs.nr_of_ports = port_nr
|
||||
if port_nr > 0:
|
||||
# Get the device name of the first port
|
||||
axport.append(pythonax25.config_get_first_port())
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
while port_nr - current_port > 0:
|
||||
axport.append(pythonax25.config_get_next_port(axport[current_port-1]))
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
# Initiate a PF_PACKET socket (RX)
|
||||
rx_socket = pythonax25.packet_socket()
|
||||
|
||||
return rx_socket
|
||||
|
||||
def receive_ax25(rx_socket):
|
||||
# Blocking receive packet, 10 ms timeout
|
||||
receive = pythonax25.packet_rx(rx_socket,10)
|
||||
return receive
|
||||
|
||||
def send_ax25(portCall, srcCall, dest, digi, msg):
|
||||
# Initiate a datagram socket (TX)
|
||||
tx_socket = pythonax25.datagram_socket()
|
||||
res = pythonax25.datagram_bind(tx_socket, srcCall, portCall)
|
||||
#print(res)
|
||||
|
||||
if digi == 0:
|
||||
res = pythonax25.datagram_tx(tx_socket, dest, msg)
|
||||
else:
|
||||
res = pythonax25.datagram_tx_digi(tx_socket, dest, digi, msg)
|
||||
#print(res)
|
||||
pythonax25.close_socket(tx_socket)
|
||||
|
||||
def connect_mqtt():
|
||||
def on_connect(client, userdata, flags, rc):
|
||||
if rc == 0:
|
||||
print("Connected to MQTT Broker!")
|
||||
else:
|
||||
print("Failed to connect, return code %d\n", rc)
|
||||
# Set Connecting Client ID
|
||||
client = mqtt_client.Client(mqtt.client_id)
|
||||
#client.username_pw_set(username, password)
|
||||
client.on_connect = on_connect
|
||||
client.connect(mqtt.broker, mqtt.port)
|
||||
return client
|
||||
|
||||
def publish(client, topic, message):
|
||||
result = client.publish(topic, message)
|
||||
status = result[0]
|
||||
if status == 0:
|
||||
print(f"Send `{message}` to topic `{topic}`")
|
||||
else:
|
||||
print(f"Failed to send message to topic {topic}")
|
||||
|
||||
def subscribe(client: mqtt_client, topic):
|
||||
def on_message(client, userdata, message):
|
||||
received_payload = message.payload.decode()
|
||||
received_topic = Path(message.topic).name
|
||||
print(f"Received `{received_payload}` from `{message.topic}` topic")
|
||||
# Find corresponding topic in configuration-file and send this to the next function
|
||||
for topics in mqtt.topics:
|
||||
if received_topic == topics['name']:
|
||||
#print ('Found topic in list!')
|
||||
#print (topics)
|
||||
process_message(topics, received_payload)
|
||||
break
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
|
||||
client.subscribe(topic)
|
||||
client.on_message = on_message
|
||||
|
||||
def read_config():
|
||||
try:
|
||||
with open(configuration_file) as f:
|
||||
cfg = yaml.load(f, Loader=SafeLoader)
|
||||
|
||||
mqtt.topics = cfg['topics']
|
||||
#print(mqtt.topics)
|
||||
#for topic in mqtt.topics:
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
except:
|
||||
print ("Configuration file ./" + configuration_file + " not found.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.broker = cfg['global']['broker']
|
||||
except:
|
||||
print ("Error in configuration file: no broker defined.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.port = cfg['global']['port']
|
||||
except:
|
||||
print ("Error in configuration file: no port defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.topic_root = cfg['global']['topic_root']
|
||||
except:
|
||||
print ("Error in configuration file: no topic defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.transmit_rate = cfg['global']['transmit_rate']
|
||||
except:
|
||||
print ("Error in configuration file: no transmit_rate defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.retry = cfg['global']['retry']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.destination = cfg['global']['destination']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
|
||||
mqtt.client_id = f'{mqtt.topic_root}-{random.randint(0, 1000)}'
|
||||
|
||||
print (mqtt.broker)
|
||||
print (mqtt.topic_root)
|
||||
print (mqtt.port)
|
||||
print (mqtt.client_id)
|
||||
|
||||
# Loop through all topics and activate them
|
||||
def add_subscribtions_from_configfile(client):
|
||||
for topics in mqtt.topics:
|
||||
current_topic = mqtt.topic_root + '/' + topics['name']
|
||||
subscribe(client,current_topic)
|
||||
print('Topic ' + topics['name'] + ' added')
|
||||
|
||||
def process_message(data, payload):
|
||||
#print ('Payload: '+ payload)
|
||||
#print (data['call'])
|
||||
#print (data['port'])
|
||||
|
||||
if aprs.busy == 0:
|
||||
# find payload in configuration file
|
||||
for commands in data['command']:
|
||||
if payload == commands['payload']:
|
||||
aprs.time_out_timer = time.time() # Start timeout timer
|
||||
aprs.busy = 1
|
||||
aprs.selected_port = data['port']
|
||||
|
||||
# Find call of ax25 port
|
||||
for position in range(len(axdevice)):
|
||||
if axdevice[position] == aprs.selected_port:
|
||||
aprs.port_call = axaddress[position]
|
||||
|
||||
aprs.source_call = data['server']
|
||||
aprs.wait_for_ack = commands['response']
|
||||
aprs.call_of_wait_for_ack = data['call']
|
||||
aprs.message = ':' + data['call'].ljust(9) + ':' + commands['cmd']
|
||||
arguments = '-d \"APRX29\" -s ' + data['port'] + ' \"' + aprs.message + '\"'
|
||||
beacon_program = "/usr/sbin/beacon"
|
||||
aprs.beacon_program_with_arguments = beacon_program + " " + arguments
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('APRS message ' + aprs.message + ' send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
mqtt.state = 'busy'
|
||||
aprs.request_to_send = 1;
|
||||
else:
|
||||
mqtt.state = 'busy'
|
||||
|
||||
def run():
|
||||
read_config()
|
||||
|
||||
rx_socket = bind_ax25()
|
||||
|
||||
client = connect_mqtt()
|
||||
|
||||
add_subscribtions_from_configfile(client)
|
||||
#topic = mqtt.topic_root + '/set'
|
||||
#subscribe(client,topic)
|
||||
client.loop_start()
|
||||
|
||||
# Send ready to MQTT broker to indicate we are meaning business
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
mqtt.state = 'ready'
|
||||
|
||||
aprs.time_out_timer = time.time()
|
||||
while True:
|
||||
|
||||
if aprs.request_to_send == 1:
|
||||
send_ax25(aprs.port_call, aprs.source_call, mqtt.destination, 0, aprs.message)
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
#print(aprs.selected_port)
|
||||
#print(aprs.message)
|
||||
aprs.request_to_send = 0
|
||||
|
||||
receive = receive_ax25(rx_socket)
|
||||
for port in range(len(axdevice)):
|
||||
if receive[0][1] == axdevice[port]:
|
||||
#print(receive)
|
||||
source, destination, digipeaters, payload = parsePacket(receive[1])
|
||||
# bug UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf8 in position 47: invalid start byte
|
||||
try:
|
||||
payload = payload.decode()
|
||||
except:
|
||||
payload = 'NOT VALID'
|
||||
|
||||
#print("Packet Received by = %s"%axaddress[0])
|
||||
#print("Source Address = %s"%source)
|
||||
#print("Destination Address = %s"%destination)
|
||||
#print("Digipeaters =")
|
||||
#print(digipeaters)
|
||||
#print("Payload = %s"%payload)
|
||||
#print("")
|
||||
|
||||
if aprs.wait_for_ack != 0:
|
||||
if source == aprs.call_of_wait_for_ack:
|
||||
# split payload at colon. If it is a valid acknowledge, we should get three
|
||||
# substrings: the first in empty, the second with the call of the ax25
|
||||
# interface and the thirth with the acknowledge
|
||||
|
||||
split_message=payload.split(":")
|
||||
if len(split_message) == 3:
|
||||
if split_message[1].replace(" ", "") == axaddress[port]:
|
||||
if split_message[2] == aprs.wait_for_ack:
|
||||
print ('Received acknowledge ' + aprs.wait_for_ack + ' from ' + aprs.call_of_wait_for_ack + ".")
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
mqtt.state = 'ready'
|
||||
|
||||
|
||||
# Time out waiting for acknowledge
|
||||
if aprs.wait_for_ack != 0:
|
||||
if time.time() - aprs.time_out_timer > mqtt.transmit_rate:
|
||||
aprs.retry_counter = aprs.retry_counter + 1
|
||||
if aprs.retry_counter < mqtt.retry:
|
||||
# Try again
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.request_to_send = 1;
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('Retry: APRS ' + aprs.message + ' message send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
else:
|
||||
# Give up
|
||||
print ('No acknowledge received from ' + aprs.call_of_wait_for_ack + '. Giving up.')
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
mqtt.state = 'ready'
|
||||
# If APRS system is still waiting for acknowledge, keep on waiting and send an MQTT update
|
||||
if mqtt.state == 'busy':
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'busy')
|
||||
mqtt.state = 'ready'
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
#sys.stdout = sys.stderr = open('debug.log', 'w')
|
||||
run()
|
||||
|
393
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py_new
Executable file
393
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.py_new
Executable file
@@ -0,0 +1,393 @@
|
||||
#!/usr/bin/python3
|
||||
"""
|
||||
A bridge between APRS messaging and MQTT, designed to control my lora_aprs_node_pico
|
||||
|
||||
(C)2022 M.T. Konstapel https://meezenest.nl/mees
|
||||
|
||||
This file is part of aprs-mqtt-bridge.
|
||||
|
||||
aprs-mqtt-bridge is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
aprs-mqtt-bridge is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with aprs-mqtt-bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import sys
|
||||
import random
|
||||
import time
|
||||
import os
|
||||
from pathlib import Path
|
||||
import yaml
|
||||
from yaml.loader import SafeLoader
|
||||
from paho.mqtt import client as mqtt_client
|
||||
import pythonax25
|
||||
|
||||
configuration_file = "aprs-mqtt-bridge.yml"
|
||||
|
||||
# This is where we keep our settings
|
||||
class mqtt_settings:
|
||||
#broker
|
||||
#topic_root
|
||||
#port
|
||||
#client_id
|
||||
#transmit_rate
|
||||
#retry
|
||||
#topics
|
||||
state = 'ready'
|
||||
topic_message_state = 'idle'
|
||||
pass
|
||||
mqtt = mqtt_settings()
|
||||
|
||||
axport = []
|
||||
axdevice = []
|
||||
axaddress = []
|
||||
class aprs_status:
|
||||
nr_of_ports = 0
|
||||
busy = 0
|
||||
message_state = 0
|
||||
wait_for_ack = 0
|
||||
call_of_wait_for_ack = 0
|
||||
time_out_timer = 0
|
||||
retry_counter = 0
|
||||
selected_port = 0
|
||||
request_to_send = 0
|
||||
pass
|
||||
aprs = aprs_status()
|
||||
|
||||
def parsePacket(string):
|
||||
# Split the address and payload separated by APRS PID
|
||||
buffer = string.split(b'\x03\xf0')
|
||||
address = buffer[0]
|
||||
|
||||
# Check if the first byte indicates it is a data packet
|
||||
if address[0] == 0:
|
||||
# Cut the first byte and feed it to the address parser
|
||||
listAddress = getAllAddress(address[1:])
|
||||
|
||||
# Get the source, destination, and digipeaters from the address list
|
||||
source = listAddress[1]
|
||||
destination = listAddress[0]
|
||||
digipeaters = listAddress[2:]
|
||||
else:
|
||||
raise Exception('Not a data packet')
|
||||
|
||||
payload = buffer[1]
|
||||
|
||||
# bug UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf8 in position 47: invalid start byte
|
||||
try:
|
||||
payload = payload.decode()
|
||||
except:
|
||||
payload = 0;
|
||||
|
||||
return (source, destination, digipeaters, payload)
|
||||
|
||||
def getAllAddress(packetAddress):
|
||||
addressSize = 7
|
||||
# Check if the networked address string is valid
|
||||
if (len(packetAddress) % 7) == 0:
|
||||
# Create a list of all address in ASCII form
|
||||
allAddress = [pythonax25.network_to_ascii(packetAddress[i:i+addressSize])
|
||||
for i in range(0, len(packetAddress), addressSize)]
|
||||
return allAddress
|
||||
else:
|
||||
raise Exception('Error: Address is not a multiple of 7')
|
||||
|
||||
def bind_ax25():
|
||||
# Check if there's any active AX25 port
|
||||
current_port = 0;
|
||||
port_nr = pythonax25.config_load_ports()
|
||||
aprs.nr_of_ports = port_nr
|
||||
if port_nr > 0:
|
||||
# Get the device name of the first port
|
||||
axport.append(pythonax25.config_get_first_port())
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
while port_nr - current_port > 0:
|
||||
axport.append(pythonax25.config_get_next_port(axport[current_port-1]))
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
# Initiate a PF_PACKET socket (RX)
|
||||
rx_socket = pythonax25.packet_socket()
|
||||
|
||||
return rx_socket
|
||||
|
||||
def receive_ax25(rx_socket):
|
||||
# Blocking receive packet, 10 ms timeout
|
||||
receive = pythonax25.packet_rx(rx_socket,10)
|
||||
return receive
|
||||
|
||||
def send_ax25(portCall, srcCall, dest, digi, msg):
|
||||
# Initiate a datagram socket (TX)
|
||||
tx_socket = pythonax25.datagram_socket()
|
||||
res = pythonax25.datagram_bind(tx_socket, srcCall, portCall)
|
||||
#print(res)
|
||||
|
||||
if digi == 0:
|
||||
res = pythonax25.datagram_tx(tx_socket, dest, msg)
|
||||
else:
|
||||
res = pythonax25.datagram_tx_digi(tx_socket, dest, digi, msg)
|
||||
#print(res)
|
||||
pythonax25.close_socket(tx_socket)
|
||||
|
||||
def connect_mqtt():
|
||||
def on_connect(client, userdata, flags, rc):
|
||||
if rc == 0:
|
||||
print("Connected to MQTT Broker!")
|
||||
else:
|
||||
print("Failed to connect, return code %d\n", rc)
|
||||
# Set Connecting Client ID
|
||||
client = mqtt_client.Client(mqtt.client_id)
|
||||
#client.username_pw_set(username, password)
|
||||
client.on_connect = on_connect
|
||||
client.connect(mqtt.broker, mqtt.port)
|
||||
return client
|
||||
|
||||
def publish(client, topic, message):
|
||||
result = client.publish(topic, message)
|
||||
status = result[0]
|
||||
if status == 0:
|
||||
print(f"Send `{message}` to topic `{topic}`")
|
||||
else:
|
||||
print(f"Failed to send message to topic {topic}")
|
||||
|
||||
def subscribe(client: mqtt_client, topic):
|
||||
def on_message(client, userdata, message):
|
||||
received_payload = message.payload.decode()
|
||||
received_topic = Path(message.topic).name
|
||||
print(f"Received `{received_payload}` from `{message.topic}` topic")
|
||||
# Find corresponding topic in configuration-file and send this to the next function
|
||||
for topics in mqtt.topics:
|
||||
if received_topic == topics['name']:
|
||||
#print ('Found topic in list!')
|
||||
#print (topics)
|
||||
process_message(topics, received_payload)
|
||||
break
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
|
||||
client.subscribe(topic)
|
||||
client.on_message = on_message
|
||||
|
||||
def read_config():
|
||||
try:
|
||||
with open(configuration_file) as f:
|
||||
cfg = yaml.load(f, Loader=SafeLoader)
|
||||
|
||||
mqtt.topics = cfg['topics']
|
||||
#print(mqtt.topics)
|
||||
#for topic in mqtt.topics:
|
||||
# print(topic['name'])
|
||||
# print(topic['command'])
|
||||
except:
|
||||
print ("Configuration file ./" + configuration_file + " not found.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.broker = cfg['global']['broker']
|
||||
except:
|
||||
print ("Error in configuration file: no broker defined.")
|
||||
sys.exit(1)
|
||||
|
||||
try:
|
||||
mqtt.port = cfg['global']['port']
|
||||
except:
|
||||
print ("Error in configuration file: no port defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.topic_root = cfg['global']['topic_root']
|
||||
except:
|
||||
print ("Error in configuration file: no topic defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.transmit_rate = cfg['global']['transmit_rate']
|
||||
except:
|
||||
print ("Error in configuration file: no transmit_rate defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.retry = cfg['global']['retry']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
try:
|
||||
mqtt.destination = cfg['global']['destination']
|
||||
except:
|
||||
print ("Error in configuration file: no retry defined.")
|
||||
sys.exit(1)
|
||||
|
||||
mqtt.client_id = f'{mqtt.topic_root}-{random.randint(0, 1000)}'
|
||||
|
||||
print (mqtt.broker)
|
||||
print (mqtt.topic_root)
|
||||
print (mqtt.port)
|
||||
print (mqtt.client_id)
|
||||
|
||||
# Loop through all topics and activate them
|
||||
def add_subscrubtions_from_configfile(client):
|
||||
for topics in mqtt.topics:
|
||||
current_topic = mqtt.topic_root + '/' + topics['name']
|
||||
subscribe(client,current_topic)
|
||||
print('Topic ' + topics['name'] + ' added')
|
||||
|
||||
def process_message(data, payload):
|
||||
#print ('Payload: '+ payload)
|
||||
#print (data['call'])
|
||||
#print (data['port'])
|
||||
|
||||
if aprs.busy == 0:
|
||||
# find payload in configuration file
|
||||
for commands in data['command']:
|
||||
if payload == commands['payload']:
|
||||
aprs.busy = 1
|
||||
aprs.message_state = 1
|
||||
aprs.selected_port = data['port']
|
||||
|
||||
# Find call of ax25 port
|
||||
for position in range(len(axdevice)):
|
||||
if axdevice[position] == aprs.selected_port:
|
||||
aprs.port_call = axaddress[position]
|
||||
|
||||
aprs.source_call = data['server']
|
||||
aprs.wait_for_ack = commands['response']
|
||||
aprs.call_of_wait_for_ack = data['call']
|
||||
aprs.message = ':' + data['call'].ljust(9) + ':' + commands['cmd']
|
||||
arguments = '-d \"APRX29\" -s ' + data['port'] + ' \"' + aprs.message + '\"'
|
||||
beacon_program = "/usr/sbin/beacon"
|
||||
aprs.beacon_program_with_arguments = beacon_program + " " + arguments
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('APRS message ' + aprs.message + ' send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
# Start timeout timer
|
||||
aprs.time_out_timer = time.time()
|
||||
mqtt.state = 'busy'
|
||||
aprs.request_to_send = 1;
|
||||
else:
|
||||
mqtt.state = 'busy'
|
||||
|
||||
def run():
|
||||
read_config()
|
||||
|
||||
rx_socket = bind_ax25()
|
||||
|
||||
client = connect_mqtt()
|
||||
|
||||
add_subscrubtions_from_configfile(client)
|
||||
#topic = mqtt.topic_root + '/set'
|
||||
#subscribe(client,topic)
|
||||
client.loop_start()
|
||||
|
||||
# Send ready to MQTT broker to indicate we are meaning business
|
||||
topic = mqtt.topic_root + '/' + mqtt.topic_message_state
|
||||
publish(client,topic,'idle')
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
mqtt.state = 'ready'
|
||||
|
||||
aprs.time_out_timer = time.time()
|
||||
while True:
|
||||
|
||||
if aprs.request_to_send == 1:
|
||||
send_ax25(aprs.port_call, aprs.source_call, mqtt.destination, 0, aprs.message)
|
||||
#print(aprs.selected_port)
|
||||
#print(aprs.message)
|
||||
aprs.request_to_send = 0
|
||||
|
||||
receive = receive_ax25(rx_socket)
|
||||
for port in range(len(axdevice)):
|
||||
if receive[0][1] == axdevice[port]:
|
||||
#print(receive)
|
||||
source, destination, digipeaters, payload = parsePacket(receive[1])
|
||||
#print("Packet Received by = %s"%axaddress[0])
|
||||
#print("Source Address = %s"%source)
|
||||
#print("Destination Address = %s"%destination)
|
||||
#print("Digipeaters =")
|
||||
#print(digipeaters)
|
||||
#print("Payload = %s"%payload)
|
||||
#print("")
|
||||
|
||||
if aprs.wait_for_ack != 0:
|
||||
if source == aprs.call_of_wait_for_ack:
|
||||
# split payload at colon. If it is a valid acknowledge, we should get three
|
||||
# substrings: the first in empty, the second with the call of the ax25
|
||||
# interface and the thirth with the acknowledge
|
||||
|
||||
split_message=payload.split(":")
|
||||
if len(split_message) == 3:
|
||||
if split_message[1].replace(" ", "") == axaddress[port]:
|
||||
if split_message[2] == aprs.wait_for_ack:
|
||||
print ('Received acknowledge ' + aprs.wait_for_ack + ' from ' + aprs.call_of_wait_for_ack + ".")
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
|
||||
# Update message_status via MQTT
|
||||
update_message = 'Command send'
|
||||
|
||||
topic = mqtt.topic_root + '/' + mqtt.topic_message_state
|
||||
publish(client,topic, update_message)
|
||||
mqtt.state = 'ready'
|
||||
|
||||
|
||||
# Time out waiting for acknowledge
|
||||
if aprs.wait_for_ack != 0:
|
||||
if time.time() - aprs.time_out_timer > mqtt.transmit_rate:
|
||||
aprs.retry_counter = aprs.retry_counter + 1
|
||||
if aprs.retry_counter < mqtt.retry:
|
||||
# Try again
|
||||
aprs.time_out_timer = time.time() # Restart timeout timer
|
||||
aprs.request_to_send = 1;
|
||||
#os.system(aprs.beacon_program_with_arguments)
|
||||
print ('Retry: APRS ' + aprs.message + ' message send to ' + aprs.call_of_wait_for_ack + '.')
|
||||
else:
|
||||
# Give up
|
||||
print ('No acknowledge received from ' + aprs.call_of_wait_for_ack + '. Giving up.')
|
||||
aprs.wait_for_ack = 0
|
||||
aprs.busy = 0
|
||||
aprs.retry_counter = 0
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'ready')
|
||||
|
||||
# Update message_status via MQTT
|
||||
update_message = 'No ack received'
|
||||
|
||||
topic = mqtt.topic_root + '/' + mqtt.topic_message_state
|
||||
publish(client,topic, update_message)
|
||||
|
||||
mqtt.state = 'ready'
|
||||
# If APRS system is still waiting for acknowledge, keep on waiting and send an MQTT update
|
||||
if mqtt.state == 'busy':
|
||||
topic = mqtt.topic_root + '/aprs_status'
|
||||
publish(client,topic,'busy')
|
||||
|
||||
# Update message_status via MQTT
|
||||
if aprs.retry_counter == 1:
|
||||
update_message = 'Sending command'
|
||||
elif aprs.retry_counter < mqtt.retry:
|
||||
update_message = 'Retry ' + aprs.retry_counter
|
||||
|
||||
topic = mqtt.topic_root + '/' + mqtt.topic_message_state
|
||||
publish(client,topic, update_message)
|
||||
|
||||
mqtt.state = 'ready'
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
#sys.stdout = sys.stderr = open('debug.log', 'w')
|
||||
run()
|
||||
|
116
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.yml
Normal file
116
aprs_utils/aprs-mqtt-bridge_old/aprs-mqtt-bridge.yml
Normal file
@@ -0,0 +1,116 @@
|
||||
# Global settings apply to all other entries
|
||||
global:
|
||||
broker: pe1rxf.ampr.org # The MQTT broker we are going to use
|
||||
port: 1883 # The tcp port of the MQTT broker
|
||||
topic_root: hamnet_aprs_nodes # MQTT topic root
|
||||
transmit_rate: 20 # Number of seconds between each transmision
|
||||
retry: 3 # Try this often before giving up
|
||||
destination: APRX29 # Destination or program ID
|
||||
digi_path: WIDE2-1 # Digi path of APRS messages
|
||||
#beacon_program: /usr/sbin/beacon # The external AX.25 beacon program => obsolete
|
||||
|
||||
|
||||
topics:
|
||||
# MQTT topic: 5GHz dish at workshop (must be unique name)
|
||||
- name: ubiquity_dish_ptmp_workshop
|
||||
call: PE1RXF-6 # Call of node to which commands below are send
|
||||
server: PE1RXF-3 # Call of APRS server sending the commands
|
||||
port: ax2 # Name of AX.25 port to use
|
||||
command:
|
||||
- payload: 'ON' # This is the payload we have to receive
|
||||
cmd: 33{33 # This command is send to the node
|
||||
response: ack33 # This response is expected from the node
|
||||
- payload: 'OFF'
|
||||
cmd: 32{32
|
||||
response: ack32
|
||||
|
||||
# Server at workshop
|
||||
- name: server_workshop
|
||||
call: PE1RXF-6
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 31{31
|
||||
response: ack31
|
||||
- payload: 'OFF'
|
||||
cmd: 30{30
|
||||
response: ack30
|
||||
|
||||
# Server at tiny house
|
||||
- name: server_tiny_house
|
||||
call: PE1RXF-5
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 35{35
|
||||
response: ack35
|
||||
- payload: 'OFF'
|
||||
cmd: 34{34
|
||||
response: ack34
|
||||
|
||||
# MQTT topic: 5GHz dish at tiny house
|
||||
- name: ubiquity_dish_ptp_tiny_house
|
||||
call: PE1RXF-5
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 31{31
|
||||
response: ack31
|
||||
- payload: 'OFF'
|
||||
cmd: 30{30
|
||||
response: ack30
|
||||
|
||||
# MQTT topic: 5GHz dish in orchard
|
||||
- name: ubiquity_dish_ptmp_orchard
|
||||
call: PE1RXF-8
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 31{31
|
||||
response: ack31
|
||||
- payload: 'OFF'
|
||||
cmd: 30{30
|
||||
response: ack30
|
||||
|
||||
# MQTT topic: 5GHz dish in vegetable garden
|
||||
- name: ubiquity_dish_ptp_vegetable_garden
|
||||
call: PE1RXF-8
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 33{33
|
||||
response: ack33
|
||||
- payload: 'OFF'
|
||||
cmd: 32{32
|
||||
response: ack32
|
||||
|
||||
# MQTT topic: QRP-lab QDX transceiver at tiny house
|
||||
- name: qdx_transceiver_tiny_house
|
||||
call: PE1RXF-5
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 33{33
|
||||
response: ack33
|
||||
- payload: 'OFF'
|
||||
cmd: 32{32
|
||||
response: ack32
|
||||
|
||||
# MQTT topic: Switched 12V output at tiny house
|
||||
- name: switched_12v_tiny_house
|
||||
call: PE1RXF-5
|
||||
server: PE1RXF-3
|
||||
port: ax2
|
||||
command:
|
||||
- payload: 'ON'
|
||||
cmd: 37{37
|
||||
response: ack37
|
||||
- payload: 'OFF'
|
||||
cmd: 36{36
|
||||
response: ack36
|
57
aprs_utils/aprs-mqtt-bridge_old/concept.md
Normal file
57
aprs_utils/aprs-mqtt-bridge_old/concept.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Globale werking
|
||||
Een Python programma opent een YAML-bestand met daarin alle beschikbare comando's die naar een APRS LoRa node gestuurd kunnen worden.
|
||||
|
||||
Er wordt een MQTT client gestart, die luistert naar commando's vanuit Home Assistant. Wordt er een commando ontvangen dat voorkomt in het YAML-bestand dan wordt dit verstuurd naar de APRS LoRa node.
|
||||
|
||||
## Voorbeeld YAML-bestand
|
||||
|
||||
```
|
||||
# Global settings apply to all other entries
|
||||
global:
|
||||
broker: pe1rxf.ampr.org # The broker we are going to use
|
||||
port: 1883 # The tcp port of the broker
|
||||
topic: hamnet_aprs_nodes # MQTT topic root
|
||||
transmit_rate: 30 # Number of seconds between each transmision
|
||||
retry: 3 # Try this often before giving up
|
||||
|
||||
# MQTT topic: 5GHz dish at workshop (must be unique name)
|
||||
ubiquity_dish_ptmp_workshop:
|
||||
ON: # MQTT payload
|
||||
call: PE1RXF-6 # Call of node to which commands below are send
|
||||
port: ax2 # Name of AX.25 port to use
|
||||
command: 31{31 # This command is send to the node
|
||||
response: ack31 # This command is send to the node
|
||||
OFF:
|
||||
call: PE1RXF-6
|
||||
port: ax2
|
||||
command: 30{30
|
||||
response: ack30
|
||||
|
||||
# MQTT topic: 5GHz dish at tiny house
|
||||
ubiquity_dish_ptp_tiny_house:
|
||||
ON:
|
||||
call: PE1RXF-5
|
||||
port: ax2
|
||||
command: 35{35
|
||||
response: ack35
|
||||
OFF:
|
||||
call: PE1RXF-5
|
||||
port: ax2
|
||||
command: 34{34
|
||||
response: ack34
|
||||
```
|
||||
|
||||
Home Assistant stuurt payload 'ON' naar 'ubiquity_dish_ptmp_workshop/cmd' (via de broker). Het Python programma zoekt 'ubiquity_dish_workshop.ON.command' op. Als dit bestaat dan wordt dit commando verstuurd naar de APRS LoRa node (via het externe beacon-programma).
|
||||
Als 'ubiquity_dish_workshop.ON.response' bestaat wordt er gewacht totdat deze verwachte response binnenkomt in bestand ./aprs_utils/aprs-log/aprs_received_messages.log. Eventueel wordt er een retry verstuurd.
|
||||
|
||||
Het Python programma houdt intern bij of een schakelaar aan of uit staat. Periodiek kan dit gecontroleerd worden door de status van de LoRa nodes op te vragen. De status van de schakelaar wordt gepubliceerd op op hetzelfde topic, maar dan eindigend op '/state'
|
||||
|
||||
```
|
||||
import config_with_yaml as config
|
||||
|
||||
cfg = config.load("demo.yml")
|
||||
|
||||
print (cfg.getProperty("Demo.Motors.Server"))
|
||||
print (cfg.getPropertyWithDefault("Demo.Motors.Server2", "Server2"))
|
||||
print (cfg)
|
||||
```
|
45
aprs_utils/aprs-mqtt-bridge_old/debug.log
Normal file
45
aprs_utils/aprs-mqtt-bridge_old/debug.log
Normal file
@@ -0,0 +1,45 @@
|
||||
pe1rxf.ampr.org
|
||||
hamnet_aprs_nodes
|
||||
1883
|
||||
hamnet_aprs_nodes-752
|
||||
ax0 ax0 PE1RXF-1
|
||||
ax1 ax1 PE1RXF-2
|
||||
ax2 ax2 PE1RXF-3
|
||||
Topic ubiquity_dish_ptmp_workshop added
|
||||
Topic server_workshop added
|
||||
Topic ubiquity_dish_ptp_tiny_house added
|
||||
Send `ready` to topic `hamnet_aprs_nodes/aprs_status`
|
||||
Connected to MQTT Broker!
|
||||
Traceback (most recent call last):
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 364, in <module>
|
||||
run()
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 304, in run
|
||||
receive = receive_ax25(rx_socket)
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 130, in receive_ax25
|
||||
receive = pythonax25.packet_rx(rx_socket,10)
|
||||
KeyboardInterrupt
|
||||
pe1rxf.ampr.org
|
||||
hamnet_aprs_nodes
|
||||
1883
|
||||
hamnet_aprs_nodes-187
|
||||
ax0 ax0 PE1RXF-1
|
||||
ax1 ax1 PE1RXF-2
|
||||
ax2 ax2 PE1RXF-3
|
||||
Topic ubiquity_dish_ptmp_workshop added
|
||||
Topic server_workshop added
|
||||
Topic ubiquity_dish_ptp_tiny_house added
|
||||
Send `ready` to topic `hamnet_aprs_nodes/aprs_status`
|
||||
Connected to MQTT Broker!
|
||||
Received `OFF` from `hamnet_aprs_nodes/server_workshop` topic
|
||||
APRS message :PE1RXF-6 :30{30 send to PE1RXF-6.
|
||||
Send `busy` to topic `hamnet_aprs_nodes/aprs_status`
|
||||
Received acknowledge ack30 from PE1RXF-6.
|
||||
Send `ready` to topic `hamnet_aprs_nodes/aprs_status`
|
||||
Traceback (most recent call last):
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 364, in <module>
|
||||
run()
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 304, in run
|
||||
receive = receive_ax25(rx_socket)
|
||||
File "/home/marcel/ham/aprs_utils/aprs-mqtt-bridge/aprs-mqtt-bridge.py", line 130, in receive_ax25
|
||||
receive = pythonax25.packet_rx(rx_socket,10)
|
||||
KeyboardInterrupt
|
1
aprs_utils/aprs-mqtt-bridge_old/python-ax25
Submodule
1
aprs_utils/aprs-mqtt-bridge_old/python-ax25
Submodule
Submodule aprs_utils/aprs-mqtt-bridge_old/python-ax25 added at dfe9976dd1
93
aprs_utils/aprs-mqtt-bridge_old/readAPRS.py
Normal file
93
aprs_utils/aprs-mqtt-bridge_old/readAPRS.py
Normal file
@@ -0,0 +1,93 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import pythonax25
|
||||
from time import sleep, perf_counter
|
||||
from threading import Thread
|
||||
|
||||
axport = []
|
||||
axdevice = []
|
||||
axaddress = []
|
||||
|
||||
def parsePacket(string):
|
||||
# Split the address and payload separated by APRS PID
|
||||
buffer = string.split(b'\x03\xf0')
|
||||
address = buffer[0]
|
||||
|
||||
# Check if the first byte indicates it is a data packet
|
||||
if address[0] == 0:
|
||||
# Cut the first byte and feed it to the address parser
|
||||
listAddress = getAllAddress(address[1:])
|
||||
|
||||
# Get the source, destination, and digipeaters from the address list
|
||||
source = listAddress[1]
|
||||
destination = listAddress[0]
|
||||
digipeaters = listAddress[2:]
|
||||
else:
|
||||
raise Exception('Not a data packet')
|
||||
|
||||
payload = buffer[1]
|
||||
return (source, destination, digipeaters, payload)
|
||||
|
||||
def getAllAddress(packetAddress):
|
||||
addressSize = 7
|
||||
# Check if the networked address string is valid
|
||||
if (len(packetAddress) % 7) == 0:
|
||||
# Create a list of all address in ASCII form
|
||||
allAddress = [pythonax25.network_to_ascii(packetAddress[i:i+addressSize])
|
||||
for i in range(0, len(packetAddress), addressSize)]
|
||||
return allAddress
|
||||
else:
|
||||
raise Exception('Error: Address is not a multiple of 7')
|
||||
|
||||
def bind_ax25():
|
||||
# Check if there's any active AX25 port
|
||||
current_port = 0;
|
||||
port_nr = pythonax25.config_load_ports()
|
||||
if port_nr > 0:
|
||||
# Get the device name of the first port
|
||||
axport.append(pythonax25.config_get_first_port())
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
while port_nr - current_port > 0:
|
||||
axport.append(pythonax25.config_get_next_port(axport[current_port-1]))
|
||||
axdevice.append(pythonax25.config_get_device(axport[current_port]))
|
||||
axaddress.append(pythonax25.config_get_address(axport[current_port]))
|
||||
print (axport[current_port], axdevice[current_port], axaddress[current_port])
|
||||
current_port = current_port + 1
|
||||
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
# Initiate a PF_PACKET socket
|
||||
socket = pythonax25.packet_socket()
|
||||
return socket
|
||||
|
||||
def receive_ax25(socket):
|
||||
# Blocking receive packet, 10 ms timeout
|
||||
receive = pythonax25.packet_rx(socket,10)
|
||||
return receive
|
||||
|
||||
def main():
|
||||
|
||||
socket = bind_ax25()
|
||||
|
||||
while True:
|
||||
receive = receive_ax25(socket)
|
||||
|
||||
if receive[0][1] == axdevice[0]:
|
||||
print(receive)
|
||||
source, destination, digipeaters, payload = parsePacket(receive[1])
|
||||
print("Packet Received by = %s"%axaddress[0])
|
||||
print("Source Address = %s"%source)
|
||||
print("Destination Address = %s"%destination)
|
||||
print("Digipeaters =")
|
||||
print(digipeaters)
|
||||
print("Payload = %s"%payload)
|
||||
print("")
|
||||
else:
|
||||
continue
|
||||
|
||||
main()
|
1
aprs_utils/aprs_log/2022-07-03_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-07-03_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-07-03 20:04,0000
|
2
aprs_utils/aprs_log/2022-07-11_telemetry_PE1RXF-5.dat
Normal file
2
aprs_utils/aprs_log/2022-07-11_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,2 @@
|
||||
2022-07-11 13:45,0110
|
||||
2022-07-11 13:47,0100
|
2
aprs_utils/aprs_log/2022-07-15_telemetry_PE1RXF-5.dat
Normal file
2
aprs_utils/aprs_log/2022-07-15_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,2 @@
|
||||
2022-07-15 15:55,0100
|
||||
2022-07-15 16:06,0100
|
1
aprs_utils/aprs_log/2022-07-18_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-07-18_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-07-18 19:53,0000
|
1
aprs_utils/aprs_log/2022-07-22_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-07-22_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-07-22 15:49,1110
|
1
aprs_utils/aprs_log/2022-07-25_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-07-25_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-07-25 10:59,1110
|
1
aprs_utils/aprs_log/2022-09-16_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-09-16_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-09-16 11:23,0000
|
1
aprs_utils/aprs_log/2022-10-16_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-10-16_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-10-16 15:13,0111
|
2
aprs_utils/aprs_log/2022-10-30_telemetry_PE1RXF-5.dat
Normal file
2
aprs_utils/aprs_log/2022-10-30_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,2 @@
|
||||
2022-10-30 13:58,0000
|
||||
2022-10-30 16:05,0000
|
1
aprs_utils/aprs_log/2022-10-31_telemetry_PE1RXF-5.dat
Normal file
1
aprs_utils/aprs_log/2022-10-31_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-10-31 10:50,0000
|
1
aprs_utils/aprs_log/2022-12-28_telemetry_PE1RXF-6.dat
Normal file
1
aprs_utils/aprs_log/2022-12-28_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1 @@
|
||||
2022-12-28 16:10,1111
|
63
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-5.dat
Normal file
63
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,63 @@
|
||||
2023-07-08 14:30,0001
|
||||
2023-07-08 14:40,0001
|
||||
2023-07-08 14:41,0001
|
||||
2023-07-08 14:48,0001
|
||||
2023-07-08 14:49,0001
|
||||
2023-07-08 14:51,0001
|
||||
2023-07-08 14:54,0001
|
||||
2023-07-08 14:55,0001
|
||||
2023-07-08 14:56,0001
|
||||
2023-07-08 14:58,0001
|
||||
2023-07-08 15:05,0001
|
||||
2023-07-08 15:06,0001
|
||||
2023-07-08 15:07,0001
|
||||
2023-07-08 15:15,0001
|
||||
2023-07-08 15:18,0001
|
||||
2023-07-08 15:30,0001
|
||||
2023-07-08 15:33,0001
|
||||
2023-07-08 15:36,0001
|
||||
2023-07-08 15:37,0001
|
||||
2023-07-08 15:45,0001
|
||||
2023-07-08 15:47,1001
|
||||
2023-07-08 15:49,1001
|
||||
2023-07-08 15:49,1001
|
||||
2023-07-08 16:08,0001
|
||||
2023-07-08 16:11,1001
|
||||
2023-07-08 16:11,0001
|
||||
2023-07-08 16:18,0001
|
||||
2023-07-08 16:33,0001
|
||||
2023-07-08 16:36,0000
|
||||
2023-07-08 16:41,0000
|
||||
2023-07-08 16:44,0000
|
||||
2023-07-08 16:45,0000
|
||||
2023-07-08 16:47,0000
|
||||
2023-07-08 16:50,0000
|
||||
2023-07-08 16:51,0000
|
||||
2023-07-08 16:53,0000
|
||||
2023-07-08 16:54,0000
|
||||
2023-07-08 16:57,0000
|
||||
2023-07-08 16:59,0000
|
||||
2023-07-08 17:02,0001
|
||||
2023-07-08 17:10,1001
|
||||
2023-07-08 17:25,0001
|
||||
2023-07-08 17:40,0001
|
||||
2023-07-08 17:55,0111
|
||||
2023-07-08 18:25,0111
|
||||
2023-07-08 18:40,0111
|
||||
2023-07-08 18:55,0111
|
||||
2023-07-08 19:10,0111
|
||||
2023-07-08 19:25,0111
|
||||
2023-07-08 19:55,0111
|
||||
2023-07-08 20:25,0111
|
||||
2023-07-08 20:40,0111
|
||||
2023-07-08 20:55,0111
|
||||
2023-07-08 21:10,0111
|
||||
2023-07-08 21:25,0111
|
||||
2023-07-08 21:40,0111
|
||||
2023-07-08 21:55,0111
|
||||
2023-07-08 22:40,0111
|
||||
2023-07-08 22:55,0111
|
||||
2023-07-08 23:10,0111
|
||||
2023-07-08 23:25,0111
|
||||
2023-07-08 23:40,0111
|
||||
2023-07-08 23:55,0111
|
70
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-6.dat
Normal file
70
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,70 @@
|
||||
2023-07-08 14:31,0000
|
||||
2023-07-08 14:40,0000
|
||||
2023-07-08 14:41,0000
|
||||
2023-07-08 14:42,0000
|
||||
2023-07-08 14:48,0000
|
||||
2023-07-08 14:50,0000
|
||||
2023-07-08 14:55,0000
|
||||
2023-07-08 14:55,0000
|
||||
2023-07-08 14:56,0000
|
||||
2023-07-08 14:57,0000
|
||||
2023-07-08 14:58,0000
|
||||
2023-07-08 14:58,0000
|
||||
2023-07-08 15:07,0000
|
||||
2023-07-08 15:14,0000
|
||||
2023-07-08 15:19,0000
|
||||
2023-07-08 15:25,0000
|
||||
2023-07-08 15:31,0000
|
||||
2023-07-08 15:33,0000
|
||||
2023-07-08 15:34,0000
|
||||
2023-07-08 15:37,0000
|
||||
2023-07-08 15:37,0000
|
||||
2023-07-08 15:45,0000
|
||||
2023-07-08 15:45,0000
|
||||
2023-07-08 15:47,0000
|
||||
2023-07-08 15:48,0000
|
||||
2023-07-08 15:49,0000
|
||||
2023-07-08 15:49,0000
|
||||
2023-07-08 16:08,0000
|
||||
2023-07-08 16:10,0000
|
||||
2023-07-08 16:29,0000
|
||||
2023-07-08 16:32,0000
|
||||
2023-07-08 16:34,0000
|
||||
2023-07-08 16:35,0000
|
||||
2023-07-08 16:38,0000
|
||||
2023-07-08 16:40,0000
|
||||
2023-07-08 16:41,0000
|
||||
2023-07-08 16:43,0000
|
||||
2023-07-08 16:44,0000
|
||||
2023-07-08 16:46,0000
|
||||
2023-07-08 16:47,0000
|
||||
2023-07-08 16:49,0000
|
||||
2023-07-08 16:50,0000
|
||||
2023-07-08 16:52,0000
|
||||
2023-07-08 16:53,0000
|
||||
2023-07-08 16:55,0000
|
||||
2023-07-08 16:56,0000
|
||||
2023-07-08 16:58,0000
|
||||
2023-07-08 16:59,0000
|
||||
2023-07-08 17:01,0000
|
||||
2023-07-08 17:15,0000
|
||||
2023-07-08 17:30,0000
|
||||
2023-07-08 17:45,0000
|
||||
2023-07-08 18:00,0000
|
||||
2023-07-08 18:15,0000
|
||||
2023-07-08 18:45,0000
|
||||
2023-07-08 19:15,0000
|
||||
2023-07-08 19:30,0000
|
||||
2023-07-08 19:45,0000
|
||||
2023-07-08 20:15,0000
|
||||
2023-07-08 20:45,0000
|
||||
2023-07-08 21:15,0000
|
||||
2023-07-08 21:30,0000
|
||||
2023-07-08 21:45,0000
|
||||
2023-07-08 22:00,0000
|
||||
2023-07-08 22:30,0000
|
||||
2023-07-08 22:45,0000
|
||||
2023-07-08 23:00,0000
|
||||
2023-07-08 23:15,0000
|
||||
2023-07-08 23:30,0000
|
||||
2023-07-08 23:45,0000
|
67
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-8.dat
Normal file
67
aprs_utils/aprs_log/2023-07-08_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,67 @@
|
||||
2023-07-08 14:31,0011
|
||||
2023-07-08 14:31,0011
|
||||
2023-07-08 14:41,0011
|
||||
2023-07-08 14:41,0011
|
||||
2023-07-08 14:49,0011
|
||||
2023-07-08 14:51,0011
|
||||
2023-07-08 14:55,0011
|
||||
2023-07-08 14:57,0011
|
||||
2023-07-08 14:58,0011
|
||||
2023-07-08 14:58,0011
|
||||
2023-07-08 15:07,0011
|
||||
2023-07-08 15:14,0011
|
||||
2023-07-08 15:19,0011
|
||||
2023-07-08 15:30,0011
|
||||
2023-07-08 15:34,0011
|
||||
2023-07-08 15:37,0011
|
||||
2023-07-08 15:45,0011
|
||||
2023-07-08 15:46,0011
|
||||
2023-07-08 15:46,0011
|
||||
2023-07-08 15:47,0011
|
||||
2023-07-08 15:47,0011
|
||||
2023-07-08 15:48,0011
|
||||
2023-07-08 15:48,0011
|
||||
2023-07-08 15:50,0011
|
||||
2023-07-08 16:08,0011
|
||||
2023-07-08 16:10,0011
|
||||
2023-07-08 16:33,0011
|
||||
2023-07-08 16:34,0011
|
||||
2023-07-08 16:36,0011
|
||||
2023-07-08 16:37,0011
|
||||
2023-07-08 16:39,0011
|
||||
2023-07-08 16:40,0011
|
||||
2023-07-08 16:42,0011
|
||||
2023-07-08 16:43,0011
|
||||
2023-07-08 16:45,0011
|
||||
2023-07-08 16:46,0011
|
||||
2023-07-08 16:48,0011
|
||||
2023-07-08 16:49,0011
|
||||
2023-07-08 16:52,0011
|
||||
2023-07-08 16:54,0011
|
||||
2023-07-08 16:55,0011
|
||||
2023-07-08 16:57,0011
|
||||
2023-07-08 16:58,0011
|
||||
2023-07-08 17:01,0011
|
||||
2023-07-08 17:03,0011
|
||||
2023-07-08 17:20,0011
|
||||
2023-07-08 17:35,0011
|
||||
2023-07-08 17:50,0011
|
||||
2023-07-08 18:05,0011
|
||||
2023-07-08 18:20,0011
|
||||
2023-07-08 18:35,0011
|
||||
2023-07-08 18:50,0011
|
||||
2023-07-08 19:05,0011
|
||||
2023-07-08 19:20,0011
|
||||
2023-07-08 19:35,0011
|
||||
2023-07-08 20:05,0011
|
||||
2023-07-08 20:35,0011
|
||||
2023-07-08 20:50,0011
|
||||
2023-07-08 21:35,0011
|
||||
2023-07-08 21:50,0011
|
||||
2023-07-08 22:05,0011
|
||||
2023-07-08 22:20,0011
|
||||
2023-07-08 22:50,0011
|
||||
2023-07-08 23:05,0011
|
||||
2023-07-08 23:20,0011
|
||||
2023-07-08 23:35,0011
|
||||
2023-07-08 23:50,0011
|
76
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-5.dat
Normal file
76
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,76 @@
|
||||
2023-07-09 00:25,0111
|
||||
2023-07-09 00:40,0111
|
||||
2023-07-09 00:55,0111
|
||||
2023-07-09 01:10,0111
|
||||
2023-07-09 01:25,0111
|
||||
2023-07-09 01:40,0111
|
||||
2023-07-09 01:55,0111
|
||||
2023-07-09 02:10,0111
|
||||
2023-07-09 02:25,0111
|
||||
2023-07-09 02:40,0111
|
||||
2023-07-09 02:55,0111
|
||||
2023-07-09 03:10,0111
|
||||
2023-07-09 03:55,0111
|
||||
2023-07-09 04:10,0111
|
||||
2023-07-09 04:25,0111
|
||||
2023-07-09 04:40,0111
|
||||
2023-07-09 04:55,0111
|
||||
2023-07-09 05:10,0111
|
||||
2023-07-09 05:25,0111
|
||||
2023-07-09 05:40,0111
|
||||
2023-07-09 05:55,0111
|
||||
2023-07-09 06:25,0111
|
||||
2023-07-09 06:40,0111
|
||||
2023-07-09 07:10,0111
|
||||
2023-07-09 07:40,0111
|
||||
2023-07-09 07:55,0111
|
||||
2023-07-09 08:10,0111
|
||||
2023-07-09 08:25,0111
|
||||
2023-07-09 08:40,0111
|
||||
2023-07-09 08:55,0111
|
||||
2023-07-09 09:10,0111
|
||||
2023-07-09 09:40,0111
|
||||
2023-07-09 09:55,0111
|
||||
2023-07-09 10:10,0111
|
||||
2023-07-09 10:25,0111
|
||||
2023-07-09 10:55,0111
|
||||
2023-07-09 11:10,0111
|
||||
2023-07-09 11:25,0111
|
||||
2023-07-09 11:55,0111
|
||||
2023-07-09 12:10,0111
|
||||
2023-07-09 12:25,0111
|
||||
2023-07-09 12:55,0111
|
||||
2023-07-09 13:40,0111
|
||||
2023-07-09 13:55,0111
|
||||
2023-07-09 14:10,0111
|
||||
2023-07-09 14:25,0111
|
||||
2023-07-09 14:40,0111
|
||||
2023-07-09 14:55,0111
|
||||
2023-07-09 15:10,0111
|
||||
2023-07-09 15:25,0111
|
||||
2023-07-09 16:10,0111
|
||||
2023-07-09 16:25,0111
|
||||
2023-07-09 16:40,0111
|
||||
2023-07-09 16:55,0111
|
||||
2023-07-09 17:10,0111
|
||||
2023-07-09 17:25,0111
|
||||
2023-07-09 17:40,0111
|
||||
2023-07-09 17:55,0111
|
||||
2023-07-09 18:25,0111
|
||||
2023-07-09 18:55,0111
|
||||
2023-07-09 19:10,0111
|
||||
2023-07-09 19:25,0111
|
||||
2023-07-09 19:40,0111
|
||||
2023-07-09 19:55,0111
|
||||
2023-07-09 20:10,0111
|
||||
2023-07-09 20:40,0111
|
||||
2023-07-09 21:10,0111
|
||||
2023-07-09 21:25,0111
|
||||
2023-07-09 21:55,0111
|
||||
2023-07-09 22:10,0111
|
||||
2023-07-09 22:25,0111
|
||||
2023-07-09 22:40,0111
|
||||
2023-07-09 22:55,0111
|
||||
2023-07-09 23:10,0111
|
||||
2023-07-09 23:25,0111
|
||||
2023-07-09 23:40,0111
|
79
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-6.dat
Normal file
79
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,79 @@
|
||||
2023-07-09 00:15,0000
|
||||
2023-07-09 00:30,0000
|
||||
2023-07-09 00:45,0000
|
||||
2023-07-09 01:00,0000
|
||||
2023-07-09 01:15,0000
|
||||
2023-07-09 01:30,0000
|
||||
2023-07-09 01:45,0000
|
||||
2023-07-09 02:00,0000
|
||||
2023-07-09 02:15,0000
|
||||
2023-07-09 02:30,0000
|
||||
2023-07-09 02:45,0000
|
||||
2023-07-09 03:00,0000
|
||||
2023-07-09 03:15,0000
|
||||
2023-07-09 03:45,0000
|
||||
2023-07-09 04:00,0000
|
||||
2023-07-09 04:30,0000
|
||||
2023-07-09 04:45,0000
|
||||
2023-07-09 05:30,0000
|
||||
2023-07-09 05:45,0000
|
||||
2023-07-09 06:00,0000
|
||||
2023-07-09 06:30,0000
|
||||
2023-07-09 06:45,0000
|
||||
2023-07-09 07:00,0000
|
||||
2023-07-09 07:15,0000
|
||||
2023-07-09 07:30,0000
|
||||
2023-07-09 07:45,0000
|
||||
2023-07-09 08:00,0000
|
||||
2023-07-09 08:15,0000
|
||||
2023-07-09 08:30,0000
|
||||
2023-07-09 08:45,0000
|
||||
2023-07-09 09:15,0000
|
||||
2023-07-09 09:30,0000
|
||||
2023-07-09 09:45,0000
|
||||
2023-07-09 10:15,0000
|
||||
2023-07-09 10:30,0000
|
||||
2023-07-09 10:45,0000
|
||||
2023-07-09 11:00,0000
|
||||
2023-07-09 11:15,0000
|
||||
2023-07-09 11:45,0000
|
||||
2023-07-09 12:00,0000
|
||||
2023-07-09 12:15,0000
|
||||
2023-07-09 12:30,0000
|
||||
2023-07-09 12:45,0000
|
||||
2023-07-09 13:00,0000
|
||||
2023-07-09 13:15,0000
|
||||
2023-07-09 13:30,0000
|
||||
2023-07-09 13:45,0000
|
||||
2023-07-09 14:00,0000
|
||||
2023-07-09 14:15,0000
|
||||
2023-07-09 14:45,0000
|
||||
2023-07-09 15:00,0000
|
||||
2023-07-09 15:15,0000
|
||||
2023-07-09 15:30,0000
|
||||
2023-07-09 15:45,0000
|
||||
2023-07-09 16:00,0000
|
||||
2023-07-09 16:15,0000
|
||||
2023-07-09 16:30,0000
|
||||
2023-07-09 16:45,0000
|
||||
2023-07-09 17:00,0000
|
||||
2023-07-09 17:30,0000
|
||||
2023-07-09 18:15,0000
|
||||
2023-07-09 18:45,0000
|
||||
2023-07-09 19:00,0000
|
||||
2023-07-09 19:15,0000
|
||||
2023-07-09 19:30,0000
|
||||
2023-07-09 19:45,0000
|
||||
2023-07-09 20:15,0000
|
||||
2023-07-09 20:30,0000
|
||||
2023-07-09 20:45,0000
|
||||
2023-07-09 21:00,0000
|
||||
2023-07-09 21:15,0000
|
||||
2023-07-09 21:45,0000
|
||||
2023-07-09 22:00,0000
|
||||
2023-07-09 22:15,0000
|
||||
2023-07-09 22:30,0000
|
||||
2023-07-09 22:45,0000
|
||||
2023-07-09 23:00,0000
|
||||
2023-07-09 23:15,0000
|
||||
2023-07-09 23:45,0000
|
78
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-8.dat
Normal file
78
aprs_utils/aprs_log/2023-07-09_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-09 00:05,0011
|
||||
2023-07-09 00:20,0011
|
||||
2023-07-09 00:35,0011
|
||||
2023-07-09 00:50,0011
|
||||
2023-07-09 01:05,0011
|
||||
2023-07-09 01:35,0011
|
||||
2023-07-09 02:05,0011
|
||||
2023-07-09 02:35,0011
|
||||
2023-07-09 02:50,0011
|
||||
2023-07-09 03:05,0011
|
||||
2023-07-09 03:20,0011
|
||||
2023-07-09 03:35,0011
|
||||
2023-07-09 03:50,0011
|
||||
2023-07-09 04:05,0011
|
||||
2023-07-09 04:20,0011
|
||||
2023-07-09 04:35,0011
|
||||
2023-07-09 04:50,0011
|
||||
2023-07-09 05:05,0011
|
||||
2023-07-09 05:20,0011
|
||||
2023-07-09 05:35,0011
|
||||
2023-07-09 05:50,0011
|
||||
2023-07-09 06:05,0011
|
||||
2023-07-09 06:35,0011
|
||||
2023-07-09 07:05,0011
|
||||
2023-07-09 07:20,0011
|
||||
2023-07-09 07:50,0011
|
||||
2023-07-09 08:20,0011
|
||||
2023-07-09 08:35,0011
|
||||
2023-07-09 08:50,0011
|
||||
2023-07-09 09:05,0011
|
||||
2023-07-09 09:20,0011
|
||||
2023-07-09 09:35,0011
|
||||
2023-07-09 09:50,0011
|
||||
2023-07-09 10:05,0011
|
||||
2023-07-09 10:20,0011
|
||||
2023-07-09 10:35,0011
|
||||
2023-07-09 10:50,0011
|
||||
2023-07-09 11:05,0011
|
||||
2023-07-09 11:20,0011
|
||||
2023-07-09 11:50,0011
|
||||
2023-07-09 12:05,0011
|
||||
2023-07-09 12:20,0011
|
||||
2023-07-09 12:35,0011
|
||||
2023-07-09 13:05,0011
|
||||
2023-07-09 13:20,0011
|
||||
2023-07-09 14:05,0011
|
||||
2023-07-09 14:20,0011
|
||||
2023-07-09 14:50,0011
|
||||
2023-07-09 15:05,0011
|
||||
2023-07-09 15:20,0011
|
||||
2023-07-09 15:35,0011
|
||||
2023-07-09 15:50,0011
|
||||
2023-07-09 16:05,0011
|
||||
2023-07-09 16:20,0011
|
||||
2023-07-09 17:05,0011
|
||||
2023-07-09 17:20,0011
|
||||
2023-07-09 17:35,0011
|
||||
2023-07-09 18:05,0011
|
||||
2023-07-09 18:35,0011
|
||||
2023-07-09 18:50,0011
|
||||
2023-07-09 19:05,0011
|
||||
2023-07-09 19:20,0011
|
||||
2023-07-09 19:35,0011
|
||||
2023-07-09 20:05,0011
|
||||
2023-07-09 20:20,0011
|
||||
2023-07-09 20:35,0011
|
||||
2023-07-09 20:50,0011
|
||||
2023-07-09 21:05,0011
|
||||
2023-07-09 21:20,0011
|
||||
2023-07-09 21:35,0011
|
||||
2023-07-09 21:50,0011
|
||||
2023-07-09 22:05,0011
|
||||
2023-07-09 22:20,0011
|
||||
2023-07-09 22:50,0011
|
||||
2023-07-09 23:05,0011
|
||||
2023-07-09 23:20,0011
|
||||
2023-07-09 23:35,0011
|
||||
2023-07-09 23:50,0011
|
82
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-5.dat
Normal file
82
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,82 @@
|
||||
2023-07-10 00:10,0111
|
||||
2023-07-10 00:40,0111
|
||||
2023-07-10 00:55,0111
|
||||
2023-07-10 01:10,0111
|
||||
2023-07-10 01:25,0111
|
||||
2023-07-10 01:40,0111
|
||||
2023-07-10 01:55,0111
|
||||
2023-07-10 02:10,0111
|
||||
2023-07-10 02:25,0111
|
||||
2023-07-10 02:40,0111
|
||||
2023-07-10 03:10,0111
|
||||
2023-07-10 03:40,0111
|
||||
2023-07-10 04:10,0111
|
||||
2023-07-10 04:25,0111
|
||||
2023-07-10 04:40,0111
|
||||
2023-07-10 04:55,0111
|
||||
2023-07-10 05:10,0111
|
||||
2023-07-10 05:25,0111
|
||||
2023-07-10 05:40,0111
|
||||
2023-07-10 05:55,0111
|
||||
2023-07-10 06:10,0111
|
||||
2023-07-10 06:25,0111
|
||||
2023-07-10 06:40,0111
|
||||
2023-07-10 06:55,0111
|
||||
2023-07-10 07:10,0111
|
||||
2023-07-10 07:25,0111
|
||||
2023-07-10 07:55,0111
|
||||
2023-07-10 08:10,0111
|
||||
2023-07-10 08:40,0111
|
||||
2023-07-10 08:55,0111
|
||||
2023-07-10 09:10,0111
|
||||
2023-07-10 09:25,0111
|
||||
2023-07-10 09:40,0111
|
||||
2023-07-10 09:55,0111
|
||||
2023-07-10 10:10,0111
|
||||
2023-07-10 10:25,0111
|
||||
2023-07-10 10:40,0111
|
||||
2023-07-10 10:55,0111
|
||||
2023-07-10 11:10,0111
|
||||
2023-07-10 11:25,0111
|
||||
2023-07-10 11:40,0111
|
||||
2023-07-10 11:55,0111
|
||||
2023-07-10 12:10,0111
|
||||
2023-07-10 12:25,0111
|
||||
2023-07-10 12:40,0111
|
||||
2023-07-10 12:55,0111
|
||||
2023-07-10 13:10,0111
|
||||
2023-07-10 13:25,0111
|
||||
2023-07-10 13:40,0111
|
||||
2023-07-10 13:55,0111
|
||||
2023-07-10 14:25,0111
|
||||
2023-07-10 14:40,0111
|
||||
2023-07-10 14:55,0111
|
||||
2023-07-10 15:10,0111
|
||||
2023-07-10 15:40,0111
|
||||
2023-07-10 15:55,0111
|
||||
2023-07-10 16:10,0111
|
||||
2023-07-10 16:40,0111
|
||||
2023-07-10 16:55,0111
|
||||
2023-07-10 17:10,0111
|
||||
2023-07-10 17:40,0111
|
||||
2023-07-10 17:55,0111
|
||||
2023-07-10 18:10,0111
|
||||
2023-07-10 18:25,0111
|
||||
2023-07-10 18:40,0111
|
||||
2023-07-10 18:55,0111
|
||||
2023-07-10 19:10,0111
|
||||
2023-07-10 19:25,0111
|
||||
2023-07-10 19:40,0111
|
||||
2023-07-10 19:55,0111
|
||||
2023-07-10 20:10,0111
|
||||
2023-07-10 20:25,0111
|
||||
2023-07-10 21:10,0111
|
||||
2023-07-10 21:25,0111
|
||||
2023-07-10 21:55,0111
|
||||
2023-07-10 22:10,0111
|
||||
2023-07-10 22:25,0111
|
||||
2023-07-10 22:40,0111
|
||||
2023-07-10 22:55,0111
|
||||
2023-07-10 23:10,0111
|
||||
2023-07-10 23:25,0111
|
||||
2023-07-10 23:55,0111
|
77
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-6.dat
Normal file
77
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-10 00:00,0000
|
||||
2023-07-10 00:15,0000
|
||||
2023-07-10 00:30,0000
|
||||
2023-07-10 00:45,0000
|
||||
2023-07-10 01:15,0000
|
||||
2023-07-10 01:30,0000
|
||||
2023-07-10 01:45,0000
|
||||
2023-07-10 02:00,0000
|
||||
2023-07-10 02:15,0000
|
||||
2023-07-10 02:30,0000
|
||||
2023-07-10 02:45,0000
|
||||
2023-07-10 03:00,0000
|
||||
2023-07-10 03:15,0000
|
||||
2023-07-10 03:30,0000
|
||||
2023-07-10 03:45,0000
|
||||
2023-07-10 04:00,0000
|
||||
2023-07-10 04:15,0000
|
||||
2023-07-10 04:30,0000
|
||||
2023-07-10 04:45,0000
|
||||
2023-07-10 05:00,0000
|
||||
2023-07-10 05:15,0000
|
||||
2023-07-10 05:30,0000
|
||||
2023-07-10 05:45,0000
|
||||
2023-07-10 06:15,0000
|
||||
2023-07-10 06:30,0000
|
||||
2023-07-10 06:45,0000
|
||||
2023-07-10 07:00,0000
|
||||
2023-07-10 07:15,0000
|
||||
2023-07-10 07:30,0000
|
||||
2023-07-10 08:00,0000
|
||||
2023-07-10 08:15,0000
|
||||
2023-07-10 08:45,0000
|
||||
2023-07-10 09:00,0000
|
||||
2023-07-10 09:15,0000
|
||||
2023-07-10 09:30,0000
|
||||
2023-07-10 09:45,0000
|
||||
2023-07-10 10:15,0000
|
||||
2023-07-10 10:30,0000
|
||||
2023-07-10 11:00,0000
|
||||
2023-07-10 11:15,0000
|
||||
2023-07-10 11:45,0000
|
||||
2023-07-10 12:00,0000
|
||||
2023-07-10 12:15,0000
|
||||
2023-07-10 12:30,0000
|
||||
2023-07-10 12:45,0000
|
||||
2023-07-10 13:00,0000
|
||||
2023-07-10 13:15,0000
|
||||
2023-07-10 13:30,0000
|
||||
2023-07-10 13:45,0000
|
||||
2023-07-10 14:15,0000
|
||||
2023-07-10 14:30,0000
|
||||
2023-07-10 14:45,0000
|
||||
2023-07-10 15:00,0000
|
||||
2023-07-10 15:15,0000
|
||||
2023-07-10 15:30,0000
|
||||
2023-07-10 15:45,0000
|
||||
2023-07-10 16:15,0000
|
||||
2023-07-10 16:30,0000
|
||||
2023-07-10 16:45,0000
|
||||
2023-07-10 17:00,0000
|
||||
2023-07-10 17:15,0000
|
||||
2023-07-10 18:00,0000
|
||||
2023-07-10 19:00,0000
|
||||
2023-07-10 19:30,0000
|
||||
2023-07-10 19:45,0000
|
||||
2023-07-10 20:00,0000
|
||||
2023-07-10 20:15,0000
|
||||
2023-07-10 21:00,0000
|
||||
2023-07-10 21:15,0000
|
||||
2023-07-10 21:30,0000
|
||||
2023-07-10 21:45,0000
|
||||
2023-07-10 22:00,0000
|
||||
2023-07-10 22:15,0000
|
||||
2023-07-10 22:30,0000
|
||||
2023-07-10 22:45,0000
|
||||
2023-07-10 23:15,0000
|
||||
2023-07-10 23:45,0000
|
77
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-8.dat
Normal file
77
aprs_utils/aprs_log/2023-07-10_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-10 00:05,0011
|
||||
2023-07-10 00:20,0011
|
||||
2023-07-10 00:35,0011
|
||||
2023-07-10 00:50,0011
|
||||
2023-07-10 01:20,0011
|
||||
2023-07-10 01:35,0011
|
||||
2023-07-10 01:50,0011
|
||||
2023-07-10 02:20,0011
|
||||
2023-07-10 02:35,0011
|
||||
2023-07-10 02:50,0011
|
||||
2023-07-10 03:20,0011
|
||||
2023-07-10 03:35,0011
|
||||
2023-07-10 03:50,0011
|
||||
2023-07-10 04:05,0011
|
||||
2023-07-10 04:35,0011
|
||||
2023-07-10 04:50,0011
|
||||
2023-07-10 05:05,0011
|
||||
2023-07-10 05:35,0011
|
||||
2023-07-10 05:50,0011
|
||||
2023-07-10 06:05,0011
|
||||
2023-07-10 06:20,0011
|
||||
2023-07-10 06:35,0011
|
||||
2023-07-10 06:50,0011
|
||||
2023-07-10 07:05,0011
|
||||
2023-07-10 07:35,0011
|
||||
2023-07-10 07:50,0011
|
||||
2023-07-10 08:05,0011
|
||||
2023-07-10 08:20,0011
|
||||
2023-07-10 08:35,0011
|
||||
2023-07-10 08:50,0011
|
||||
2023-07-10 09:05,0011
|
||||
2023-07-10 09:20,0011
|
||||
2023-07-10 09:35,0011
|
||||
2023-07-10 09:50,0011
|
||||
2023-07-10 10:05,0011
|
||||
2023-07-10 10:20,0011
|
||||
2023-07-10 10:35,0011
|
||||
2023-07-10 11:05,0011
|
||||
2023-07-10 11:35,0011
|
||||
2023-07-10 11:50,0011
|
||||
2023-07-10 12:05,0011
|
||||
2023-07-10 12:20,0011
|
||||
2023-07-10 12:35,0011
|
||||
2023-07-10 12:50,0011
|
||||
2023-07-10 13:05,0011
|
||||
2023-07-10 13:50,0011
|
||||
2023-07-10 14:05,0011
|
||||
2023-07-10 14:20,0011
|
||||
2023-07-10 14:35,0011
|
||||
2023-07-10 14:50,0011
|
||||
2023-07-10 15:05,0011
|
||||
2023-07-10 15:20,0011
|
||||
2023-07-10 15:35,0011
|
||||
2023-07-10 16:05,0011
|
||||
2023-07-10 16:50,0011
|
||||
2023-07-10 17:05,0011
|
||||
2023-07-10 17:35,0011
|
||||
2023-07-10 17:50,0011
|
||||
2023-07-10 18:05,0011
|
||||
2023-07-10 18:20,0011
|
||||
2023-07-10 18:35,0011
|
||||
2023-07-10 18:50,0011
|
||||
2023-07-10 19:05,0011
|
||||
2023-07-10 19:35,0011
|
||||
2023-07-10 19:50,0011
|
||||
2023-07-10 20:05,0011
|
||||
2023-07-10 20:20,0011
|
||||
2023-07-10 20:35,0011
|
||||
2023-07-10 20:50,0011
|
||||
2023-07-10 21:05,0011
|
||||
2023-07-10 21:20,0011
|
||||
2023-07-10 21:50,0011
|
||||
2023-07-10 22:35,0011
|
||||
2023-07-10 22:50,0011
|
||||
2023-07-10 23:05,0011
|
||||
2023-07-10 23:35,0011
|
||||
2023-07-10 23:50,0011
|
80
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-5.dat
Normal file
80
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,80 @@
|
||||
2023-07-11 00:10,0111
|
||||
2023-07-11 00:25,0111
|
||||
2023-07-11 00:40,0111
|
||||
2023-07-11 00:55,0111
|
||||
2023-07-11 01:10,0111
|
||||
2023-07-11 01:25,0111
|
||||
2023-07-11 01:40,0111
|
||||
2023-07-11 01:55,0111
|
||||
2023-07-11 02:10,0111
|
||||
2023-07-11 02:25,0111
|
||||
2023-07-11 02:40,0111
|
||||
2023-07-11 02:55,0111
|
||||
2023-07-11 03:10,0111
|
||||
2023-07-11 03:25,0111
|
||||
2023-07-11 03:40,0111
|
||||
2023-07-11 03:55,0111
|
||||
2023-07-11 04:10,0111
|
||||
2023-07-11 04:40,0111
|
||||
2023-07-11 04:55,0111
|
||||
2023-07-11 05:25,0111
|
||||
2023-07-11 05:40,0111
|
||||
2023-07-11 05:55,0111
|
||||
2023-07-11 06:10,0111
|
||||
2023-07-11 06:25,0111
|
||||
2023-07-11 06:40,0111
|
||||
2023-07-11 06:55,0111
|
||||
2023-07-11 07:25,0111
|
||||
2023-07-11 07:55,0111
|
||||
2023-07-11 08:10,0111
|
||||
2023-07-11 08:40,0111
|
||||
2023-07-11 09:10,0111
|
||||
2023-07-11 09:25,0111
|
||||
2023-07-11 09:40,0111
|
||||
2023-07-11 09:55,0111
|
||||
2023-07-11 10:25,0111
|
||||
2023-07-11 10:40,0111
|
||||
2023-07-11 11:10,0111
|
||||
2023-07-11 11:25,0111
|
||||
2023-07-11 11:40,0111
|
||||
2023-07-11 11:55,0111
|
||||
2023-07-11 12:10,0111
|
||||
2023-07-11 12:25,0111
|
||||
2023-07-11 12:55,0111
|
||||
2023-07-11 13:10,0111
|
||||
2023-07-11 13:40,0111
|
||||
2023-07-11 13:55,0111
|
||||
2023-07-11 14:10,0111
|
||||
2023-07-11 14:25,0111
|
||||
2023-07-11 14:40,0111
|
||||
2023-07-11 14:55,0111
|
||||
2023-07-11 15:10,0111
|
||||
2023-07-11 15:25,0111
|
||||
2023-07-11 15:40,0111
|
||||
2023-07-11 15:55,0111
|
||||
2023-07-11 16:10,0111
|
||||
2023-07-11 16:55,0111
|
||||
2023-07-11 17:10,0111
|
||||
2023-07-11 17:25,0111
|
||||
2023-07-11 17:40,0111
|
||||
2023-07-11 17:55,0111
|
||||
2023-07-11 18:10,0111
|
||||
2023-07-11 18:25,0111
|
||||
2023-07-11 18:40,0111
|
||||
2023-07-11 18:55,0111
|
||||
2023-07-11 19:10,0111
|
||||
2023-07-11 19:25,0111
|
||||
2023-07-11 19:40,0111
|
||||
2023-07-11 19:55,0111
|
||||
2023-07-11 20:10,0111
|
||||
2023-07-11 20:25,0111
|
||||
2023-07-11 20:40,0111
|
||||
2023-07-11 20:55,0111
|
||||
2023-07-11 21:10,0111
|
||||
2023-07-11 21:25,0111
|
||||
2023-07-11 21:55,0111
|
||||
2023-07-11 22:10,0111
|
||||
2023-07-11 22:25,0111
|
||||
2023-07-11 22:40,0111
|
||||
2023-07-11 23:10,0111
|
||||
2023-07-11 23:25,0111
|
70
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-6.dat
Normal file
70
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,70 @@
|
||||
2023-07-11 00:00,0000
|
||||
2023-07-11 00:15,0000
|
||||
2023-07-11 00:30,0000
|
||||
2023-07-11 01:00,0000
|
||||
2023-07-11 01:15,0000
|
||||
2023-07-11 01:30,0000
|
||||
2023-07-11 01:45,0000
|
||||
2023-07-11 02:00,0000
|
||||
2023-07-11 02:45,0000
|
||||
2023-07-11 03:15,0000
|
||||
2023-07-11 03:45,0000
|
||||
2023-07-11 04:00,0000
|
||||
2023-07-11 04:30,0000
|
||||
2023-07-11 04:45,0000
|
||||
2023-07-11 05:00,0000
|
||||
2023-07-11 05:30,0000
|
||||
2023-07-11 05:45,0000
|
||||
2023-07-11 06:15,0000
|
||||
2023-07-11 06:30,0000
|
||||
2023-07-11 06:45,0000
|
||||
2023-07-11 07:00,0000
|
||||
2023-07-11 07:15,0000
|
||||
2023-07-11 07:30,0000
|
||||
2023-07-11 07:45,0000
|
||||
2023-07-11 08:00,0000
|
||||
2023-07-11 08:15,0000
|
||||
2023-07-11 08:45,0000
|
||||
2023-07-11 09:00,0000
|
||||
2023-07-11 09:15,0000
|
||||
2023-07-11 09:45,0000
|
||||
2023-07-11 10:00,0000
|
||||
2023-07-11 10:15,0000
|
||||
2023-07-11 10:30,0000
|
||||
2023-07-11 10:45,0000
|
||||
2023-07-11 11:00,0000
|
||||
2023-07-11 11:15,0000
|
||||
2023-07-11 11:30,0000
|
||||
2023-07-11 11:45,0000
|
||||
2023-07-11 12:15,0000
|
||||
2023-07-11 12:45,0000
|
||||
2023-07-11 13:00,0000
|
||||
2023-07-11 13:15,0000
|
||||
2023-07-11 13:30,0000
|
||||
2023-07-11 14:15,0000
|
||||
2023-07-11 14:30,0000
|
||||
2023-07-11 14:45,0000
|
||||
2023-07-11 15:30,0000
|
||||
2023-07-11 15:45,0000
|
||||
2023-07-11 16:00,0000
|
||||
2023-07-11 16:15,0000
|
||||
2023-07-11 17:00,0000
|
||||
2023-07-11 17:15,0000
|
||||
2023-07-11 17:30,0000
|
||||
2023-07-11 17:45,0000
|
||||
2023-07-11 18:00,0000
|
||||
2023-07-11 19:00,0000
|
||||
2023-07-11 19:15,0000
|
||||
2023-07-11 19:30,0000
|
||||
2023-07-11 19:45,0000
|
||||
2023-07-11 20:00,0000
|
||||
2023-07-11 20:15,0000
|
||||
2023-07-11 20:30,0000
|
||||
2023-07-11 20:45,0000
|
||||
2023-07-11 21:15,0000
|
||||
2023-07-11 21:45,0000
|
||||
2023-07-11 22:00,0000
|
||||
2023-07-11 22:15,0000
|
||||
2023-07-11 22:30,0000
|
||||
2023-07-11 23:00,0000
|
||||
2023-07-11 23:30,0000
|
74
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-8.dat
Normal file
74
aprs_utils/aprs_log/2023-07-11_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-11 00:05,0011
|
||||
2023-07-11 00:50,0011
|
||||
2023-07-11 01:20,0011
|
||||
2023-07-11 01:35,0011
|
||||
2023-07-11 01:50,0011
|
||||
2023-07-11 02:05,0011
|
||||
2023-07-11 02:20,0011
|
||||
2023-07-11 02:35,0011
|
||||
2023-07-11 02:50,0011
|
||||
2023-07-11 03:05,0011
|
||||
2023-07-11 03:20,0011
|
||||
2023-07-11 03:50,0011
|
||||
2023-07-11 04:20,0011
|
||||
2023-07-11 04:35,0011
|
||||
2023-07-11 04:50,0011
|
||||
2023-07-11 05:05,0011
|
||||
2023-07-11 05:20,0011
|
||||
2023-07-11 05:35,0011
|
||||
2023-07-11 05:50,0011
|
||||
2023-07-11 06:05,0011
|
||||
2023-07-11 06:20,0011
|
||||
2023-07-11 06:50,0011
|
||||
2023-07-11 07:05,0011
|
||||
2023-07-11 07:50,0011
|
||||
2023-07-11 08:05,0011
|
||||
2023-07-11 08:35,0011
|
||||
2023-07-11 08:50,0011
|
||||
2023-07-11 09:20,0011
|
||||
2023-07-11 09:35,0011
|
||||
2023-07-11 09:50,0011
|
||||
2023-07-11 10:05,0011
|
||||
2023-07-11 10:20,0011
|
||||
2023-07-11 10:50,0011
|
||||
2023-07-11 11:05,0011
|
||||
2023-07-11 11:20,0011
|
||||
2023-07-11 11:35,0011
|
||||
2023-07-11 11:50,0011
|
||||
2023-07-11 12:05,0011
|
||||
2023-07-11 12:20,0011
|
||||
2023-07-11 12:35,0011
|
||||
2023-07-11 12:50,0011
|
||||
2023-07-11 13:05,0011
|
||||
2023-07-11 13:35,0011
|
||||
2023-07-11 13:50,0011
|
||||
2023-07-11 14:05,0011
|
||||
2023-07-11 14:20,0011
|
||||
2023-07-11 14:50,0011
|
||||
2023-07-11 15:05,0011
|
||||
2023-07-11 15:20,0011
|
||||
2023-07-11 15:50,0011
|
||||
2023-07-11 16:20,0011
|
||||
2023-07-11 16:50,0011
|
||||
2023-07-11 17:05,0011
|
||||
2023-07-11 17:20,0011
|
||||
2023-07-11 17:35,0011
|
||||
2023-07-11 18:20,0011
|
||||
2023-07-11 18:35,0011
|
||||
2023-07-11 18:50,0011
|
||||
2023-07-11 19:35,0011
|
||||
2023-07-11 19:50,0011
|
||||
2023-07-11 20:05,0011
|
||||
2023-07-11 20:20,0011
|
||||
2023-07-11 20:50,0011
|
||||
2023-07-11 21:05,0011
|
||||
2023-07-11 21:20,0011
|
||||
2023-07-11 21:35,0011
|
||||
2023-07-11 21:50,0011
|
||||
2023-07-11 22:05,0011
|
||||
2023-07-11 22:20,0011
|
||||
2023-07-11 22:35,0011
|
||||
2023-07-11 22:50,0011
|
||||
2023-07-11 23:05,0011
|
||||
2023-07-11 23:20,0011
|
||||
2023-07-11 23:50,0011
|
82
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-5.dat
Normal file
82
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,82 @@
|
||||
2023-07-12 00:10,0111
|
||||
2023-07-12 00:25,0111
|
||||
2023-07-12 00:40,0111
|
||||
2023-07-12 00:55,0111
|
||||
2023-07-12 01:10,0111
|
||||
2023-07-12 01:25,0111
|
||||
2023-07-12 01:40,0111
|
||||
2023-07-12 01:55,0111
|
||||
2023-07-12 02:10,0111
|
||||
2023-07-12 02:40,0111
|
||||
2023-07-12 03:10,0111
|
||||
2023-07-12 03:25,0111
|
||||
2023-07-12 03:40,0111
|
||||
2023-07-12 03:55,0111
|
||||
2023-07-12 04:10,0111
|
||||
2023-07-12 04:25,0111
|
||||
2023-07-12 04:55,0111
|
||||
2023-07-12 05:10,0111
|
||||
2023-07-12 05:25,0111
|
||||
2023-07-12 05:40,0111
|
||||
2023-07-12 06:10,0111
|
||||
2023-07-12 06:40,0111
|
||||
2023-07-12 07:10,0111
|
||||
2023-07-12 07:25,0111
|
||||
2023-07-12 07:40,0111
|
||||
2023-07-12 07:55,0111
|
||||
2023-07-12 08:10,0111
|
||||
2023-07-12 08:25,0111
|
||||
2023-07-12 08:55,0111
|
||||
2023-07-12 09:10,0111
|
||||
2023-07-12 09:25,0111
|
||||
2023-07-12 09:55,0111
|
||||
2023-07-12 10:10,0111
|
||||
2023-07-12 10:25,0111
|
||||
2023-07-12 10:40,0111
|
||||
2023-07-12 10:55,0111
|
||||
2023-07-12 11:10,0111
|
||||
2023-07-12 11:25,0111
|
||||
2023-07-12 11:40,0111
|
||||
2023-07-12 11:55,0111
|
||||
2023-07-12 12:10,0111
|
||||
2023-07-12 12:25,0111
|
||||
2023-07-12 12:40,0111
|
||||
2023-07-12 13:10,0111
|
||||
2023-07-12 13:25,0111
|
||||
2023-07-12 13:40,0111
|
||||
2023-07-12 14:10,0111
|
||||
2023-07-12 14:25,0111
|
||||
2023-07-12 14:40,0111
|
||||
2023-07-12 15:10,0111
|
||||
2023-07-12 15:40,0111
|
||||
2023-07-12 15:55,0111
|
||||
2023-07-12 16:10,0111
|
||||
2023-07-12 16:25,0111
|
||||
2023-07-12 16:40,0111
|
||||
2023-07-12 16:55,0111
|
||||
2023-07-12 17:10,0111
|
||||
2023-07-12 17:25,0111
|
||||
2023-07-12 17:40,0111
|
||||
2023-07-12 17:55,0111
|
||||
2023-07-12 18:10,0111
|
||||
2023-07-12 18:25,0111
|
||||
2023-07-12 18:40,0111
|
||||
2023-07-12 18:55,0111
|
||||
2023-07-12 19:10,0111
|
||||
2023-07-12 19:25,0111
|
||||
2023-07-12 19:40,0111
|
||||
2023-07-12 20:10,0111
|
||||
2023-07-12 20:25,0111
|
||||
2023-07-12 20:40,0111
|
||||
2023-07-12 20:55,0111
|
||||
2023-07-12 21:10,0111
|
||||
2023-07-12 21:25,0111
|
||||
2023-07-12 21:40,0111
|
||||
2023-07-12 21:55,0111
|
||||
2023-07-12 22:10,0111
|
||||
2023-07-12 22:25,0111
|
||||
2023-07-12 22:55,0111
|
||||
2023-07-12 23:10,0111
|
||||
2023-07-12 23:25,0111
|
||||
2023-07-12 23:40,0111
|
||||
2023-07-12 23:55,0111
|
64
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-6.dat
Normal file
64
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,64 @@
|
||||
2023-07-12 00:15,0000
|
||||
2023-07-12 00:45,0000
|
||||
2023-07-12 01:15,0000
|
||||
2023-07-12 01:30,0000
|
||||
2023-07-12 01:45,0000
|
||||
2023-07-12 02:00,0000
|
||||
2023-07-12 02:15,0000
|
||||
2023-07-12 02:30,0000
|
||||
2023-07-12 02:45,0000
|
||||
2023-07-12 03:45,0000
|
||||
2023-07-12 04:15,0000
|
||||
2023-07-12 04:30,0000
|
||||
2023-07-12 04:45,0000
|
||||
2023-07-12 05:15,0000
|
||||
2023-07-12 05:30,0000
|
||||
2023-07-12 05:45,0000
|
||||
2023-07-12 06:00,0000
|
||||
2023-07-12 06:15,0000
|
||||
2023-07-12 07:15,0000
|
||||
2023-07-12 08:30,0000
|
||||
2023-07-12 08:45,0000
|
||||
2023-07-12 09:00,0000
|
||||
2023-07-12 09:15,0000
|
||||
2023-07-12 09:45,0000
|
||||
2023-07-12 10:15,0000
|
||||
2023-07-12 10:30,0000
|
||||
2023-07-12 10:45,0000
|
||||
2023-07-12 11:15,0000
|
||||
2023-07-12 11:30,0000
|
||||
2023-07-12 11:45,0000
|
||||
2023-07-12 12:00,0000
|
||||
2023-07-12 12:15,0000
|
||||
2023-07-12 13:15,0000
|
||||
2023-07-12 13:45,0000
|
||||
2023-07-12 14:00,0000
|
||||
2023-07-12 14:15,0000
|
||||
2023-07-12 14:30,0000
|
||||
2023-07-12 14:45,0000
|
||||
2023-07-12 15:00,0000
|
||||
2023-07-12 15:15,0000
|
||||
2023-07-12 15:45,0000
|
||||
2023-07-12 16:30,0000
|
||||
2023-07-12 16:45,0000
|
||||
2023-07-12 17:00,0000
|
||||
2023-07-12 17:15,0000
|
||||
2023-07-12 17:45,0000
|
||||
2023-07-12 18:15,0000
|
||||
2023-07-12 18:45,0000
|
||||
2023-07-12 19:00,0000
|
||||
2023-07-12 19:15,0000
|
||||
2023-07-12 19:30,0000
|
||||
2023-07-12 19:45,0000
|
||||
2023-07-12 20:00,0000
|
||||
2023-07-12 20:30,0000
|
||||
2023-07-12 20:45,0000
|
||||
2023-07-12 21:15,0000
|
||||
2023-07-12 21:45,0000
|
||||
2023-07-12 22:00,0000
|
||||
2023-07-12 22:15,0000
|
||||
2023-07-12 22:30,0000
|
||||
2023-07-12 22:45,0000
|
||||
2023-07-12 23:00,0000
|
||||
2023-07-12 23:15,0000
|
||||
2023-07-12 23:30,0000
|
74
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-8.dat
Normal file
74
aprs_utils/aprs_log/2023-07-12_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-12 00:05,0011
|
||||
2023-07-12 00:50,0011
|
||||
2023-07-12 01:05,0011
|
||||
2023-07-12 01:20,0011
|
||||
2023-07-12 01:35,0011
|
||||
2023-07-12 01:50,0011
|
||||
2023-07-12 02:05,0011
|
||||
2023-07-12 02:20,0011
|
||||
2023-07-12 02:35,0011
|
||||
2023-07-12 02:50,0011
|
||||
2023-07-12 03:05,0011
|
||||
2023-07-12 03:20,0011
|
||||
2023-07-12 03:35,0011
|
||||
2023-07-12 03:50,0011
|
||||
2023-07-12 04:05,0011
|
||||
2023-07-12 04:20,0011
|
||||
2023-07-12 04:35,0011
|
||||
2023-07-12 05:05,0011
|
||||
2023-07-12 05:20,0011
|
||||
2023-07-12 05:50,0011
|
||||
2023-07-12 06:20,0011
|
||||
2023-07-12 06:50,0011
|
||||
2023-07-12 07:05,0011
|
||||
2023-07-12 07:20,0011
|
||||
2023-07-12 07:44,0011
|
||||
2023-07-12 07:50,0011
|
||||
2023-07-12 08:20,0011
|
||||
2023-07-12 08:35,0011
|
||||
2023-07-12 08:50,0011
|
||||
2023-07-12 09:20,0011
|
||||
2023-07-12 09:50,0011
|
||||
2023-07-12 10:20,0011
|
||||
2023-07-12 10:35,0011
|
||||
2023-07-12 11:20,0011
|
||||
2023-07-12 11:35,0011
|
||||
2023-07-12 12:20,0011
|
||||
2023-07-12 12:35,0011
|
||||
2023-07-12 12:50,0011
|
||||
2023-07-12 13:20,0011
|
||||
2023-07-12 13:35,0011
|
||||
2023-07-12 13:50,0011
|
||||
2023-07-12 14:20,0011
|
||||
2023-07-12 14:35,0011
|
||||
2023-07-12 14:50,0011
|
||||
2023-07-12 15:05,0011
|
||||
2023-07-12 15:20,0011
|
||||
2023-07-12 15:35,0011
|
||||
2023-07-12 15:50,0011
|
||||
2023-07-12 16:20,0011
|
||||
2023-07-12 16:35,0011
|
||||
2023-07-12 16:50,0011
|
||||
2023-07-12 17:05,0011
|
||||
2023-07-12 17:20,0011
|
||||
2023-07-12 17:35,0011
|
||||
2023-07-12 17:50,0011
|
||||
2023-07-12 18:05,0011
|
||||
2023-07-12 18:35,0011
|
||||
2023-07-12 19:05,0011
|
||||
2023-07-12 19:20,0011
|
||||
2023-07-12 19:35,0011
|
||||
2023-07-12 19:50,0011
|
||||
2023-07-12 20:05,0011
|
||||
2023-07-12 20:20,0011
|
||||
2023-07-12 20:50,0011
|
||||
2023-07-12 21:05,0011
|
||||
2023-07-12 21:20,0011
|
||||
2023-07-12 21:35,0011
|
||||
2023-07-12 21:50,0011
|
||||
2023-07-12 22:20,0011
|
||||
2023-07-12 22:35,0011
|
||||
2023-07-12 23:05,0011
|
||||
2023-07-12 23:20,0011
|
||||
2023-07-12 23:35,0011
|
||||
2023-07-12 23:50,0011
|
73
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-5.dat
Normal file
73
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,73 @@
|
||||
2023-07-13 00:10,0111
|
||||
2023-07-13 00:25,0111
|
||||
2023-07-13 00:40,0111
|
||||
2023-07-13 00:55,0111
|
||||
2023-07-13 01:10,0111
|
||||
2023-07-13 01:25,0111
|
||||
2023-07-13 01:40,0111
|
||||
2023-07-13 01:55,0111
|
||||
2023-07-13 02:10,0111
|
||||
2023-07-13 02:40,0111
|
||||
2023-07-13 02:55,0111
|
||||
2023-07-13 03:10,0111
|
||||
2023-07-13 03:55,0111
|
||||
2023-07-13 04:10,0111
|
||||
2023-07-13 04:25,0111
|
||||
2023-07-13 04:40,0111
|
||||
2023-07-13 04:55,0111
|
||||
2023-07-13 05:10,0111
|
||||
2023-07-13 05:25,0111
|
||||
2023-07-13 05:55,0111
|
||||
2023-07-13 06:10,0111
|
||||
2023-07-13 06:25,0111
|
||||
2023-07-13 06:55,0111
|
||||
2023-07-13 07:25,0111
|
||||
2023-07-13 07:40,0111
|
||||
2023-07-13 08:10,0111
|
||||
2023-07-13 08:40,0111
|
||||
2023-07-13 09:10,0111
|
||||
2023-07-13 09:25,0111
|
||||
2023-07-13 09:40,0111
|
||||
2023-07-13 10:10,0111
|
||||
2023-07-13 10:25,0111
|
||||
2023-07-13 10:40,0111
|
||||
2023-07-13 11:25,0111
|
||||
2023-07-13 11:40,0111
|
||||
2023-07-13 12:10,0111
|
||||
2023-07-13 12:25,0111
|
||||
2023-07-13 12:40,0111
|
||||
2023-07-13 12:55,0111
|
||||
2023-07-13 13:10,0111
|
||||
2023-07-13 13:25,0111
|
||||
2023-07-13 13:55,0111
|
||||
2023-07-13 14:40,0111
|
||||
2023-07-13 14:55,0111
|
||||
2023-07-13 15:10,0111
|
||||
2023-07-13 15:25,0111
|
||||
2023-07-13 15:55,0111
|
||||
2023-07-13 16:10,0111
|
||||
2023-07-13 16:25,0111
|
||||
2023-07-13 16:40,0111
|
||||
2023-07-13 16:55,0111
|
||||
2023-07-13 17:10,0111
|
||||
2023-07-13 17:55,0111
|
||||
2023-07-13 18:10,0111
|
||||
2023-07-13 18:25,0111
|
||||
2023-07-13 18:40,0111
|
||||
2023-07-13 18:55,0111
|
||||
2023-07-13 19:10,0111
|
||||
2023-07-13 19:25,0111
|
||||
2023-07-13 19:55,0111
|
||||
2023-07-13 20:10,0111
|
||||
2023-07-13 20:25,0111
|
||||
2023-07-13 20:40,0111
|
||||
2023-07-13 20:55,0111
|
||||
2023-07-13 21:10,0111
|
||||
2023-07-13 21:25,0111
|
||||
2023-07-13 21:55,0111
|
||||
2023-07-13 22:10,0111
|
||||
2023-07-13 22:25,0111
|
||||
2023-07-13 22:55,0111
|
||||
2023-07-13 23:25,0111
|
||||
2023-07-13 23:40,0111
|
||||
2023-07-13 23:55,0111
|
69
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-6.dat
Normal file
69
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,69 @@
|
||||
2023-07-13 00:00,0000
|
||||
2023-07-13 00:45,0000
|
||||
2023-07-13 01:15,0000
|
||||
2023-07-13 01:30,0000
|
||||
2023-07-13 01:45,0000
|
||||
2023-07-13 02:00,0000
|
||||
2023-07-13 02:15,0000
|
||||
2023-07-13 02:30,0000
|
||||
2023-07-13 03:00,0000
|
||||
2023-07-13 03:15,0000
|
||||
2023-07-13 03:30,0000
|
||||
2023-07-13 03:45,0000
|
||||
2023-07-13 04:45,0000
|
||||
2023-07-13 05:00,0000
|
||||
2023-07-13 05:15,0000
|
||||
2023-07-13 05:30,0000
|
||||
2023-07-13 05:45,0000
|
||||
2023-07-13 06:15,0000
|
||||
2023-07-13 06:30,0000
|
||||
2023-07-13 06:45,0000
|
||||
2023-07-13 07:30,0000
|
||||
2023-07-13 07:45,0000
|
||||
2023-07-13 08:00,0000
|
||||
2023-07-13 08:15,0000
|
||||
2023-07-13 09:15,0000
|
||||
2023-07-13 09:45,0000
|
||||
2023-07-13 10:00,0000
|
||||
2023-07-13 10:30,0000
|
||||
2023-07-13 10:45,0000
|
||||
2023-07-13 11:00,0000
|
||||
2023-07-13 11:15,0000
|
||||
2023-07-13 11:30,0000
|
||||
2023-07-13 11:45,0000
|
||||
2023-07-13 12:00,0000
|
||||
2023-07-13 12:30,0000
|
||||
2023-07-13 12:45,0000
|
||||
2023-07-13 13:00,0000
|
||||
2023-07-13 13:15,0000
|
||||
2023-07-13 13:30,0000
|
||||
2023-07-13 13:45,0000
|
||||
2023-07-13 14:00,0000
|
||||
2023-07-13 14:15,0000
|
||||
2023-07-13 14:30,0000
|
||||
2023-07-13 14:45,0000
|
||||
2023-07-13 15:00,0000
|
||||
2023-07-13 15:30,0000
|
||||
2023-07-13 15:45,0000
|
||||
2023-07-13 16:45,0000
|
||||
2023-07-13 17:00,0000
|
||||
2023-07-13 17:30,0000
|
||||
2023-07-13 17:45,0000
|
||||
2023-07-13 18:15,0000
|
||||
2023-07-13 18:30,0000
|
||||
2023-07-13 18:45,0000
|
||||
2023-07-13 19:00,0000
|
||||
2023-07-13 19:15,0000
|
||||
2023-07-13 19:30,0000
|
||||
2023-07-13 19:45,0000
|
||||
2023-07-13 20:00,0000
|
||||
2023-07-13 20:15,0000
|
||||
2023-07-13 20:30,0000
|
||||
2023-07-13 20:45,0000
|
||||
2023-07-13 21:00,0000
|
||||
2023-07-13 21:45,0000
|
||||
2023-07-13 22:00,0000
|
||||
2023-07-13 22:15,0000
|
||||
2023-07-13 22:45,0000
|
||||
2023-07-13 23:30,0000
|
||||
2023-07-13 23:45,0000
|
77
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-8.dat
Normal file
77
aprs_utils/aprs_log/2023-07-13_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-13 00:05,0011
|
||||
2023-07-13 00:20,0011
|
||||
2023-07-13 00:35,0011
|
||||
2023-07-13 01:05,0011
|
||||
2023-07-13 01:20,0011
|
||||
2023-07-13 01:35,0011
|
||||
2023-07-13 01:50,0011
|
||||
2023-07-13 02:05,0011
|
||||
2023-07-13 02:20,0011
|
||||
2023-07-13 02:35,0011
|
||||
2023-07-13 02:50,0011
|
||||
2023-07-13 03:05,0011
|
||||
2023-07-13 03:20,0011
|
||||
2023-07-13 03:35,0011
|
||||
2023-07-13 03:50,0011
|
||||
2023-07-13 04:05,0011
|
||||
2023-07-13 04:20,0011
|
||||
2023-07-13 04:35,0011
|
||||
2023-07-13 04:50,0011
|
||||
2023-07-13 05:05,0011
|
||||
2023-07-13 05:20,0011
|
||||
2023-07-13 05:35,0011
|
||||
2023-07-13 05:50,0011
|
||||
2023-07-13 06:05,0011
|
||||
2023-07-13 06:20,0011
|
||||
2023-07-13 06:50,0011
|
||||
2023-07-13 07:20,0011
|
||||
2023-07-13 07:35,0011
|
||||
2023-07-13 07:50,0011
|
||||
2023-07-13 08:20,0011
|
||||
2023-07-13 08:35,0011
|
||||
2023-07-13 09:05,0011
|
||||
2023-07-13 09:20,0011
|
||||
2023-07-13 09:35,0011
|
||||
2023-07-13 09:50,0011
|
||||
2023-07-13 10:05,0011
|
||||
2023-07-13 10:20,0011
|
||||
2023-07-13 10:50,0011
|
||||
2023-07-13 11:05,0011
|
||||
2023-07-13 11:20,0011
|
||||
2023-07-13 11:35,0011
|
||||
2023-07-13 11:50,0011
|
||||
2023-07-13 12:05,0011
|
||||
2023-07-13 12:20,0011
|
||||
2023-07-13 12:50,0011
|
||||
2023-07-13 13:05,0011
|
||||
2023-07-13 13:35,0011
|
||||
2023-07-13 13:50,0011
|
||||
2023-07-13 14:20,0011
|
||||
2023-07-13 14:50,0011
|
||||
2023-07-13 15:05,0011
|
||||
2023-07-13 15:20,0011
|
||||
2023-07-13 15:35,0011
|
||||
2023-07-13 15:50,0011
|
||||
2023-07-13 16:05,0011
|
||||
2023-07-13 16:35,0011
|
||||
2023-07-13 16:50,0011
|
||||
2023-07-13 17:05,0011
|
||||
2023-07-13 17:20,0011
|
||||
2023-07-13 17:50,0011
|
||||
2023-07-13 18:05,0011
|
||||
2023-07-13 18:20,0011
|
||||
2023-07-13 18:35,0011
|
||||
2023-07-13 18:50,0011
|
||||
2023-07-13 19:05,0011
|
||||
2023-07-13 19:35,0011
|
||||
2023-07-13 19:50,0011
|
||||
2023-07-13 20:20,0011
|
||||
2023-07-13 21:20,0011
|
||||
2023-07-13 21:35,0011
|
||||
2023-07-13 21:50,0011
|
||||
2023-07-13 22:05,0011
|
||||
2023-07-13 22:20,0011
|
||||
2023-07-13 22:35,0011
|
||||
2023-07-13 23:20,0011
|
||||
2023-07-13 23:35,0011
|
||||
2023-07-13 23:50,0011
|
76
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-5.dat
Normal file
76
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,76 @@
|
||||
2023-07-14 00:10,0111
|
||||
2023-07-14 00:25,0111
|
||||
2023-07-14 00:40,0111
|
||||
2023-07-14 00:55,0111
|
||||
2023-07-14 01:25,0111
|
||||
2023-07-14 01:40,0111
|
||||
2023-07-14 01:55,0111
|
||||
2023-07-14 02:10,0111
|
||||
2023-07-14 02:25,0111
|
||||
2023-07-14 02:40,0111
|
||||
2023-07-14 02:55,0111
|
||||
2023-07-14 03:10,0111
|
||||
2023-07-14 03:25,0111
|
||||
2023-07-14 03:55,0111
|
||||
2023-07-14 04:10,0111
|
||||
2023-07-14 04:25,0111
|
||||
2023-07-14 04:55,0111
|
||||
2023-07-14 05:25,0111
|
||||
2023-07-14 05:40,0111
|
||||
2023-07-14 05:55,0111
|
||||
2023-07-14 06:10,0111
|
||||
2023-07-14 06:25,0111
|
||||
2023-07-14 06:40,0111
|
||||
2023-07-14 07:25,0111
|
||||
2023-07-14 07:40,0111
|
||||
2023-07-14 08:40,0111
|
||||
2023-07-14 08:55,0111
|
||||
2023-07-14 09:40,0111
|
||||
2023-07-14 10:10,0111
|
||||
2023-07-14 10:25,0111
|
||||
2023-07-14 10:55,0111
|
||||
2023-07-14 11:10,0111
|
||||
2023-07-14 11:55,0111
|
||||
2023-07-14 12:10,0111
|
||||
2023-07-14 12:25,0111
|
||||
2023-07-14 12:40,0111
|
||||
2023-07-14 12:55,0111
|
||||
2023-07-14 13:10,0111
|
||||
2023-07-14 13:25,0111
|
||||
2023-07-14 13:40,0111
|
||||
2023-07-14 13:55,0111
|
||||
2023-07-14 14:25,0111
|
||||
2023-07-14 14:40,0111
|
||||
2023-07-14 15:10,0111
|
||||
2023-07-14 15:25,0111
|
||||
2023-07-14 15:55,0111
|
||||
2023-07-14 16:10,0111
|
||||
2023-07-14 16:25,0111
|
||||
2023-07-14 16:40,0111
|
||||
2023-07-14 16:55,0111
|
||||
2023-07-14 17:10,0111
|
||||
2023-07-14 17:40,0111
|
||||
2023-07-14 17:55,0111
|
||||
2023-07-14 18:10,0111
|
||||
2023-07-14 18:25,0111
|
||||
2023-07-14 18:40,0111
|
||||
2023-07-14 18:55,0111
|
||||
2023-07-14 19:10,0111
|
||||
2023-07-14 19:25,0111
|
||||
2023-07-14 19:40,0111
|
||||
2023-07-14 20:10,0111
|
||||
2023-07-14 20:25,0111
|
||||
2023-07-14 20:40,0111
|
||||
2023-07-14 20:55,0111
|
||||
2023-07-14 21:10,0111
|
||||
2023-07-14 21:25,0111
|
||||
2023-07-14 21:40,0111
|
||||
2023-07-14 21:55,0111
|
||||
2023-07-14 22:10,0111
|
||||
2023-07-14 22:25,0111
|
||||
2023-07-14 22:40,0111
|
||||
2023-07-14 22:55,0111
|
||||
2023-07-14 23:10,0111
|
||||
2023-07-14 23:25,0111
|
||||
2023-07-14 23:40,0111
|
||||
2023-07-14 23:55,0111
|
73
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-6.dat
Normal file
73
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,73 @@
|
||||
2023-07-14 00:00,0000
|
||||
2023-07-14 00:15,0000
|
||||
2023-07-14 00:30,0000
|
||||
2023-07-14 00:45,0000
|
||||
2023-07-14 01:00,0000
|
||||
2023-07-14 01:15,0000
|
||||
2023-07-14 01:45,0000
|
||||
2023-07-14 02:00,0000
|
||||
2023-07-14 02:15,0000
|
||||
2023-07-14 02:30,0000
|
||||
2023-07-14 02:45,0000
|
||||
2023-07-14 03:00,0000
|
||||
2023-07-14 03:15,0000
|
||||
2023-07-14 03:45,0000
|
||||
2023-07-14 04:30,0000
|
||||
2023-07-14 04:45,0000
|
||||
2023-07-14 05:15,0000
|
||||
2023-07-14 05:30,0000
|
||||
2023-07-14 05:45,0000
|
||||
2023-07-14 06:00,0000
|
||||
2023-07-14 06:15,0000
|
||||
2023-07-14 06:45,0000
|
||||
2023-07-14 07:00,0000
|
||||
2023-07-14 07:15,0000
|
||||
2023-07-14 07:30,0000
|
||||
2023-07-14 07:45,0000
|
||||
2023-07-14 08:00,0000
|
||||
2023-07-14 08:15,0000
|
||||
2023-07-14 08:30,0000
|
||||
2023-07-14 08:45,0000
|
||||
2023-07-14 09:00,0000
|
||||
2023-07-14 09:15,0000
|
||||
2023-07-14 09:30,0000
|
||||
2023-07-14 10:00,0000
|
||||
2023-07-14 10:30,0000
|
||||
2023-07-14 11:00,0000
|
||||
2023-07-14 11:30,0000
|
||||
2023-07-14 11:45,0000
|
||||
2023-07-14 12:15,0000
|
||||
2023-07-14 12:30,0000
|
||||
2023-07-14 13:00,0000
|
||||
2023-07-14 13:15,0000
|
||||
2023-07-14 13:45,0000
|
||||
2023-07-14 14:15,0000
|
||||
2023-07-14 14:45,0000
|
||||
2023-07-14 15:00,0000
|
||||
2023-07-14 15:15,0000
|
||||
2023-07-14 15:30,0000
|
||||
2023-07-14 15:45,0000
|
||||
2023-07-14 16:00,0000
|
||||
2023-07-14 16:15,0000
|
||||
2023-07-14 16:30,0000
|
||||
2023-07-14 16:45,0000
|
||||
2023-07-14 17:00,0000
|
||||
2023-07-14 17:15,0000
|
||||
2023-07-14 17:30,0000
|
||||
2023-07-14 17:45,0000
|
||||
2023-07-14 18:45,0000
|
||||
2023-07-14 19:30,0000
|
||||
2023-07-14 19:45,0000
|
||||
2023-07-14 20:15,0000
|
||||
2023-07-14 20:30,0000
|
||||
2023-07-14 20:45,0000
|
||||
2023-07-14 21:00,0000
|
||||
2023-07-14 21:15,0000
|
||||
2023-07-14 21:30,0000
|
||||
2023-07-14 21:45,0000
|
||||
2023-07-14 22:00,0000
|
||||
2023-07-14 22:15,0000
|
||||
2023-07-14 22:30,0000
|
||||
2023-07-14 23:00,0000
|
||||
2023-07-14 23:15,0000
|
||||
2023-07-14 23:30,0000
|
74
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-8.dat
Normal file
74
aprs_utils/aprs_log/2023-07-14_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-14 00:20,0011
|
||||
2023-07-14 01:20,0011
|
||||
2023-07-14 01:35,0011
|
||||
2023-07-14 01:50,0011
|
||||
2023-07-14 02:05,0011
|
||||
2023-07-14 02:35,0011
|
||||
2023-07-14 02:50,0011
|
||||
2023-07-14 03:05,0011
|
||||
2023-07-14 03:20,0011
|
||||
2023-07-14 03:35,0011
|
||||
2023-07-14 03:50,0011
|
||||
2023-07-14 04:05,0011
|
||||
2023-07-14 04:20,0011
|
||||
2023-07-14 04:50,0011
|
||||
2023-07-14 05:05,0011
|
||||
2023-07-14 05:20,0011
|
||||
2023-07-14 05:35,0011
|
||||
2023-07-14 05:50,0011
|
||||
2023-07-14 06:05,0011
|
||||
2023-07-14 06:35,0011
|
||||
2023-07-14 06:50,0011
|
||||
2023-07-14 07:05,0011
|
||||
2023-07-14 07:35,0011
|
||||
2023-07-14 07:50,0011
|
||||
2023-07-14 08:05,0011
|
||||
2023-07-14 08:20,0011
|
||||
2023-07-14 08:35,0011
|
||||
2023-07-14 08:50,0011
|
||||
2023-07-14 09:05,0011
|
||||
2023-07-14 09:35,0011
|
||||
2023-07-14 09:50,0011
|
||||
2023-07-14 10:05,0011
|
||||
2023-07-14 10:20,0011
|
||||
2023-07-14 10:35,0011
|
||||
2023-07-14 10:50,0011
|
||||
2023-07-14 11:05,0011
|
||||
2023-07-14 11:20,0011
|
||||
2023-07-14 11:35,0011
|
||||
2023-07-14 11:50,0011
|
||||
2023-07-14 12:05,0011
|
||||
2023-07-14 12:20,0011
|
||||
2023-07-14 12:35,0011
|
||||
2023-07-14 12:50,0011
|
||||
2023-07-14 13:05,0011
|
||||
2023-07-14 13:35,0011
|
||||
2023-07-14 13:50,0011
|
||||
2023-07-14 14:05,0011
|
||||
2023-07-14 15:05,0011
|
||||
2023-07-14 15:20,0011
|
||||
2023-07-14 15:35,0011
|
||||
2023-07-14 15:50,0011
|
||||
2023-07-14 16:05,0011
|
||||
2023-07-14 16:50,0011
|
||||
2023-07-14 17:35,0011
|
||||
2023-07-14 17:50,0011
|
||||
2023-07-14 18:05,0011
|
||||
2023-07-14 18:20,0011
|
||||
2023-07-14 18:35,0011
|
||||
2023-07-14 18:50,0011
|
||||
2023-07-14 19:20,0011
|
||||
2023-07-14 19:35,0011
|
||||
2023-07-14 19:50,0011
|
||||
2023-07-14 20:05,0011
|
||||
2023-07-14 20:20,0011
|
||||
2023-07-14 20:35,0011
|
||||
2023-07-14 20:50,0011
|
||||
2023-07-14 21:05,0011
|
||||
2023-07-14 21:35,0011
|
||||
2023-07-14 21:50,0011
|
||||
2023-07-14 22:05,0011
|
||||
2023-07-14 22:20,0011
|
||||
2023-07-14 22:35,0011
|
||||
2023-07-14 23:05,0011
|
||||
2023-07-14 23:35,0011
|
73
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-5.dat
Normal file
73
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,73 @@
|
||||
2023-07-15 00:10,0111
|
||||
2023-07-15 00:25,0111
|
||||
2023-07-15 00:40,0111
|
||||
2023-07-15 00:55,0111
|
||||
2023-07-15 01:10,0111
|
||||
2023-07-15 01:25,0111
|
||||
2023-07-15 01:40,0111
|
||||
2023-07-15 02:40,0111
|
||||
2023-07-15 02:55,0111
|
||||
2023-07-15 03:10,0111
|
||||
2023-07-15 03:25,0111
|
||||
2023-07-15 03:55,0111
|
||||
2023-07-15 04:10,0111
|
||||
2023-07-15 04:25,0111
|
||||
2023-07-15 04:40,0111
|
||||
2023-07-15 04:55,0111
|
||||
2023-07-15 05:25,0111
|
||||
2023-07-15 05:40,0111
|
||||
2023-07-15 05:55,0111
|
||||
2023-07-15 06:10,0111
|
||||
2023-07-15 06:55,0111
|
||||
2023-07-15 07:10,0111
|
||||
2023-07-15 07:25,0111
|
||||
2023-07-15 07:40,0111
|
||||
2023-07-15 07:55,0111
|
||||
2023-07-15 08:10,0111
|
||||
2023-07-15 08:25,0111
|
||||
2023-07-15 08:40,0111
|
||||
2023-07-15 08:55,0111
|
||||
2023-07-15 09:10,0111
|
||||
2023-07-15 09:25,0111
|
||||
2023-07-15 09:55,0111
|
||||
2023-07-15 10:10,0111
|
||||
2023-07-15 10:25,0111
|
||||
2023-07-15 11:10,0111
|
||||
2023-07-15 11:25,0111
|
||||
2023-07-15 11:55,0111
|
||||
2023-07-15 12:10,0111
|
||||
2023-07-15 12:25,0111
|
||||
2023-07-15 13:10,0111
|
||||
2023-07-15 13:40,0111
|
||||
2023-07-15 14:10,0111
|
||||
2023-07-15 14:55,0111
|
||||
2023-07-15 15:10,0111
|
||||
2023-07-15 15:25,0111
|
||||
2023-07-15 15:40,0111
|
||||
2023-07-15 16:10,0111
|
||||
2023-07-15 16:25,0111
|
||||
2023-07-15 16:40,0111
|
||||
2023-07-15 16:55,0111
|
||||
2023-07-15 17:10,0111
|
||||
2023-07-15 17:25,0111
|
||||
2023-07-15 17:40,0111
|
||||
2023-07-15 17:55,0111
|
||||
2023-07-15 18:10,0111
|
||||
2023-07-15 18:25,0111
|
||||
2023-07-15 18:40,0111
|
||||
2023-07-15 19:10,0111
|
||||
2023-07-15 19:25,0111
|
||||
2023-07-15 19:40,0111
|
||||
2023-07-15 20:05,0111
|
||||
2023-07-15 20:10,0111
|
||||
2023-07-15 20:25,0111
|
||||
2023-07-15 20:40,0111
|
||||
2023-07-15 20:55,0111
|
||||
2023-07-15 21:10,0111
|
||||
2023-07-15 21:40,0111
|
||||
2023-07-15 22:25,0111
|
||||
2023-07-15 22:55,0111
|
||||
2023-07-15 23:10,0111
|
||||
2023-07-15 23:25,0111
|
||||
2023-07-15 23:40,0111
|
||||
2023-07-15 23:55,0111
|
77
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-6.dat
Normal file
77
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-15 00:00,0000
|
||||
2023-07-15 00:30,0000
|
||||
2023-07-15 00:45,0000
|
||||
2023-07-15 01:30,0000
|
||||
2023-07-15 01:45,0000
|
||||
2023-07-15 02:00,0000
|
||||
2023-07-15 02:15,0000
|
||||
2023-07-15 02:30,0000
|
||||
2023-07-15 02:45,0000
|
||||
2023-07-15 03:00,0000
|
||||
2023-07-15 03:15,0000
|
||||
2023-07-15 03:30,0000
|
||||
2023-07-15 03:45,0000
|
||||
2023-07-15 04:00,0000
|
||||
2023-07-15 04:15,0000
|
||||
2023-07-15 04:45,0000
|
||||
2023-07-15 05:00,0000
|
||||
2023-07-15 05:15,0000
|
||||
2023-07-15 05:45,0000
|
||||
2023-07-15 06:30,0000
|
||||
2023-07-15 06:45,0000
|
||||
2023-07-15 07:00,0000
|
||||
2023-07-15 07:15,0000
|
||||
2023-07-15 07:30,0000
|
||||
2023-07-15 07:45,0000
|
||||
2023-07-15 08:00,0000
|
||||
2023-07-15 08:15,0000
|
||||
2023-07-15 08:30,0000
|
||||
2023-07-15 08:45,0000
|
||||
2023-07-15 09:00,0000
|
||||
2023-07-15 09:15,0000
|
||||
2023-07-15 09:30,0000
|
||||
2023-07-15 09:45,0000
|
||||
2023-07-15 10:15,0000
|
||||
2023-07-15 10:45,0000
|
||||
2023-07-15 11:00,0000
|
||||
2023-07-15 11:15,0000
|
||||
2023-07-15 11:30,0000
|
||||
2023-07-15 11:45,0000
|
||||
2023-07-15 12:00,0000
|
||||
2023-07-15 12:15,0000
|
||||
2023-07-15 12:30,0000
|
||||
2023-07-15 12:45,0000
|
||||
2023-07-15 13:15,0000
|
||||
2023-07-15 13:30,0000
|
||||
2023-07-15 13:45,0000
|
||||
2023-07-15 14:00,0000
|
||||
2023-07-15 14:15,0000
|
||||
2023-07-15 14:30,0000
|
||||
2023-07-15 14:45,0000
|
||||
2023-07-15 15:00,0000
|
||||
2023-07-15 15:15,0000
|
||||
2023-07-15 16:15,0000
|
||||
2023-07-15 16:30,0000
|
||||
2023-07-15 16:45,0000
|
||||
2023-07-15 17:15,0000
|
||||
2023-07-15 17:30,0000
|
||||
2023-07-15 17:45,0000
|
||||
2023-07-15 18:00,0000
|
||||
2023-07-15 18:15,0000
|
||||
2023-07-15 18:45,0000
|
||||
2023-07-15 19:15,0000
|
||||
2023-07-15 19:30,0000
|
||||
2023-07-15 19:45,0000
|
||||
2023-07-15 20:00,0000
|
||||
2023-07-15 20:15,0000
|
||||
2023-07-15 20:30,0000
|
||||
2023-07-15 20:45,0000
|
||||
2023-07-15 21:00,0000
|
||||
2023-07-15 21:15,0000
|
||||
2023-07-15 21:30,0000
|
||||
2023-07-15 21:45,0000
|
||||
2023-07-15 22:15,0000
|
||||
2023-07-15 23:00,0000
|
||||
2023-07-15 23:15,0000
|
||||
2023-07-15 23:30,0000
|
||||
2023-07-15 23:45,0000
|
77
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-8.dat
Normal file
77
aprs_utils/aprs_log/2023-07-15_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-15 00:05,0011
|
||||
2023-07-15 00:20,0011
|
||||
2023-07-15 00:50,0011
|
||||
2023-07-15 01:20,0011
|
||||
2023-07-15 01:35,0011
|
||||
2023-07-15 01:50,0011
|
||||
2023-07-15 02:05,0011
|
||||
2023-07-15 02:20,0011
|
||||
2023-07-15 02:35,0011
|
||||
2023-07-15 03:05,0011
|
||||
2023-07-15 03:20,0011
|
||||
2023-07-15 03:35,0011
|
||||
2023-07-15 03:50,0011
|
||||
2023-07-15 04:05,0011
|
||||
2023-07-15 04:35,0011
|
||||
2023-07-15 04:50,0011
|
||||
2023-07-15 05:05,0011
|
||||
2023-07-15 05:20,0011
|
||||
2023-07-15 05:35,0011
|
||||
2023-07-15 05:50,0011
|
||||
2023-07-15 06:05,0011
|
||||
2023-07-15 06:20,0011
|
||||
2023-07-15 06:35,0011
|
||||
2023-07-15 06:50,0011
|
||||
2023-07-15 07:05,0011
|
||||
2023-07-15 07:20,0011
|
||||
2023-07-15 07:35,0011
|
||||
2023-07-15 07:50,0011
|
||||
2023-07-15 08:05,0011
|
||||
2023-07-15 08:35,0011
|
||||
2023-07-15 08:50,0011
|
||||
2023-07-15 09:20,0011
|
||||
2023-07-15 09:35,0011
|
||||
2023-07-15 09:50,0011
|
||||
2023-07-15 10:20,0011
|
||||
2023-07-15 10:35,0011
|
||||
2023-07-15 10:50,0011
|
||||
2023-07-15 11:05,0011
|
||||
2023-07-15 11:20,0011
|
||||
2023-07-15 11:35,0011
|
||||
2023-07-15 12:05,0011
|
||||
2023-07-15 12:35,0011
|
||||
2023-07-15 13:35,0011
|
||||
2023-07-15 14:05,0011
|
||||
2023-07-15 14:20,0011
|
||||
2023-07-15 14:35,0011
|
||||
2023-07-15 14:50,0011
|
||||
2023-07-15 15:05,0011
|
||||
2023-07-15 15:20,0011
|
||||
2023-07-15 15:50,0011
|
||||
2023-07-15 16:05,0011
|
||||
2023-07-15 16:35,0011
|
||||
2023-07-15 16:50,0011
|
||||
2023-07-15 17:05,0011
|
||||
2023-07-15 17:20,0011
|
||||
2023-07-15 17:35,0011
|
||||
2023-07-15 17:50,0011
|
||||
2023-07-15 18:05,0011
|
||||
2023-07-15 18:20,0011
|
||||
2023-07-15 18:50,0011
|
||||
2023-07-15 19:05,0011
|
||||
2023-07-15 19:20,0011
|
||||
2023-07-15 19:50,0011
|
||||
2023-07-15 20:05,0011
|
||||
2023-07-15 20:20,0011
|
||||
2023-07-15 20:35,0011
|
||||
2023-07-15 20:50,0011
|
||||
2023-07-15 21:05,0011
|
||||
2023-07-15 21:35,0011
|
||||
2023-07-15 21:50,0011
|
||||
2023-07-15 22:05,0011
|
||||
2023-07-15 22:20,0011
|
||||
2023-07-15 22:35,0011
|
||||
2023-07-15 22:50,0011
|
||||
2023-07-15 23:05,0011
|
||||
2023-07-15 23:20,0011
|
||||
2023-07-15 23:50,0011
|
74
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-5.dat
Normal file
74
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-16 00:25,0111
|
||||
2023-07-16 01:25,0111
|
||||
2023-07-16 01:40,0111
|
||||
2023-07-16 01:55,0111
|
||||
2023-07-16 02:10,0111
|
||||
2023-07-16 02:25,0111
|
||||
2023-07-16 02:40,0111
|
||||
2023-07-16 02:55,0111
|
||||
2023-07-16 03:25,0111
|
||||
2023-07-16 03:40,0111
|
||||
2023-07-16 04:10,0111
|
||||
2023-07-16 04:25,0111
|
||||
2023-07-16 04:40,0111
|
||||
2023-07-16 05:10,0111
|
||||
2023-07-16 05:25,0111
|
||||
2023-07-16 05:40,0111
|
||||
2023-07-16 05:55,0111
|
||||
2023-07-16 06:10,0111
|
||||
2023-07-16 06:25,0111
|
||||
2023-07-16 06:40,0111
|
||||
2023-07-16 06:55,0111
|
||||
2023-07-16 07:10,0111
|
||||
2023-07-16 07:40,0111
|
||||
2023-07-16 07:55,0111
|
||||
2023-07-16 08:10,0111
|
||||
2023-07-16 08:25,0111
|
||||
2023-07-16 08:40,0111
|
||||
2023-07-16 08:55,0111
|
||||
2023-07-16 09:10,0111
|
||||
2023-07-16 09:25,0111
|
||||
2023-07-16 10:10,0111
|
||||
2023-07-16 10:25,0111
|
||||
2023-07-16 10:40,0111
|
||||
2023-07-16 10:55,0111
|
||||
2023-07-16 11:25,0111
|
||||
2023-07-16 11:55,0111
|
||||
2023-07-16 12:10,0111
|
||||
2023-07-16 12:25,0111
|
||||
2023-07-16 12:40,0111
|
||||
2023-07-16 12:55,0111
|
||||
2023-07-16 13:10,0111
|
||||
2023-07-16 13:25,0111
|
||||
2023-07-16 13:55,0111
|
||||
2023-07-16 14:10,0111
|
||||
2023-07-16 14:25,0111
|
||||
2023-07-16 14:40,0111
|
||||
2023-07-16 14:55,0111
|
||||
2023-07-16 15:25,0111
|
||||
2023-07-16 15:55,0111
|
||||
2023-07-16 16:25,0111
|
||||
2023-07-16 16:40,0111
|
||||
2023-07-16 16:55,0111
|
||||
2023-07-16 17:25,0111
|
||||
2023-07-16 17:40,0111
|
||||
2023-07-16 17:55,0111
|
||||
2023-07-16 18:25,0111
|
||||
2023-07-16 18:40,0111
|
||||
2023-07-16 18:55,0111
|
||||
2023-07-16 19:10,0111
|
||||
2023-07-16 19:40,0111
|
||||
2023-07-16 19:55,0111
|
||||
2023-07-16 20:25,0111
|
||||
2023-07-16 20:55,0111
|
||||
2023-07-16 21:25,0111
|
||||
2023-07-16 21:40,0111
|
||||
2023-07-16 21:55,0111
|
||||
2023-07-16 22:10,0111
|
||||
2023-07-16 22:25,0111
|
||||
2023-07-16 22:40,0111
|
||||
2023-07-16 22:55,0111
|
||||
2023-07-16 23:10,0111
|
||||
2023-07-16 23:25,0111
|
||||
2023-07-16 23:40,0111
|
||||
2023-07-16 23:55,0111
|
81
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-6.dat
Normal file
81
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,81 @@
|
||||
2023-07-16 00:00,0000
|
||||
2023-07-16 00:15,0000
|
||||
2023-07-16 00:45,0000
|
||||
2023-07-16 01:00,0000
|
||||
2023-07-16 01:15,0000
|
||||
2023-07-16 01:30,0000
|
||||
2023-07-16 01:45,0000
|
||||
2023-07-16 02:00,0000
|
||||
2023-07-16 02:15,0000
|
||||
2023-07-16 02:30,0000
|
||||
2023-07-16 02:45,0000
|
||||
2023-07-16 03:00,0000
|
||||
2023-07-16 03:15,0000
|
||||
2023-07-16 03:30,0000
|
||||
2023-07-16 03:45,0000
|
||||
2023-07-16 04:00,0000
|
||||
2023-07-16 04:15,0000
|
||||
2023-07-16 04:30,0000
|
||||
2023-07-16 04:45,0000
|
||||
2023-07-16 05:00,0000
|
||||
2023-07-16 05:30,0000
|
||||
2023-07-16 05:45,0000
|
||||
2023-07-16 06:00,0000
|
||||
2023-07-16 06:30,0000
|
||||
2023-07-16 06:45,0000
|
||||
2023-07-16 07:00,0000
|
||||
2023-07-16 07:15,0000
|
||||
2023-07-16 07:30,0000
|
||||
2023-07-16 07:45,0000
|
||||
2023-07-16 08:00,0000
|
||||
2023-07-16 08:15,0000
|
||||
2023-07-16 08:45,0000
|
||||
2023-07-16 09:00,0000
|
||||
2023-07-16 09:15,0000
|
||||
2023-07-16 09:45,0000
|
||||
2023-07-16 10:00,0000
|
||||
2023-07-16 10:15,0000
|
||||
2023-07-16 10:45,0000
|
||||
2023-07-16 11:00,0000
|
||||
2023-07-16 11:15,0000
|
||||
2023-07-16 11:30,0000
|
||||
2023-07-16 11:45,0000
|
||||
2023-07-16 12:00,0000
|
||||
2023-07-16 12:15,0000
|
||||
2023-07-16 12:30,0000
|
||||
2023-07-16 12:45,0000
|
||||
2023-07-16 13:00,0000
|
||||
2023-07-16 13:15,0000
|
||||
2023-07-16 13:45,0000
|
||||
2023-07-16 14:00,0000
|
||||
2023-07-16 14:15,0000
|
||||
2023-07-16 14:30,0000
|
||||
2023-07-16 14:45,0000
|
||||
2023-07-16 15:30,0000
|
||||
2023-07-16 15:45,0000
|
||||
2023-07-16 16:00,0000
|
||||
2023-07-16 16:15,0000
|
||||
2023-07-16 16:30,0000
|
||||
2023-07-16 16:45,0000
|
||||
2023-07-16 17:15,0000
|
||||
2023-07-16 17:30,0000
|
||||
2023-07-16 17:45,0000
|
||||
2023-07-16 18:00,0000
|
||||
2023-07-16 18:15,0000
|
||||
2023-07-16 18:30,0000
|
||||
2023-07-16 18:45,0000
|
||||
2023-07-16 19:00,0000
|
||||
2023-07-16 19:30,0000
|
||||
2023-07-16 19:45,0000
|
||||
2023-07-16 20:00,0000
|
||||
2023-07-16 20:30,0000
|
||||
2023-07-16 20:45,0000
|
||||
2023-07-16 21:15,0000
|
||||
2023-07-16 21:30,0000
|
||||
2023-07-16 21:45,0000
|
||||
2023-07-16 22:00,0000
|
||||
2023-07-16 22:30,0000
|
||||
2023-07-16 22:45,0000
|
||||
2023-07-16 23:15,0000
|
||||
2023-07-16 23:30,0000
|
||||
2023-07-16 23:45,0000
|
81
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-8.dat
Normal file
81
aprs_utils/aprs_log/2023-07-16_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,81 @@
|
||||
2023-07-16 00:05,0011
|
||||
2023-07-16 00:20,0011
|
||||
2023-07-16 00:35,0011
|
||||
2023-07-16 00:50,0011
|
||||
2023-07-16 01:05,0011
|
||||
2023-07-16 01:20,0011
|
||||
2023-07-16 01:35,0011
|
||||
2023-07-16 01:50,0011
|
||||
2023-07-16 02:05,0011
|
||||
2023-07-16 02:20,0011
|
||||
2023-07-16 02:35,0011
|
||||
2023-07-16 03:05,0011
|
||||
2023-07-16 03:50,0011
|
||||
2023-07-16 04:20,0011
|
||||
2023-07-16 04:35,0011
|
||||
2023-07-16 04:50,0011
|
||||
2023-07-16 05:05,0011
|
||||
2023-07-16 05:20,0011
|
||||
2023-07-16 05:35,0011
|
||||
2023-07-16 05:50,0011
|
||||
2023-07-16 06:20,0011
|
||||
2023-07-16 06:35,0011
|
||||
2023-07-16 06:50,0011
|
||||
2023-07-16 07:05,0011
|
||||
2023-07-16 07:20,0011
|
||||
2023-07-16 08:05,0011
|
||||
2023-07-16 08:20,0011
|
||||
2023-07-16 08:35,0011
|
||||
2023-07-16 08:50,0011
|
||||
2023-07-16 09:05,0011
|
||||
2023-07-16 09:20,0011
|
||||
2023-07-16 09:35,0011
|
||||
2023-07-16 10:20,0011
|
||||
2023-07-16 10:50,0011
|
||||
2023-07-16 11:05,0011
|
||||
2023-07-16 11:20,0011
|
||||
2023-07-16 11:35,0011
|
||||
2023-07-16 11:50,0011
|
||||
2023-07-16 12:05,0011
|
||||
2023-07-16 12:20,0011
|
||||
2023-07-16 12:35,0011
|
||||
2023-07-16 12:50,0011
|
||||
2023-07-16 13:05,0011
|
||||
2023-07-16 13:20,0011
|
||||
2023-07-16 13:35,0011
|
||||
2023-07-16 13:50,0011
|
||||
2023-07-16 14:05,0011
|
||||
2023-07-16 14:20,0011
|
||||
2023-07-16 14:35,0011
|
||||
2023-07-16 14:50,0011
|
||||
2023-07-16 15:20,0011
|
||||
2023-07-16 15:35,0011
|
||||
2023-07-16 15:50,0011
|
||||
2023-07-16 16:05,0011
|
||||
2023-07-16 16:20,0011
|
||||
2023-07-16 16:35,0011
|
||||
2023-07-16 16:50,0011
|
||||
2023-07-16 17:05,0011
|
||||
2023-07-16 17:20,0011
|
||||
2023-07-16 17:35,0011
|
||||
2023-07-16 17:50,0011
|
||||
2023-07-16 18:05,0011
|
||||
2023-07-16 18:35,0011
|
||||
2023-07-16 18:50,0011
|
||||
2023-07-16 19:05,0011
|
||||
2023-07-16 19:20,0011
|
||||
2023-07-16 19:35,0011
|
||||
2023-07-16 19:50,0011
|
||||
2023-07-16 20:05,0011
|
||||
2023-07-16 20:20,0011
|
||||
2023-07-16 21:05,0011
|
||||
2023-07-16 21:35,0011
|
||||
2023-07-16 21:50,0011
|
||||
2023-07-16 22:05,0011
|
||||
2023-07-16 22:20,0011
|
||||
2023-07-16 22:35,0011
|
||||
2023-07-16 22:50,0011
|
||||
2023-07-16 23:05,0011
|
||||
2023-07-16 23:20,0011
|
||||
2023-07-16 23:35,0011
|
||||
2023-07-16 23:50,0011
|
77
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-5.dat
Normal file
77
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-17 00:10,0111
|
||||
2023-07-17 00:25,0111
|
||||
2023-07-17 00:40,0111
|
||||
2023-07-17 00:55,0111
|
||||
2023-07-17 01:10,0111
|
||||
2023-07-17 01:40,0111
|
||||
2023-07-17 01:55,0111
|
||||
2023-07-17 02:25,0111
|
||||
2023-07-17 02:40,0111
|
||||
2023-07-17 03:10,0111
|
||||
2023-07-17 03:25,0111
|
||||
2023-07-17 03:40,0111
|
||||
2023-07-17 03:55,0111
|
||||
2023-07-17 04:10,0111
|
||||
2023-07-17 04:25,0111
|
||||
2023-07-17 04:40,0111
|
||||
2023-07-17 05:10,0111
|
||||
2023-07-17 05:40,0111
|
||||
2023-07-17 05:55,0111
|
||||
2023-07-17 06:10,0111
|
||||
2023-07-17 06:25,0111
|
||||
2023-07-17 06:40,0111
|
||||
2023-07-17 06:55,0111
|
||||
2023-07-17 07:10,0111
|
||||
2023-07-17 07:25,0111
|
||||
2023-07-17 07:40,0111
|
||||
2023-07-17 07:55,0111
|
||||
2023-07-17 08:55,0111
|
||||
2023-07-17 09:10,0111
|
||||
2023-07-17 09:25,0111
|
||||
2023-07-17 09:40,0111
|
||||
2023-07-17 09:55,0111
|
||||
2023-07-17 10:10,0111
|
||||
2023-07-17 10:25,0111
|
||||
2023-07-17 10:40,0111
|
||||
2023-07-17 10:55,0111
|
||||
2023-07-17 11:10,0111
|
||||
2023-07-17 11:25,0111
|
||||
2023-07-17 11:55,0111
|
||||
2023-07-17 12:10,0111
|
||||
2023-07-17 12:40,0111
|
||||
2023-07-17 12:55,0111
|
||||
2023-07-17 13:10,0111
|
||||
2023-07-17 13:25,0111
|
||||
2023-07-17 13:40,0111
|
||||
2023-07-17 13:55,0111
|
||||
2023-07-17 14:10,0111
|
||||
2023-07-17 14:25,0111
|
||||
2023-07-17 14:55,0111
|
||||
2023-07-17 15:10,0111
|
||||
2023-07-17 15:25,0111
|
||||
2023-07-17 15:40,0111
|
||||
2023-07-17 16:10,0111
|
||||
2023-07-17 16:40,0111
|
||||
2023-07-17 16:55,0111
|
||||
2023-07-17 17:40,0111
|
||||
2023-07-17 17:55,0111
|
||||
2023-07-17 18:10,0111
|
||||
2023-07-17 18:25,0111
|
||||
2023-07-17 18:40,0111
|
||||
2023-07-17 18:55,0111
|
||||
2023-07-17 19:10,0111
|
||||
2023-07-17 19:40,0111
|
||||
2023-07-17 19:55,0111
|
||||
2023-07-17 20:10,0111
|
||||
2023-07-17 20:25,0111
|
||||
2023-07-17 20:40,0111
|
||||
2023-07-17 20:55,0111
|
||||
2023-07-17 21:25,0111
|
||||
2023-07-17 22:10,0111
|
||||
2023-07-17 22:25,0111
|
||||
2023-07-17 22:40,0111
|
||||
2023-07-17 22:55,0111
|
||||
2023-07-17 23:10,0111
|
||||
2023-07-17 23:25,0111
|
||||
2023-07-17 23:40,0111
|
||||
2023-07-17 23:55,0111
|
69
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-6.dat
Normal file
69
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,69 @@
|
||||
2023-07-17 00:00,0000
|
||||
2023-07-17 00:30,0000
|
||||
2023-07-17 00:45,0000
|
||||
2023-07-17 01:15,0000
|
||||
2023-07-17 02:00,0000
|
||||
2023-07-17 02:15,0000
|
||||
2023-07-17 02:45,0000
|
||||
2023-07-17 03:00,0000
|
||||
2023-07-17 03:15,0000
|
||||
2023-07-17 03:30,0000
|
||||
2023-07-17 03:45,0000
|
||||
2023-07-17 04:15,0000
|
||||
2023-07-17 04:45,0000
|
||||
2023-07-17 05:00,0000
|
||||
2023-07-17 05:15,0000
|
||||
2023-07-17 05:45,0000
|
||||
2023-07-17 06:00,0000
|
||||
2023-07-17 06:15,0000
|
||||
2023-07-17 06:45,0000
|
||||
2023-07-17 07:30,0000
|
||||
2023-07-17 07:45,0000
|
||||
2023-07-17 08:00,0000
|
||||
2023-07-17 08:30,0000
|
||||
2023-07-17 09:00,0000
|
||||
2023-07-17 09:15,0000
|
||||
2023-07-17 09:30,0000
|
||||
2023-07-17 09:45,0000
|
||||
2023-07-17 10:00,0000
|
||||
2023-07-17 10:15,0000
|
||||
2023-07-17 10:30,0000
|
||||
2023-07-17 11:00,0000
|
||||
2023-07-17 11:15,0000
|
||||
2023-07-17 11:30,0000
|
||||
2023-07-17 11:45,0000
|
||||
2023-07-17 12:00,0000
|
||||
2023-07-17 12:30,0000
|
||||
2023-07-17 12:45,0000
|
||||
2023-07-17 13:15,0000
|
||||
2023-07-17 13:30,0000
|
||||
2023-07-17 14:00,0000
|
||||
2023-07-17 14:15,0000
|
||||
2023-07-17 14:30,0000
|
||||
2023-07-17 14:45,0000
|
||||
2023-07-17 15:00,0000
|
||||
2023-07-17 15:15,0000
|
||||
2023-07-17 15:45,0000
|
||||
2023-07-17 16:15,0000
|
||||
2023-07-17 16:45,0000
|
||||
2023-07-17 17:00,0000
|
||||
2023-07-17 17:15,0000
|
||||
2023-07-17 17:30,0000
|
||||
2023-07-17 17:45,0000
|
||||
2023-07-17 18:00,0000
|
||||
2023-07-17 18:15,0000
|
||||
2023-07-17 18:30,0000
|
||||
2023-07-17 19:00,0000
|
||||
2023-07-17 19:15,0000
|
||||
2023-07-17 19:30,0000
|
||||
2023-07-17 19:45,0000
|
||||
2023-07-17 20:00,0000
|
||||
2023-07-17 20:15,0000
|
||||
2023-07-17 20:30,0000
|
||||
2023-07-17 20:45,0000
|
||||
2023-07-17 21:00,0000
|
||||
2023-07-17 21:15,0000
|
||||
2023-07-17 21:30,0000
|
||||
2023-07-17 21:45,0000
|
||||
2023-07-17 23:15,0000
|
||||
2023-07-17 23:45,0000
|
74
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-8.dat
Normal file
74
aprs_utils/aprs_log/2023-07-17_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-17 00:05,0011
|
||||
2023-07-17 00:20,0011
|
||||
2023-07-17 00:35,0011
|
||||
2023-07-17 00:50,0011
|
||||
2023-07-17 01:05,0011
|
||||
2023-07-17 01:35,0011
|
||||
2023-07-17 01:50,0011
|
||||
2023-07-17 02:05,0011
|
||||
2023-07-17 02:20,0011
|
||||
2023-07-17 02:35,0011
|
||||
2023-07-17 03:05,0011
|
||||
2023-07-17 03:20,0011
|
||||
2023-07-17 03:35,0011
|
||||
2023-07-17 03:50,0011
|
||||
2023-07-17 04:05,0011
|
||||
2023-07-17 04:20,0011
|
||||
2023-07-17 04:35,0011
|
||||
2023-07-17 05:05,0011
|
||||
2023-07-17 05:20,0011
|
||||
2023-07-17 05:35,0011
|
||||
2023-07-17 05:50,0011
|
||||
2023-07-17 06:05,0011
|
||||
2023-07-17 06:20,0011
|
||||
2023-07-17 06:50,0011
|
||||
2023-07-17 07:20,0011
|
||||
2023-07-17 07:35,0011
|
||||
2023-07-17 07:50,0011
|
||||
2023-07-17 08:20,0011
|
||||
2023-07-17 08:50,0011
|
||||
2023-07-17 09:05,0011
|
||||
2023-07-17 09:20,0011
|
||||
2023-07-17 09:50,0011
|
||||
2023-07-17 10:05,0011
|
||||
2023-07-17 10:20,0011
|
||||
2023-07-17 10:35,0011
|
||||
2023-07-17 10:50,0011
|
||||
2023-07-17 11:35,0011
|
||||
2023-07-17 11:50,0011
|
||||
2023-07-17 12:05,0011
|
||||
2023-07-17 12:20,0011
|
||||
2023-07-17 12:35,0011
|
||||
2023-07-17 13:20,0011
|
||||
2023-07-17 13:35,0011
|
||||
2023-07-17 13:50,0011
|
||||
2023-07-17 14:05,0011
|
||||
2023-07-17 14:35,0011
|
||||
2023-07-17 14:50,0011
|
||||
2023-07-17 15:05,0011
|
||||
2023-07-17 15:50,0011
|
||||
2023-07-17 16:20,0011
|
||||
2023-07-17 16:35,0011
|
||||
2023-07-17 16:50,0011
|
||||
2023-07-17 17:05,0011
|
||||
2023-07-17 17:20,0011
|
||||
2023-07-17 17:35,0011
|
||||
2023-07-17 18:05,0011
|
||||
2023-07-17 18:20,0011
|
||||
2023-07-17 18:35,0011
|
||||
2023-07-17 18:50,0011
|
||||
2023-07-17 19:20,0011
|
||||
2023-07-17 19:35,0011
|
||||
2023-07-17 20:05,0011
|
||||
2023-07-17 20:20,0011
|
||||
2023-07-17 20:35,0011
|
||||
2023-07-17 20:50,0011
|
||||
2023-07-17 21:05,0011
|
||||
2023-07-17 21:20,0011
|
||||
2023-07-17 21:35,0011
|
||||
2023-07-17 21:50,0011
|
||||
2023-07-17 22:05,0011
|
||||
2023-07-17 22:35,0011
|
||||
2023-07-17 23:05,0011
|
||||
2023-07-17 23:35,0011
|
||||
2023-07-17 23:50,0011
|
74
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-5.dat
Normal file
74
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-18 00:10,0111
|
||||
2023-07-18 00:40,0111
|
||||
2023-07-18 01:10,0111
|
||||
2023-07-18 01:25,0111
|
||||
2023-07-18 01:55,0111
|
||||
2023-07-18 02:10,0111
|
||||
2023-07-18 02:40,0111
|
||||
2023-07-18 02:55,0111
|
||||
2023-07-18 03:10,0111
|
||||
2023-07-18 03:25,0111
|
||||
2023-07-18 03:40,0111
|
||||
2023-07-18 03:55,0111
|
||||
2023-07-18 04:10,0111
|
||||
2023-07-18 04:25,0111
|
||||
2023-07-18 04:40,0111
|
||||
2023-07-18 05:25,0111
|
||||
2023-07-18 05:40,0111
|
||||
2023-07-18 05:55,0111
|
||||
2023-07-18 06:10,0111
|
||||
2023-07-18 06:25,0111
|
||||
2023-07-18 06:40,0111
|
||||
2023-07-18 07:40,0111
|
||||
2023-07-18 08:10,0111
|
||||
2023-07-18 08:25,0111
|
||||
2023-07-18 08:40,0111
|
||||
2023-07-18 08:55,0111
|
||||
2023-07-18 09:10,0111
|
||||
2023-07-18 09:25,0111
|
||||
2023-07-18 09:55,0111
|
||||
2023-07-18 10:10,0111
|
||||
2023-07-18 10:25,0111
|
||||
2023-07-18 10:55,0111
|
||||
2023-07-18 11:10,0111
|
||||
2023-07-18 11:25,0111
|
||||
2023-07-18 11:40,0111
|
||||
2023-07-18 11:55,0111
|
||||
2023-07-18 12:10,0111
|
||||
2023-07-18 12:25,0111
|
||||
2023-07-18 12:55,0111
|
||||
2023-07-18 13:10,0111
|
||||
2023-07-18 13:25,0111
|
||||
2023-07-18 13:40,0111
|
||||
2023-07-18 13:55,0111
|
||||
2023-07-18 14:10,0111
|
||||
2023-07-18 14:25,0111
|
||||
2023-07-18 14:40,0111
|
||||
2023-07-18 15:10,0111
|
||||
2023-07-18 15:25,0111
|
||||
2023-07-18 15:40,0111
|
||||
2023-07-18 16:10,0111
|
||||
2023-07-18 16:25,0111
|
||||
2023-07-18 16:40,0111
|
||||
2023-07-18 16:55,0111
|
||||
2023-07-18 17:10,0111
|
||||
2023-07-18 17:25,0111
|
||||
2023-07-18 17:40,0111
|
||||
2023-07-18 17:55,0111
|
||||
2023-07-18 18:10,0111
|
||||
2023-07-18 18:25,0111
|
||||
2023-07-18 18:40,0111
|
||||
2023-07-18 19:10,0111
|
||||
2023-07-18 19:25,0111
|
||||
2023-07-18 19:40,0111
|
||||
2023-07-18 19:55,0111
|
||||
2023-07-18 20:25,0111
|
||||
2023-07-18 20:40,0111
|
||||
2023-07-18 21:10,0111
|
||||
2023-07-18 21:25,0111
|
||||
2023-07-18 21:55,0111
|
||||
2023-07-18 22:10,0111
|
||||
2023-07-18 22:25,0111
|
||||
2023-07-18 22:40,0111
|
||||
2023-07-18 22:55,0111
|
||||
2023-07-18 23:25,0111
|
69
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-6.dat
Normal file
69
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,69 @@
|
||||
2023-07-18 00:15,0000
|
||||
2023-07-18 00:45,0000
|
||||
2023-07-18 01:00,0000
|
||||
2023-07-18 01:15,0000
|
||||
2023-07-18 01:30,0000
|
||||
2023-07-18 01:45,0000
|
||||
2023-07-18 02:00,0000
|
||||
2023-07-18 02:15,0000
|
||||
2023-07-18 02:30,0000
|
||||
2023-07-18 02:45,0000
|
||||
2023-07-18 04:00,0000
|
||||
2023-07-18 04:15,0000
|
||||
2023-07-18 04:30,0000
|
||||
2023-07-18 04:45,0000
|
||||
2023-07-18 05:00,0000
|
||||
2023-07-18 05:15,0000
|
||||
2023-07-18 05:30,0000
|
||||
2023-07-18 05:45,0000
|
||||
2023-07-18 06:15,0000
|
||||
2023-07-18 06:30,0000
|
||||
2023-07-18 07:00,0000
|
||||
2023-07-18 07:15,0000
|
||||
2023-07-18 07:30,0000
|
||||
2023-07-18 07:45,0000
|
||||
2023-07-18 08:00,0000
|
||||
2023-07-18 08:15,0000
|
||||
2023-07-18 08:30,0000
|
||||
2023-07-18 08:45,0000
|
||||
2023-07-18 09:00,0000
|
||||
2023-07-18 09:15,0000
|
||||
2023-07-18 09:30,0000
|
||||
2023-07-18 09:45,0000
|
||||
2023-07-18 10:30,0000
|
||||
2023-07-18 10:45,0000
|
||||
2023-07-18 11:15,0000
|
||||
2023-07-18 11:45,0000
|
||||
2023-07-18 12:00,0000
|
||||
2023-07-18 12:15,0000
|
||||
2023-07-18 12:30,0000
|
||||
2023-07-18 13:00,0000
|
||||
2023-07-18 13:15,0000
|
||||
2023-07-18 13:30,0000
|
||||
2023-07-18 14:15,0000
|
||||
2023-07-18 14:45,0000
|
||||
2023-07-18 15:00,0000
|
||||
2023-07-18 15:15,0000
|
||||
2023-07-18 15:45,0000
|
||||
2023-07-18 16:15,0000
|
||||
2023-07-18 16:30,0000
|
||||
2023-07-18 16:45,0000
|
||||
2023-07-18 17:00,0000
|
||||
2023-07-18 17:45,0000
|
||||
2023-07-18 18:00,0000
|
||||
2023-07-18 18:30,0000
|
||||
2023-07-18 18:45,0000
|
||||
2023-07-18 19:15,0000
|
||||
2023-07-18 19:30,0000
|
||||
2023-07-18 19:45,0000
|
||||
2023-07-18 20:15,0000
|
||||
2023-07-18 20:45,0000
|
||||
2023-07-18 21:00,0000
|
||||
2023-07-18 21:15,0000
|
||||
2023-07-18 21:45,0000
|
||||
2023-07-18 22:00,0000
|
||||
2023-07-18 22:45,0000
|
||||
2023-07-18 23:00,0000
|
||||
2023-07-18 23:15,0000
|
||||
2023-07-18 23:30,0000
|
||||
2023-07-18 23:45,0000
|
77
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-8.dat
Normal file
77
aprs_utils/aprs_log/2023-07-18_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,77 @@
|
||||
2023-07-18 00:05,0011
|
||||
2023-07-18 00:20,0011
|
||||
2023-07-18 00:50,0011
|
||||
2023-07-18 01:20,0011
|
||||
2023-07-18 01:35,0011
|
||||
2023-07-18 01:50,0011
|
||||
2023-07-18 02:05,0011
|
||||
2023-07-18 02:20,0011
|
||||
2023-07-18 02:35,0011
|
||||
2023-07-18 02:50,0011
|
||||
2023-07-18 03:05,0011
|
||||
2023-07-18 03:20,0011
|
||||
2023-07-18 03:50,0011
|
||||
2023-07-18 04:05,0011
|
||||
2023-07-18 04:20,0011
|
||||
2023-07-18 05:00,0011
|
||||
2023-07-18 05:05,0011
|
||||
2023-07-18 05:20,0011
|
||||
2023-07-18 05:35,0011
|
||||
2023-07-18 05:50,0011
|
||||
2023-07-18 06:05,0011
|
||||
2023-07-18 07:05,0011
|
||||
2023-07-18 07:35,0011
|
||||
2023-07-18 07:50,0011
|
||||
2023-07-18 08:05,0011
|
||||
2023-07-18 08:20,0011
|
||||
2023-07-18 08:35,0011
|
||||
2023-07-18 09:05,0011
|
||||
2023-07-18 09:20,0011
|
||||
2023-07-18 09:35,0011
|
||||
2023-07-18 09:50,0011
|
||||
2023-07-18 10:05,0011
|
||||
2023-07-18 10:50,0011
|
||||
2023-07-18 11:05,0011
|
||||
2023-07-18 11:35,0011
|
||||
2023-07-18 11:50,0011
|
||||
2023-07-18 12:20,0011
|
||||
2023-07-18 12:35,0011
|
||||
2023-07-18 12:50,0011
|
||||
2023-07-18 13:05,0011
|
||||
2023-07-18 13:20,0011
|
||||
2023-07-18 13:35,0011
|
||||
2023-07-18 13:50,0011
|
||||
2023-07-18 14:05,0011
|
||||
2023-07-18 14:20,0011
|
||||
2023-07-18 14:35,0011
|
||||
2023-07-18 14:50,0011
|
||||
2023-07-18 15:05,0011
|
||||
2023-07-18 15:20,0011
|
||||
2023-07-18 15:35,0011
|
||||
2023-07-18 15:50,0011
|
||||
2023-07-18 16:05,0011
|
||||
2023-07-18 16:20,0011
|
||||
2023-07-18 16:35,0011
|
||||
2023-07-18 17:05,0011
|
||||
2023-07-18 17:20,0011
|
||||
2023-07-18 17:35,0011
|
||||
2023-07-18 18:05,0011
|
||||
2023-07-18 18:35,0011
|
||||
2023-07-18 18:50,0011
|
||||
2023-07-18 19:05,0011
|
||||
2023-07-18 19:20,0011
|
||||
2023-07-18 19:35,0011
|
||||
2023-07-18 19:50,0011
|
||||
2023-07-18 20:20,0011
|
||||
2023-07-18 20:35,0011
|
||||
2023-07-18 20:50,0011
|
||||
2023-07-18 21:20,0011
|
||||
2023-07-18 21:35,0011
|
||||
2023-07-18 21:50,0011
|
||||
2023-07-18 22:05,0011
|
||||
2023-07-18 22:20,0011
|
||||
2023-07-18 22:35,0011
|
||||
2023-07-18 22:50,0011
|
||||
2023-07-18 23:05,0011
|
||||
2023-07-18 23:35,0011
|
||||
2023-07-18 23:50,0011
|
78
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-5.dat
Normal file
78
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-19 00:10,0111
|
||||
2023-07-19 00:40,0111
|
||||
2023-07-19 00:55,0111
|
||||
2023-07-19 01:10,0111
|
||||
2023-07-19 01:25,0111
|
||||
2023-07-19 01:55,0111
|
||||
2023-07-19 02:10,0111
|
||||
2023-07-19 02:25,0111
|
||||
2023-07-19 02:40,0111
|
||||
2023-07-19 02:55,0111
|
||||
2023-07-19 03:10,0111
|
||||
2023-07-19 03:25,0111
|
||||
2023-07-19 03:40,0111
|
||||
2023-07-19 03:55,0111
|
||||
2023-07-19 04:25,0111
|
||||
2023-07-19 04:40,0111
|
||||
2023-07-19 04:55,0111
|
||||
2023-07-19 05:25,0111
|
||||
2023-07-19 05:40,0111
|
||||
2023-07-19 05:55,0111
|
||||
2023-07-19 06:10,0111
|
||||
2023-07-19 06:25,0111
|
||||
2023-07-19 06:55,0111
|
||||
2023-07-19 07:10,0111
|
||||
2023-07-19 07:25,0111
|
||||
2023-07-19 08:25,0111
|
||||
2023-07-19 08:40,0111
|
||||
2023-07-19 09:10,0111
|
||||
2023-07-19 09:25,0111
|
||||
2023-07-19 09:41,0111
|
||||
2023-07-19 09:55,0111
|
||||
2023-07-19 10:11,0111
|
||||
2023-07-19 10:25,0111
|
||||
2023-07-19 10:40,0111
|
||||
2023-07-19 11:25,0111
|
||||
2023-07-19 11:40,0111
|
||||
2023-07-19 12:10,0111
|
||||
2023-07-19 12:25,0111
|
||||
2023-07-19 12:40,0111
|
||||
2023-07-19 12:55,0111
|
||||
2023-07-19 13:10,0111
|
||||
2023-07-19 13:25,0111
|
||||
2023-07-19 13:55,0111
|
||||
2023-07-19 14:10,0111
|
||||
2023-07-19 14:25,0111
|
||||
2023-07-19 14:40,0111
|
||||
2023-07-19 15:10,0111
|
||||
2023-07-19 15:25,0111
|
||||
2023-07-19 15:40,0111
|
||||
2023-07-19 16:25,0111
|
||||
2023-07-19 16:40,0111
|
||||
2023-07-19 16:55,0111
|
||||
2023-07-19 17:10,0111
|
||||
2023-07-19 17:25,0111
|
||||
2023-07-19 17:40,0111
|
||||
2023-07-19 17:55,0111
|
||||
2023-07-19 18:10,0111
|
||||
2023-07-19 18:25,0111
|
||||
2023-07-19 18:40,0111
|
||||
2023-07-19 19:10,0111
|
||||
2023-07-19 19:41,0111
|
||||
2023-07-19 19:55,0111
|
||||
2023-07-19 20:10,0111
|
||||
2023-07-19 20:25,0111
|
||||
2023-07-19 20:40,0111
|
||||
2023-07-19 20:55,0111
|
||||
2023-07-19 21:10,0111
|
||||
2023-07-19 21:25,0111
|
||||
2023-07-19 21:40,0111
|
||||
2023-07-19 21:55,0111
|
||||
2023-07-19 22:10,0111
|
||||
2023-07-19 22:25,0111
|
||||
2023-07-19 22:40,0111
|
||||
2023-07-19 22:55,0111
|
||||
2023-07-19 23:10,0111
|
||||
2023-07-19 23:25,0111
|
||||
2023-07-19 23:40,0111
|
||||
2023-07-19 23:55,0111
|
69
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-6.dat
Normal file
69
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,69 @@
|
||||
2023-07-19 00:00,0000
|
||||
2023-07-19 00:15,0000
|
||||
2023-07-19 00:30,0000
|
||||
2023-07-19 00:45,0000
|
||||
2023-07-19 01:15,0000
|
||||
2023-07-19 02:00,0000
|
||||
2023-07-19 02:15,0000
|
||||
2023-07-19 02:30,0000
|
||||
2023-07-19 02:45,0000
|
||||
2023-07-19 03:00,0000
|
||||
2023-07-19 03:15,0000
|
||||
2023-07-19 03:30,0000
|
||||
2023-07-19 03:45,0000
|
||||
2023-07-19 04:00,0000
|
||||
2023-07-19 04:15,0000
|
||||
2023-07-19 04:30,0000
|
||||
2023-07-19 04:45,0000
|
||||
2023-07-19 05:00,0000
|
||||
2023-07-19 05:15,0000
|
||||
2023-07-19 05:30,0000
|
||||
2023-07-19 05:46,0000
|
||||
2023-07-19 06:00,0000
|
||||
2023-07-19 06:45,0000
|
||||
2023-07-19 07:15,0000
|
||||
2023-07-19 07:30,0000
|
||||
2023-07-19 08:00,0000
|
||||
2023-07-19 08:15,0000
|
||||
2023-07-19 08:45,0000
|
||||
2023-07-19 09:15,0000
|
||||
2023-07-19 09:31,0000
|
||||
2023-07-19 09:45,0000
|
||||
2023-07-19 10:00,0000
|
||||
2023-07-19 10:15,0000
|
||||
2023-07-19 10:45,0000
|
||||
2023-07-19 11:00,0000
|
||||
2023-07-19 11:15,0000
|
||||
2023-07-19 11:30,0000
|
||||
2023-07-19 11:45,0000
|
||||
2023-07-19 12:00,0000
|
||||
2023-07-19 12:15,0000
|
||||
2023-07-19 12:45,0000
|
||||
2023-07-19 13:00,0000
|
||||
2023-07-19 13:15,0000
|
||||
2023-07-19 13:30,0000
|
||||
2023-07-19 14:15,0000
|
||||
2023-07-19 14:30,0000
|
||||
2023-07-19 14:45,0000
|
||||
2023-07-19 15:00,0000
|
||||
2023-07-19 15:15,0000
|
||||
2023-07-19 15:30,0000
|
||||
2023-07-19 15:45,0000
|
||||
2023-07-19 16:30,0000
|
||||
2023-07-19 17:15,0000
|
||||
2023-07-19 17:45,0000
|
||||
2023-07-19 18:00,0000
|
||||
2023-07-19 18:45,0000
|
||||
2023-07-19 19:00,0000
|
||||
2023-07-19 19:30,0000
|
||||
2023-07-19 19:45,0000
|
||||
2023-07-19 20:15,0000
|
||||
2023-07-19 20:30,0000
|
||||
2023-07-19 20:45,0000
|
||||
2023-07-19 21:00,0000
|
||||
2023-07-19 21:15,0000
|
||||
2023-07-19 22:15,0000
|
||||
2023-07-19 22:45,0000
|
||||
2023-07-19 23:00,0000
|
||||
2023-07-19 23:15,0000
|
||||
2023-07-19 23:45,0000
|
75
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-8.dat
Normal file
75
aprs_utils/aprs_log/2023-07-19_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,75 @@
|
||||
2023-07-19 00:05,0011
|
||||
2023-07-19 00:35,0011
|
||||
2023-07-19 00:50,0011
|
||||
2023-07-19 01:05,0011
|
||||
2023-07-19 01:20,0011
|
||||
2023-07-19 02:05,0011
|
||||
2023-07-19 02:20,0011
|
||||
2023-07-19 02:50,0011
|
||||
2023-07-19 03:20,0011
|
||||
2023-07-19 03:35,0011
|
||||
2023-07-19 03:50,0011
|
||||
2023-07-19 04:05,0011
|
||||
2023-07-19 04:20,0011
|
||||
2023-07-19 04:50,0011
|
||||
2023-07-19 05:20,0011
|
||||
2023-07-19 05:50,0011
|
||||
2023-07-19 06:05,0011
|
||||
2023-07-19 06:20,0011
|
||||
2023-07-19 06:35,0011
|
||||
2023-07-19 06:50,0011
|
||||
2023-07-19 07:05,0011
|
||||
2023-07-19 07:35,0011
|
||||
2023-07-19 07:50,0011
|
||||
2023-07-19 08:05,0011
|
||||
2023-07-19 08:20,0011
|
||||
2023-07-19 08:35,0011
|
||||
2023-07-19 08:50,0011
|
||||
2023-07-19 09:05,0011
|
||||
2023-07-19 09:35,0011
|
||||
2023-07-19 09:51,0011
|
||||
2023-07-19 10:05,0011
|
||||
2023-07-19 10:21,0011
|
||||
2023-07-19 10:35,0011
|
||||
2023-07-19 10:50,0011
|
||||
2023-07-19 11:05,0011
|
||||
2023-07-19 11:20,0011
|
||||
2023-07-19 11:50,0011
|
||||
2023-07-19 12:05,0011
|
||||
2023-07-19 12:35,0011
|
||||
2023-07-19 12:50,0011
|
||||
2023-07-19 13:05,0011
|
||||
2023-07-19 13:20,0011
|
||||
2023-07-19 13:50,0011
|
||||
2023-07-19 14:05,0011
|
||||
2023-07-19 14:20,0011
|
||||
2023-07-19 14:35,0011
|
||||
2023-07-19 15:35,0011
|
||||
2023-07-19 15:50,0011
|
||||
2023-07-19 16:05,0011
|
||||
2023-07-19 16:20,0011
|
||||
2023-07-19 16:35,0011
|
||||
2023-07-19 16:50,0011
|
||||
2023-07-19 17:05,0011
|
||||
2023-07-19 17:20,0011
|
||||
2023-07-19 18:05,0011
|
||||
2023-07-19 18:20,0011
|
||||
2023-07-19 18:35,0011
|
||||
2023-07-19 18:50,0011
|
||||
2023-07-19 19:05,0011
|
||||
2023-07-19 19:20,0011
|
||||
2023-07-19 19:35,0011
|
||||
2023-07-19 19:50,0011
|
||||
2023-07-19 20:05,0011
|
||||
2023-07-19 20:20,0011
|
||||
2023-07-19 20:35,0011
|
||||
2023-07-19 20:50,0011
|
||||
2023-07-19 21:05,0011
|
||||
2023-07-19 21:20,0011
|
||||
2023-07-19 21:35,0011
|
||||
2023-07-19 21:50,0011
|
||||
2023-07-19 22:05,0011
|
||||
2023-07-19 22:20,0011
|
||||
2023-07-19 22:50,0011
|
||||
2023-07-19 23:05,0011
|
||||
2023-07-19 23:50,0011
|
84
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-5.dat
Normal file
84
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,84 @@
|
||||
2023-07-20 00:10,0111
|
||||
2023-07-20 00:40,0111
|
||||
2023-07-20 00:55,0111
|
||||
2023-07-20 01:10,0111
|
||||
2023-07-20 01:25,0111
|
||||
2023-07-20 01:40,0111
|
||||
2023-07-20 01:55,0111
|
||||
2023-07-20 02:10,0111
|
||||
2023-07-20 02:40,0111
|
||||
2023-07-20 02:55,0111
|
||||
2023-07-20 03:10,0111
|
||||
2023-07-20 03:25,0111
|
||||
2023-07-20 03:40,0111
|
||||
2023-07-20 03:55,0111
|
||||
2023-07-20 04:10,0111
|
||||
2023-07-20 04:25,0111
|
||||
2023-07-20 04:40,0111
|
||||
2023-07-20 04:55,0111
|
||||
2023-07-20 05:10,0111
|
||||
2023-07-20 05:25,0111
|
||||
2023-07-20 05:40,0111
|
||||
2023-07-20 05:55,0111
|
||||
2023-07-20 06:10,0111
|
||||
2023-07-20 06:25,0111
|
||||
2023-07-20 06:40,0111
|
||||
2023-07-20 06:55,0111
|
||||
2023-07-20 07:10,0111
|
||||
2023-07-20 07:25,0111
|
||||
2023-07-20 07:40,0111
|
||||
2023-07-20 07:55,0111
|
||||
2023-07-20 08:10,0111
|
||||
2023-07-20 08:25,0111
|
||||
2023-07-20 08:40,0111
|
||||
2023-07-20 08:55,0111
|
||||
2023-07-20 09:10,0111
|
||||
2023-07-20 09:25,0111
|
||||
2023-07-20 09:40,0111
|
||||
2023-07-20 09:55,0111
|
||||
2023-07-20 10:10,0111
|
||||
2023-07-20 10:40,0111
|
||||
2023-07-20 10:55,0111
|
||||
2023-07-20 11:25,0111
|
||||
2023-07-20 11:40,0111
|
||||
2023-07-20 11:55,0111
|
||||
2023-07-20 12:10,0111
|
||||
2023-07-20 12:25,0111
|
||||
2023-07-20 12:40,0111
|
||||
2023-07-20 12:55,0111
|
||||
2023-07-20 13:40,0111
|
||||
2023-07-20 13:55,0111
|
||||
2023-07-20 14:10,0111
|
||||
2023-07-20 14:25,0111
|
||||
2023-07-20 14:40,0111
|
||||
2023-07-20 15:25,0111
|
||||
2023-07-20 15:40,0111
|
||||
2023-07-20 15:55,0111
|
||||
2023-07-20 16:10,0111
|
||||
2023-07-20 16:25,0111
|
||||
2023-07-20 17:10,0111
|
||||
2023-07-20 17:25,0111
|
||||
2023-07-20 17:40,0111
|
||||
2023-07-20 17:55,0111
|
||||
2023-07-20 18:10,0111
|
||||
2023-07-20 18:25,0111
|
||||
2023-07-20 18:40,0111
|
||||
2023-07-20 18:55,0111
|
||||
2023-07-20 19:25,0111
|
||||
2023-07-20 19:40,0111
|
||||
2023-07-20 19:55,0111
|
||||
2023-07-20 20:10,0111
|
||||
2023-07-20 20:25,0111
|
||||
2023-07-20 20:40,0111
|
||||
2023-07-20 20:55,0111
|
||||
2023-07-20 21:10,0111
|
||||
2023-07-20 21:25,0111
|
||||
2023-07-20 21:40,0111
|
||||
2023-07-20 21:55,0111
|
||||
2023-07-20 22:10,0111
|
||||
2023-07-20 22:40,0111
|
||||
2023-07-20 22:55,0111
|
||||
2023-07-20 23:10,0111
|
||||
2023-07-20 23:25,0111
|
||||
2023-07-20 23:40,0111
|
||||
2023-07-20 23:55,0111
|
66
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-6.dat
Normal file
66
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,66 @@
|
||||
2023-07-20 00:00,0000
|
||||
2023-07-20 00:15,0000
|
||||
2023-07-20 00:30,0000
|
||||
2023-07-20 00:45,0000
|
||||
2023-07-20 01:15,0000
|
||||
2023-07-20 01:30,0000
|
||||
2023-07-20 01:45,0000
|
||||
2023-07-20 02:30,0000
|
||||
2023-07-20 02:45,0000
|
||||
2023-07-20 03:00,0000
|
||||
2023-07-20 03:15,0000
|
||||
2023-07-20 03:30,0000
|
||||
2023-07-20 03:45,0000
|
||||
2023-07-20 04:00,0000
|
||||
2023-07-20 04:15,0000
|
||||
2023-07-20 04:45,0000
|
||||
2023-07-20 05:15,0000
|
||||
2023-07-20 05:45,0000
|
||||
2023-07-20 06:00,0000
|
||||
2023-07-20 06:30,0000
|
||||
2023-07-20 06:45,0000
|
||||
2023-07-20 07:30,0000
|
||||
2023-07-20 07:45,0000
|
||||
2023-07-20 08:00,0000
|
||||
2023-07-20 08:15,0000
|
||||
2023-07-20 08:45,0000
|
||||
2023-07-20 09:00,0000
|
||||
2023-07-20 09:15,0000
|
||||
2023-07-20 09:30,0000
|
||||
2023-07-20 10:15,0000
|
||||
2023-07-20 10:30,0000
|
||||
2023-07-20 10:45,0000
|
||||
2023-07-20 11:15,0000
|
||||
2023-07-20 11:30,0000
|
||||
2023-07-20 11:45,0000
|
||||
2023-07-20 12:00,0000
|
||||
2023-07-20 12:15,0000
|
||||
2023-07-20 12:30,0000
|
||||
2023-07-20 13:00,0000
|
||||
2023-07-20 13:15,0000
|
||||
2023-07-20 13:30,0000
|
||||
2023-07-20 13:45,0000
|
||||
2023-07-20 14:00,0000
|
||||
2023-07-20 14:15,0000
|
||||
2023-07-20 14:30,0000
|
||||
2023-07-20 15:00,0000
|
||||
2023-07-20 15:15,0000
|
||||
2023-07-20 15:30,0000
|
||||
2023-07-20 16:30,0000
|
||||
2023-07-20 16:45,0000
|
||||
2023-07-20 17:15,0000
|
||||
2023-07-20 17:45,0000
|
||||
2023-07-20 18:00,0000
|
||||
2023-07-20 18:30,0000
|
||||
2023-07-20 18:45,0000
|
||||
2023-07-20 19:00,0000
|
||||
2023-07-20 19:15,0000
|
||||
2023-07-20 19:30,0000
|
||||
2023-07-20 19:45,0000
|
||||
2023-07-20 20:00,0000
|
||||
2023-07-20 20:15,0000
|
||||
2023-07-20 20:45,0000
|
||||
2023-07-20 21:00,0000
|
||||
2023-07-20 21:30,0000
|
||||
2023-07-20 21:45,0000
|
||||
2023-07-20 22:15,0000
|
72
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-8.dat
Normal file
72
aprs_utils/aprs_log/2023-07-20_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,72 @@
|
||||
2023-07-20 00:20,0011
|
||||
2023-07-20 00:35,0011
|
||||
2023-07-20 00:50,0011
|
||||
2023-07-20 01:05,0011
|
||||
2023-07-20 01:20,0011
|
||||
2023-07-20 01:35,0011
|
||||
2023-07-20 01:50,0011
|
||||
2023-07-20 02:05,0011
|
||||
2023-07-20 02:20,0011
|
||||
2023-07-20 02:35,0011
|
||||
2023-07-20 02:50,0011
|
||||
2023-07-20 03:05,0011
|
||||
2023-07-20 03:50,0011
|
||||
2023-07-20 04:05,0011
|
||||
2023-07-20 04:20,0011
|
||||
2023-07-20 04:50,0011
|
||||
2023-07-20 05:20,0011
|
||||
2023-07-20 06:05,0011
|
||||
2023-07-20 06:51,0011
|
||||
2023-07-20 07:05,0011
|
||||
2023-07-20 07:20,0011
|
||||
2023-07-20 07:35,0011
|
||||
2023-07-20 07:50,0011
|
||||
2023-07-20 08:05,0011
|
||||
2023-07-20 08:20,0011
|
||||
2023-07-20 08:35,0011
|
||||
2023-07-20 08:50,0011
|
||||
2023-07-20 09:05,0011
|
||||
2023-07-20 09:20,0011
|
||||
2023-07-20 09:35,0011
|
||||
2023-07-20 09:50,0011
|
||||
2023-07-20 10:20,0011
|
||||
2023-07-20 11:20,0011
|
||||
2023-07-20 11:35,0011
|
||||
2023-07-20 11:50,0011
|
||||
2023-07-20 12:05,0011
|
||||
2023-07-20 12:50,0011
|
||||
2023-07-20 13:05,0011
|
||||
2023-07-20 13:35,0011
|
||||
2023-07-20 13:50,0011
|
||||
2023-07-20 14:05,0011
|
||||
2023-07-20 14:30,0011
|
||||
2023-07-20 14:35,0011
|
||||
2023-07-20 14:50,0011
|
||||
2023-07-20 15:05,0011
|
||||
2023-07-20 15:20,0011
|
||||
2023-07-20 15:35,0011
|
||||
2023-07-20 15:50,0011
|
||||
2023-07-20 16:05,0011
|
||||
2023-07-20 16:20,0011
|
||||
2023-07-20 16:35,0011
|
||||
2023-07-20 16:50,0011
|
||||
2023-07-20 17:20,0011
|
||||
2023-07-20 17:35,0011
|
||||
2023-07-20 17:50,0011
|
||||
2023-07-20 18:05,0011
|
||||
2023-07-20 19:05,0011
|
||||
2023-07-20 19:20,0011
|
||||
2023-07-20 19:35,0011
|
||||
2023-07-20 19:50,0011
|
||||
2023-07-20 20:05,0011
|
||||
2023-07-20 20:20,0011
|
||||
2023-07-20 20:50,0011
|
||||
2023-07-20 21:20,0011
|
||||
2023-07-20 21:50,0011
|
||||
2023-07-20 22:05,0011
|
||||
2023-07-20 22:20,0011
|
||||
2023-07-20 22:35,0011
|
||||
2023-07-20 23:05,0011
|
||||
2023-07-20 23:20,0011
|
||||
2023-07-20 23:35,0011
|
||||
2023-07-20 23:50,0011
|
73
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-5.dat
Normal file
73
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,73 @@
|
||||
2023-07-21 00:25,0111
|
||||
2023-07-21 00:40,0111
|
||||
2023-07-21 00:55,0111
|
||||
2023-07-21 01:25,0111
|
||||
2023-07-21 02:10,0111
|
||||
2023-07-21 02:25,0111
|
||||
2023-07-21 02:40,0111
|
||||
2023-07-21 02:55,0111
|
||||
2023-07-21 03:40,0111
|
||||
2023-07-21 03:55,0111
|
||||
2023-07-21 04:10,0111
|
||||
2023-07-21 04:25,0111
|
||||
2023-07-21 04:40,0111
|
||||
2023-07-21 04:55,0111
|
||||
2023-07-21 05:10,0111
|
||||
2023-07-21 05:25,0111
|
||||
2023-07-21 05:40,0111
|
||||
2023-07-21 06:10,0111
|
||||
2023-07-21 06:25,0111
|
||||
2023-07-21 06:40,0111
|
||||
2023-07-21 06:55,0111
|
||||
2023-07-21 07:55,0111
|
||||
2023-07-21 08:25,0111
|
||||
2023-07-21 08:40,0111
|
||||
2023-07-21 08:55,0111
|
||||
2023-07-21 09:10,0111
|
||||
2023-07-21 09:25,0111
|
||||
2023-07-21 09:40,0111
|
||||
2023-07-21 09:55,0111
|
||||
2023-07-21 10:10,0111
|
||||
2023-07-21 10:25,0111
|
||||
2023-07-21 10:55,0111
|
||||
2023-07-21 11:10,0111
|
||||
2023-07-21 11:25,0111
|
||||
2023-07-21 11:40,0111
|
||||
2023-07-21 11:55,0111
|
||||
2023-07-21 12:25,0111
|
||||
2023-07-21 13:10,0111
|
||||
2023-07-21 13:25,0111
|
||||
2023-07-21 13:40,0111
|
||||
2023-07-21 13:55,0111
|
||||
2023-07-21 14:10,0111
|
||||
2023-07-21 14:25,0111
|
||||
2023-07-21 14:40,0111
|
||||
2023-07-21 14:55,0111
|
||||
2023-07-21 15:10,0111
|
||||
2023-07-21 15:25,0111
|
||||
2023-07-21 15:40,0111
|
||||
2023-07-21 16:10,0111
|
||||
2023-07-21 16:25,0111
|
||||
2023-07-21 16:55,0111
|
||||
2023-07-21 17:25,0111
|
||||
2023-07-21 17:40,0111
|
||||
2023-07-21 17:55,0111
|
||||
2023-07-21 18:10,0111
|
||||
2023-07-21 18:25,0111
|
||||
2023-07-21 18:40,0111
|
||||
2023-07-21 18:55,0111
|
||||
2023-07-21 19:25,0111
|
||||
2023-07-21 19:40,0111
|
||||
2023-07-21 19:55,0111
|
||||
2023-07-21 20:10,0111
|
||||
2023-07-21 20:25,0111
|
||||
2023-07-21 20:40,0111
|
||||
2023-07-21 20:55,0111
|
||||
2023-07-21 21:10,0111
|
||||
2023-07-21 21:40,0111
|
||||
2023-07-21 21:55,0111
|
||||
2023-07-21 22:11,0111
|
||||
2023-07-21 22:25,0111
|
||||
2023-07-21 22:40,0111
|
||||
2023-07-21 22:55,0111
|
||||
2023-07-21 23:10,0111
|
75
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-6.dat
Normal file
75
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,75 @@
|
||||
2023-07-21 00:00,0000
|
||||
2023-07-21 00:15,0000
|
||||
2023-07-21 00:45,0000
|
||||
2023-07-21 01:15,0000
|
||||
2023-07-21 01:30,0000
|
||||
2023-07-21 01:45,0000
|
||||
2023-07-21 02:15,0000
|
||||
2023-07-21 02:30,0000
|
||||
2023-07-21 02:45,0000
|
||||
2023-07-21 03:00,0000
|
||||
2023-07-21 03:15,0000
|
||||
2023-07-21 03:30,0000
|
||||
2023-07-21 03:45,0000
|
||||
2023-07-21 04:15,0000
|
||||
2023-07-21 04:30,0000
|
||||
2023-07-21 04:45,0000
|
||||
2023-07-21 05:00,0000
|
||||
2023-07-21 05:45,0000
|
||||
2023-07-21 06:00,0000
|
||||
2023-07-21 06:15,0000
|
||||
2023-07-21 06:30,0000
|
||||
2023-07-21 06:45,0000
|
||||
2023-07-21 07:00,0000
|
||||
2023-07-21 07:15,0000
|
||||
2023-07-21 07:45,0000
|
||||
2023-07-21 08:15,0000
|
||||
2023-07-21 08:30,0000
|
||||
2023-07-21 09:00,0000
|
||||
2023-07-21 09:15,0000
|
||||
2023-07-21 09:30,0000
|
||||
2023-07-21 09:45,0000
|
||||
2023-07-21 10:00,0000
|
||||
2023-07-21 10:15,0000
|
||||
2023-07-21 11:00,0000
|
||||
2023-07-21 11:15,0000
|
||||
2023-07-21 11:30,0000
|
||||
2023-07-21 11:45,0000
|
||||
2023-07-21 12:00,0000
|
||||
2023-07-21 12:15,0000
|
||||
2023-07-21 12:30,0000
|
||||
2023-07-21 13:15,0000
|
||||
2023-07-21 13:30,0000
|
||||
2023-07-21 13:45,0000
|
||||
2023-07-21 14:15,0000
|
||||
2023-07-21 14:30,0000
|
||||
2023-07-21 14:45,0000
|
||||
2023-07-21 15:00,0000
|
||||
2023-07-21 15:15,0000
|
||||
2023-07-21 15:30,0000
|
||||
2023-07-21 15:45,0000
|
||||
2023-07-21 16:00,0000
|
||||
2023-07-21 16:15,0000
|
||||
2023-07-21 16:30,0000
|
||||
2023-07-21 16:45,0000
|
||||
2023-07-21 17:00,0000
|
||||
2023-07-21 17:15,0000
|
||||
2023-07-21 17:30,0000
|
||||
2023-07-21 17:45,0000
|
||||
2023-07-21 18:15,0000
|
||||
2023-07-21 18:30,0000
|
||||
2023-07-21 18:45,0000
|
||||
2023-07-21 19:00,0000
|
||||
2023-07-21 19:15,0000
|
||||
2023-07-21 19:45,0000
|
||||
2023-07-21 20:15,0000
|
||||
2023-07-21 20:45,0000
|
||||
2023-07-21 21:00,0000
|
||||
2023-07-21 21:15,0000
|
||||
2023-07-21 21:30,0000
|
||||
2023-07-21 22:00,0000
|
||||
2023-07-21 22:31,0000
|
||||
2023-07-21 22:45,0000
|
||||
2023-07-21 23:15,0000
|
||||
2023-07-21 23:30,0000
|
||||
2023-07-21 23:45,0000
|
71
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-8.dat
Normal file
71
aprs_utils/aprs_log/2023-07-21_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-21 00:05,0011
|
||||
2023-07-21 00:20,0011
|
||||
2023-07-21 00:35,0011
|
||||
2023-07-21 00:50,0011
|
||||
2023-07-21 01:20,0011
|
||||
2023-07-21 01:35,0011
|
||||
2023-07-21 01:50,0011
|
||||
2023-07-21 02:05,0011
|
||||
2023-07-21 02:20,0011
|
||||
2023-07-21 03:05,0011
|
||||
2023-07-21 03:20,0011
|
||||
2023-07-21 03:35,0011
|
||||
2023-07-21 03:50,0011
|
||||
2023-07-21 04:05,0011
|
||||
2023-07-21 04:20,0011
|
||||
2023-07-21 04:35,0011
|
||||
2023-07-21 05:05,0011
|
||||
2023-07-21 05:20,0011
|
||||
2023-07-21 05:35,0011
|
||||
2023-07-21 05:50,0011
|
||||
2023-07-21 06:05,0011
|
||||
2023-07-21 06:20,0011
|
||||
2023-07-21 06:35,0011
|
||||
2023-07-21 07:20,0011
|
||||
2023-07-21 07:35,0011
|
||||
2023-07-21 07:50,0011
|
||||
2023-07-21 08:05,0011
|
||||
2023-07-21 08:20,0011
|
||||
2023-07-21 08:50,0011
|
||||
2023-07-21 09:05,0011
|
||||
2023-07-21 09:50,0011
|
||||
2023-07-21 10:05,0011
|
||||
2023-07-21 10:20,0011
|
||||
2023-07-21 10:35,0011
|
||||
2023-07-21 10:50,0011
|
||||
2023-07-21 11:20,0011
|
||||
2023-07-21 11:35,0011
|
||||
2023-07-21 12:05,0011
|
||||
2023-07-21 12:20,0011
|
||||
2023-07-21 12:35,0011
|
||||
2023-07-21 12:50,0011
|
||||
2023-07-21 13:05,0011
|
||||
2023-07-21 13:20,0011
|
||||
2023-07-21 13:50,0011
|
||||
2023-07-21 14:20,0011
|
||||
2023-07-21 14:50,0011
|
||||
2023-07-21 15:05,0011
|
||||
2023-07-21 15:35,0011
|
||||
2023-07-21 15:50,0011
|
||||
2023-07-21 16:35,0011
|
||||
2023-07-21 16:50,0011
|
||||
2023-07-21 17:35,0011
|
||||
2023-07-21 18:05,0011
|
||||
2023-07-21 18:20,0011
|
||||
2023-07-21 18:35,0011
|
||||
2023-07-21 19:05,0011
|
||||
2023-07-21 19:20,0011
|
||||
2023-07-21 19:35,0011
|
||||
2023-07-21 19:50,0011
|
||||
2023-07-21 20:20,0011
|
||||
2023-07-21 20:35,0011
|
||||
2023-07-21 20:50,0011
|
||||
2023-07-21 21:05,0011
|
||||
2023-07-21 21:20,0011
|
||||
2023-07-21 21:35,0011
|
||||
2023-07-21 22:05,0011
|
||||
2023-07-21 22:21,0011
|
||||
2023-07-21 22:50,0011
|
||||
2023-07-21 23:05,0011
|
||||
2023-07-21 23:20,0011
|
||||
2023-07-21 23:50,0011
|
80
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-5.dat
Normal file
80
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,80 @@
|
||||
2023-07-22 00:10,0111
|
||||
2023-07-22 00:25,0111
|
||||
2023-07-22 00:40,0111
|
||||
2023-07-22 00:55,0111
|
||||
2023-07-22 01:10,0111
|
||||
2023-07-22 01:25,0111
|
||||
2023-07-22 01:40,0111
|
||||
2023-07-22 01:55,0111
|
||||
2023-07-22 02:10,0111
|
||||
2023-07-22 02:25,0111
|
||||
2023-07-22 02:40,0111
|
||||
2023-07-22 03:10,0111
|
||||
2023-07-22 03:25,0111
|
||||
2023-07-22 03:40,0111
|
||||
2023-07-22 03:55,0111
|
||||
2023-07-22 04:10,0111
|
||||
2023-07-22 04:25,0111
|
||||
2023-07-22 04:40,0111
|
||||
2023-07-22 05:10,0111
|
||||
2023-07-22 05:25,0111
|
||||
2023-07-22 05:40,0111
|
||||
2023-07-22 06:10,0111
|
||||
2023-07-22 06:25,0111
|
||||
2023-07-22 06:40,0111
|
||||
2023-07-22 06:55,0111
|
||||
2023-07-22 07:10,0111
|
||||
2023-07-22 07:25,0111
|
||||
2023-07-22 07:40,0111
|
||||
2023-07-22 07:55,0111
|
||||
2023-07-22 08:25,0111
|
||||
2023-07-22 08:55,0111
|
||||
2023-07-22 09:10,0111
|
||||
2023-07-22 09:25,0111
|
||||
2023-07-22 09:40,0111
|
||||
2023-07-22 09:55,0111
|
||||
2023-07-22 10:10,0111
|
||||
2023-07-22 10:25,0111
|
||||
2023-07-22 10:40,0111
|
||||
2023-07-22 11:10,0111
|
||||
2023-07-22 11:40,0111
|
||||
2023-07-22 11:55,0111
|
||||
2023-07-22 12:25,0111
|
||||
2023-07-22 12:40,0111
|
||||
2023-07-22 12:55,0111
|
||||
2023-07-22 13:10,0111
|
||||
2023-07-22 13:40,0111
|
||||
2023-07-22 14:10,0111
|
||||
2023-07-22 14:25,0111
|
||||
2023-07-22 14:40,0111
|
||||
2023-07-22 14:55,0111
|
||||
2023-07-22 15:10,0111
|
||||
2023-07-22 15:25,0111
|
||||
2023-07-22 15:40,0111
|
||||
2023-07-22 15:55,0111
|
||||
2023-07-22 16:10,0111
|
||||
2023-07-22 16:25,0111
|
||||
2023-07-22 16:40,0111
|
||||
2023-07-22 17:10,0111
|
||||
2023-07-22 17:25,0111
|
||||
2023-07-22 18:10,0111
|
||||
2023-07-22 18:25,0111
|
||||
2023-07-22 18:55,0111
|
||||
2023-07-22 19:10,0111
|
||||
2023-07-22 19:25,0111
|
||||
2023-07-22 19:40,0111
|
||||
2023-07-22 19:55,0111
|
||||
2023-07-22 20:25,0111
|
||||
2023-07-22 20:40,0111
|
||||
2023-07-22 20:55,0111
|
||||
2023-07-22 21:10,0111
|
||||
2023-07-22 21:25,0111
|
||||
2023-07-22 21:40,0111
|
||||
2023-07-22 21:55,0111
|
||||
2023-07-22 22:10,0111
|
||||
2023-07-22 22:25,0111
|
||||
2023-07-22 22:56,0111
|
||||
2023-07-22 23:10,0111
|
||||
2023-07-22 23:26,0111
|
||||
2023-07-22 23:40,0111
|
||||
2023-07-22 23:55,0111
|
62
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-6.dat
Normal file
62
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,62 @@
|
||||
2023-07-22 00:15,0000
|
||||
2023-07-22 00:30,0000
|
||||
2023-07-22 00:45,0000
|
||||
2023-07-22 01:15,0000
|
||||
2023-07-22 01:45,0000
|
||||
2023-07-22 02:00,0000
|
||||
2023-07-22 02:15,0000
|
||||
2023-07-22 03:00,0000
|
||||
2023-07-22 03:15,0000
|
||||
2023-07-22 03:45,0000
|
||||
2023-07-22 04:00,0000
|
||||
2023-07-22 04:15,0000
|
||||
2023-07-22 04:30,0000
|
||||
2023-07-22 04:45,0000
|
||||
2023-07-22 05:00,0000
|
||||
2023-07-22 05:30,0000
|
||||
2023-07-22 05:45,0000
|
||||
2023-07-22 06:00,0000
|
||||
2023-07-22 06:30,0000
|
||||
2023-07-22 06:45,0000
|
||||
2023-07-22 07:15,0000
|
||||
2023-07-22 08:00,0000
|
||||
2023-07-22 09:00,0000
|
||||
2023-07-22 09:30,0000
|
||||
2023-07-22 09:45,0000
|
||||
2023-07-22 10:00,0000
|
||||
2023-07-22 10:15,0000
|
||||
2023-07-22 10:30,0000
|
||||
2023-07-22 11:00,0000
|
||||
2023-07-22 11:15,0000
|
||||
2023-07-22 11:30,0000
|
||||
2023-07-22 11:45,0000
|
||||
2023-07-22 12:00,0000
|
||||
2023-07-22 12:15,0000
|
||||
2023-07-22 12:30,0000
|
||||
2023-07-22 13:00,0000
|
||||
2023-07-22 13:30,0000
|
||||
2023-07-22 13:45,0000
|
||||
2023-07-22 14:00,0000
|
||||
2023-07-22 14:15,0000
|
||||
2023-07-22 14:30,0000
|
||||
2023-07-22 14:45,0000
|
||||
2023-07-22 15:15,0000
|
||||
2023-07-22 15:30,0000
|
||||
2023-07-22 15:45,0000
|
||||
2023-07-22 16:30,0000
|
||||
2023-07-22 16:45,0000
|
||||
2023-07-22 17:15,0000
|
||||
2023-07-22 17:30,0000
|
||||
2023-07-22 18:30,0000
|
||||
2023-07-22 18:45,0000
|
||||
2023-07-22 19:00,0000
|
||||
2023-07-22 19:15,0000
|
||||
2023-07-22 19:45,0000
|
||||
2023-07-22 20:15,0000
|
||||
2023-07-22 20:45,0000
|
||||
2023-07-22 21:00,0000
|
||||
2023-07-22 21:15,0000
|
||||
2023-07-22 22:01,0000
|
||||
2023-07-22 23:00,0000
|
||||
2023-07-22 23:16,0000
|
||||
2023-07-22 23:45,0000
|
80
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-8.dat
Normal file
80
aprs_utils/aprs_log/2023-07-22_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,80 @@
|
||||
2023-07-22 00:05,0011
|
||||
2023-07-22 00:35,0011
|
||||
2023-07-22 01:05,0011
|
||||
2023-07-22 01:20,0011
|
||||
2023-07-22 01:51,0011
|
||||
2023-07-22 02:05,0011
|
||||
2023-07-22 02:20,0011
|
||||
2023-07-22 02:35,0011
|
||||
2023-07-22 03:05,0011
|
||||
2023-07-22 03:20,0011
|
||||
2023-07-22 03:35,0011
|
||||
2023-07-22 04:05,0011
|
||||
2023-07-22 04:20,0011
|
||||
2023-07-22 04:35,0011
|
||||
2023-07-22 04:50,0011
|
||||
2023-07-22 05:05,0011
|
||||
2023-07-22 05:21,0011
|
||||
2023-07-22 05:35,0011
|
||||
2023-07-22 05:51,0011
|
||||
2023-07-22 06:20,0011
|
||||
2023-07-22 06:50,0011
|
||||
2023-07-22 07:05,0011
|
||||
2023-07-22 07:20,0011
|
||||
2023-07-22 07:35,0011
|
||||
2023-07-22 07:50,0011
|
||||
2023-07-22 08:05,0011
|
||||
2023-07-22 08:35,0011
|
||||
2023-07-22 08:50,0011
|
||||
2023-07-22 09:20,0011
|
||||
2023-07-22 09:35,0011
|
||||
2023-07-22 09:50,0011
|
||||
2023-07-22 10:05,0011
|
||||
2023-07-22 10:20,0011
|
||||
2023-07-22 10:50,0011
|
||||
2023-07-22 11:05,0011
|
||||
2023-07-22 11:20,0011
|
||||
2023-07-22 11:50,0011
|
||||
2023-07-22 12:20,0011
|
||||
2023-07-22 12:35,0011
|
||||
2023-07-22 12:50,0011
|
||||
2023-07-22 13:05,0011
|
||||
2023-07-22 13:20,0011
|
||||
2023-07-22 13:35,0011
|
||||
2023-07-22 13:50,0011
|
||||
2023-07-22 14:05,0011
|
||||
2023-07-22 14:20,0011
|
||||
2023-07-22 14:35,0011
|
||||
2023-07-22 14:50,0011
|
||||
2023-07-22 15:20,0011
|
||||
2023-07-22 15:35,0011
|
||||
2023-07-22 15:50,0011
|
||||
2023-07-22 16:05,0011
|
||||
2023-07-22 16:20,0011
|
||||
2023-07-22 16:50,0011
|
||||
2023-07-22 17:05,0011
|
||||
2023-07-22 17:20,0011
|
||||
2023-07-22 17:50,0011
|
||||
2023-07-22 18:05,0011
|
||||
2023-07-22 18:20,0011
|
||||
2023-07-22 18:35,0011
|
||||
2023-07-22 18:50,0011
|
||||
2023-07-22 19:05,0011
|
||||
2023-07-22 19:20,0011
|
||||
2023-07-22 19:35,0011
|
||||
2023-07-22 19:50,0011
|
||||
2023-07-22 20:05,0011
|
||||
2023-07-22 20:20,0011
|
||||
2023-07-22 20:35,0011
|
||||
2023-07-22 20:50,0011
|
||||
2023-07-22 21:05,0011
|
||||
2023-07-22 21:20,0011
|
||||
2023-07-22 21:50,0011
|
||||
2023-07-22 22:05,0011
|
||||
2023-07-22 22:20,0011
|
||||
2023-07-22 22:36,0011
|
||||
2023-07-22 22:50,0011
|
||||
2023-07-22 23:06,0011
|
||||
2023-07-22 23:20,0011
|
||||
2023-07-22 23:36,0011
|
||||
2023-07-22 23:50,0011
|
78
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-5.dat
Normal file
78
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-23 00:10,0111
|
||||
2023-07-23 00:40,0111
|
||||
2023-07-23 00:56,0111
|
||||
2023-07-23 01:10,0111
|
||||
2023-07-23 01:40,0111
|
||||
2023-07-23 01:56,0111
|
||||
2023-07-23 02:10,0111
|
||||
2023-07-23 02:25,0111
|
||||
2023-07-23 02:40,0111
|
||||
2023-07-23 02:55,0111
|
||||
2023-07-23 03:26,0111
|
||||
2023-07-23 03:40,0111
|
||||
2023-07-23 04:25,0111
|
||||
2023-07-23 05:10,0111
|
||||
2023-07-23 05:25,0111
|
||||
2023-07-23 05:40,0111
|
||||
2023-07-23 05:55,0111
|
||||
2023-07-23 06:10,0111
|
||||
2023-07-23 06:25,0111
|
||||
2023-07-23 06:40,0111
|
||||
2023-07-23 06:55,0111
|
||||
2023-07-23 07:25,0111
|
||||
2023-07-23 07:40,0111
|
||||
2023-07-23 07:55,0111
|
||||
2023-07-23 08:10,0111
|
||||
2023-07-23 08:25,0111
|
||||
2023-07-23 08:40,0111
|
||||
2023-07-23 09:10,0111
|
||||
2023-07-23 09:25,0111
|
||||
2023-07-23 09:40,0111
|
||||
2023-07-23 09:55,0111
|
||||
2023-07-23 10:10,0111
|
||||
2023-07-23 10:25,0111
|
||||
2023-07-23 10:40,0111
|
||||
2023-07-23 11:10,0111
|
||||
2023-07-23 11:25,0111
|
||||
2023-07-23 11:40,0111
|
||||
2023-07-23 11:55,0111
|
||||
2023-07-23 12:10,0111
|
||||
2023-07-23 12:25,0111
|
||||
2023-07-23 12:40,0111
|
||||
2023-07-23 12:55,0111
|
||||
2023-07-23 13:10,0111
|
||||
2023-07-23 13:25,0111
|
||||
2023-07-23 13:40,0111
|
||||
2023-07-23 13:55,0111
|
||||
2023-07-23 14:25,0111
|
||||
2023-07-23 14:40,0111
|
||||
2023-07-23 14:55,0111
|
||||
2023-07-23 15:26,0111
|
||||
2023-07-23 15:40,0111
|
||||
2023-07-23 15:55,0111
|
||||
2023-07-23 16:25,0111
|
||||
2023-07-23 16:40,0111
|
||||
2023-07-23 16:55,0111
|
||||
2023-07-23 17:11,0111
|
||||
2023-07-23 17:40,0111
|
||||
2023-07-23 17:55,0111
|
||||
2023-07-23 18:10,0111
|
||||
2023-07-23 18:25,0111
|
||||
2023-07-23 18:40,0111
|
||||
2023-07-23 18:55,0111
|
||||
2023-07-23 19:10,0111
|
||||
2023-07-23 19:25,0111
|
||||
2023-07-23 19:40,0111
|
||||
2023-07-23 19:55,0111
|
||||
2023-07-23 20:10,0111
|
||||
2023-07-23 20:25,0111
|
||||
2023-07-23 20:41,0111
|
||||
2023-07-23 20:56,0111
|
||||
2023-07-23 21:10,0111
|
||||
2023-07-23 21:41,0111
|
||||
2023-07-23 21:55,0111
|
||||
2023-07-23 22:10,0111
|
||||
2023-07-23 22:25,0111
|
||||
2023-07-23 22:40,0111
|
||||
2023-07-23 23:10,0111
|
||||
2023-07-23 23:55,0111
|
71
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-6.dat
Normal file
71
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-23 00:15,0000
|
||||
2023-07-23 00:30,0000
|
||||
2023-07-23 01:00,0000
|
||||
2023-07-23 01:15,0000
|
||||
2023-07-23 01:45,0000
|
||||
2023-07-23 02:00,0000
|
||||
2023-07-23 02:16,0000
|
||||
2023-07-23 02:30,0000
|
||||
2023-07-23 02:46,0000
|
||||
2023-07-23 03:00,0000
|
||||
2023-07-23 03:31,0000
|
||||
2023-07-23 03:45,0000
|
||||
2023-07-23 04:00,0000
|
||||
2023-07-23 04:45,0000
|
||||
2023-07-23 05:00,0000
|
||||
2023-07-23 05:15,0000
|
||||
2023-07-23 05:30,0000
|
||||
2023-07-23 06:00,0000
|
||||
2023-07-23 06:15,0000
|
||||
2023-07-23 06:45,0000
|
||||
2023-07-23 07:00,0000
|
||||
2023-07-23 07:15,0000
|
||||
2023-07-23 07:30,0000
|
||||
2023-07-23 07:45,0000
|
||||
2023-07-23 08:15,0000
|
||||
2023-07-23 08:30,0000
|
||||
2023-07-23 08:45,0000
|
||||
2023-07-23 09:00,0000
|
||||
2023-07-23 09:30,0000
|
||||
2023-07-23 10:15,0000
|
||||
2023-07-23 11:15,0000
|
||||
2023-07-23 11:45,0000
|
||||
2023-07-23 12:00,0000
|
||||
2023-07-23 12:15,0000
|
||||
2023-07-23 12:30,0000
|
||||
2023-07-23 12:45,0000
|
||||
2023-07-23 13:00,0000
|
||||
2023-07-23 13:30,0000
|
||||
2023-07-23 13:45,0000
|
||||
2023-07-23 14:00,0000
|
||||
2023-07-23 14:16,0000
|
||||
2023-07-23 14:31,0000
|
||||
2023-07-23 14:45,0000
|
||||
2023-07-23 15:00,0000
|
||||
2023-07-23 15:16,0000
|
||||
2023-07-23 15:30,0000
|
||||
2023-07-23 15:46,0000
|
||||
2023-07-23 16:15,0000
|
||||
2023-07-23 16:30,0000
|
||||
2023-07-23 16:45,0000
|
||||
2023-07-23 17:00,0000
|
||||
2023-07-23 17:15,0000
|
||||
2023-07-23 17:30,0000
|
||||
2023-07-23 17:45,0000
|
||||
2023-07-23 18:00,0000
|
||||
2023-07-23 18:45,0000
|
||||
2023-07-23 19:00,0000
|
||||
2023-07-23 19:30,0000
|
||||
2023-07-23 19:45,0000
|
||||
2023-07-23 20:00,0000
|
||||
2023-07-23 20:15,0000
|
||||
2023-07-23 20:30,0000
|
||||
2023-07-23 20:45,0000
|
||||
2023-07-23 21:16,0000
|
||||
2023-07-23 21:30,0000
|
||||
2023-07-23 21:45,0000
|
||||
2023-07-23 22:15,0000
|
||||
2023-07-23 22:30,0000
|
||||
2023-07-23 22:45,0000
|
||||
2023-07-23 23:15,0000
|
||||
2023-07-23 23:45,0000
|
71
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-8.dat
Normal file
71
aprs_utils/aprs_log/2023-07-23_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-23 00:20,0011
|
||||
2023-07-23 00:35,0011
|
||||
2023-07-23 00:50,0011
|
||||
2023-07-23 01:06,0011
|
||||
2023-07-23 01:20,0011
|
||||
2023-07-23 01:36,0011
|
||||
2023-07-23 01:50,0011
|
||||
2023-07-23 02:20,0011
|
||||
2023-07-23 02:35,0011
|
||||
2023-07-23 02:50,0011
|
||||
2023-07-23 03:20,0011
|
||||
2023-07-23 03:35,0011
|
||||
2023-07-23 03:50,0011
|
||||
2023-07-23 04:35,0011
|
||||
2023-07-23 04:50,0011
|
||||
2023-07-23 05:05,0011
|
||||
2023-07-23 05:20,0011
|
||||
2023-07-23 05:35,0011
|
||||
2023-07-23 05:50,0011
|
||||
2023-07-23 06:20,0011
|
||||
2023-07-23 06:35,0011
|
||||
2023-07-23 06:50,0011
|
||||
2023-07-23 07:05,0011
|
||||
2023-07-23 07:20,0011
|
||||
2023-07-23 07:35,0011
|
||||
2023-07-23 07:50,0011
|
||||
2023-07-23 08:05,0011
|
||||
2023-07-23 08:20,0011
|
||||
2023-07-23 08:35,0011
|
||||
2023-07-23 09:20,0011
|
||||
2023-07-23 09:35,0011
|
||||
2023-07-23 09:50,0011
|
||||
2023-07-23 10:05,0011
|
||||
2023-07-23 10:20,0011
|
||||
2023-07-23 10:35,0011
|
||||
2023-07-23 11:05,0011
|
||||
2023-07-23 11:20,0011
|
||||
2023-07-23 11:35,0011
|
||||
2023-07-23 11:50,0011
|
||||
2023-07-23 12:05,0011
|
||||
2023-07-23 12:20,0011
|
||||
2023-07-23 12:35,0011
|
||||
2023-07-23 12:50,0011
|
||||
2023-07-23 13:05,0011
|
||||
2023-07-23 13:20,0011
|
||||
2023-07-23 13:51,0011
|
||||
2023-07-23 14:20,0011
|
||||
2023-07-23 14:35,0011
|
||||
2023-07-23 15:05,0011
|
||||
2023-07-23 15:21,0011
|
||||
2023-07-23 15:36,0011
|
||||
2023-07-23 15:50,0011
|
||||
2023-07-23 16:05,0011
|
||||
2023-07-23 16:20,0011
|
||||
2023-07-23 17:05,0011
|
||||
2023-07-23 17:20,0011
|
||||
2023-07-23 17:36,0011
|
||||
2023-07-23 17:50,0011
|
||||
2023-07-23 18:05,0011
|
||||
2023-07-23 18:20,0011
|
||||
2023-07-23 18:50,0011
|
||||
2023-07-23 19:05,0011
|
||||
2023-07-23 19:35,0011
|
||||
2023-07-23 20:20,0011
|
||||
2023-07-23 20:50,0011
|
||||
2023-07-23 21:05,0011
|
||||
2023-07-23 21:35,0011
|
||||
2023-07-23 22:05,0011
|
||||
2023-07-23 22:20,0011
|
||||
2023-07-23 23:05,0011
|
||||
2023-07-23 23:20,0011
|
71
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-5.dat
Normal file
71
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-24 00:11,0111
|
||||
2023-07-24 00:26,0111
|
||||
2023-07-24 00:40,0111
|
||||
2023-07-24 00:55,0111
|
||||
2023-07-24 01:10,0111
|
||||
2023-07-24 01:26,0111
|
||||
2023-07-24 01:40,0111
|
||||
2023-07-24 02:11,0111
|
||||
2023-07-24 02:40,0111
|
||||
2023-07-24 02:56,0111
|
||||
2023-07-24 03:10,0111
|
||||
2023-07-24 03:40,0111
|
||||
2023-07-24 03:55,0111
|
||||
2023-07-24 04:10,0111
|
||||
2023-07-24 04:25,0111
|
||||
2023-07-24 04:55,0111
|
||||
2023-07-24 05:40,0111
|
||||
2023-07-24 05:56,0111
|
||||
2023-07-24 06:10,0111
|
||||
2023-07-24 06:25,0111
|
||||
2023-07-24 06:40,0111
|
||||
2023-07-24 06:55,0111
|
||||
2023-07-24 07:11,0111
|
||||
2023-07-24 07:25,0111
|
||||
2023-07-24 07:40,0111
|
||||
2023-07-24 07:55,0111
|
||||
2023-07-24 08:25,0111
|
||||
2023-07-24 08:56,0111
|
||||
2023-07-24 09:11,0111
|
||||
2023-07-24 09:25,0111
|
||||
2023-07-24 10:10,0111
|
||||
2023-07-24 10:25,0111
|
||||
2023-07-24 11:40,0111
|
||||
2023-07-24 11:55,0111
|
||||
2023-07-24 12:11,0111
|
||||
2023-07-24 12:25,0111
|
||||
2023-07-24 12:55,0111
|
||||
2023-07-24 13:10,0111
|
||||
2023-07-24 13:25,0111
|
||||
2023-07-24 13:40,0111
|
||||
2023-07-24 14:10,0111
|
||||
2023-07-24 14:25,0111
|
||||
2023-07-24 14:40,0111
|
||||
2023-07-24 14:56,0111
|
||||
2023-07-24 15:10,0111
|
||||
2023-07-24 15:41,0111
|
||||
2023-07-24 15:55,0111
|
||||
2023-07-24 16:11,0111
|
||||
2023-07-24 16:26,0111
|
||||
2023-07-24 16:40,0111
|
||||
2023-07-24 17:11,0111
|
||||
2023-07-24 17:25,0111
|
||||
2023-07-24 17:40,0111
|
||||
2023-07-24 17:55,0111
|
||||
2023-07-24 18:11,0111
|
||||
2023-07-24 18:25,0111
|
||||
2023-07-24 18:55,0111
|
||||
2023-07-24 19:25,0111
|
||||
2023-07-24 19:55,0111
|
||||
2023-07-24 20:11,0111
|
||||
2023-07-24 20:26,0111
|
||||
2023-07-24 20:40,0111
|
||||
2023-07-24 20:56,0111
|
||||
2023-07-24 21:10,0111
|
||||
2023-07-24 21:25,0111
|
||||
2023-07-24 21:55,0111
|
||||
2023-07-24 22:26,0111
|
||||
2023-07-24 22:41,0111
|
||||
2023-07-24 23:11,0111
|
||||
2023-07-24 23:26,0111
|
||||
2023-07-24 23:55,0111
|
71
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-6.dat
Normal file
71
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-24 00:00,0000
|
||||
2023-07-24 00:16,0000
|
||||
2023-07-24 00:30,0000
|
||||
2023-07-24 00:46,0000
|
||||
2023-07-24 01:01,0000
|
||||
2023-07-24 01:15,0000
|
||||
2023-07-24 01:45,0000
|
||||
2023-07-24 02:15,0000
|
||||
2023-07-24 02:31,0000
|
||||
2023-07-24 02:45,0000
|
||||
2023-07-24 03:00,0000
|
||||
2023-07-24 03:15,0000
|
||||
2023-07-24 03:30,0000
|
||||
2023-07-24 03:45,0000
|
||||
2023-07-24 04:00,0000
|
||||
2023-07-24 04:15,0000
|
||||
2023-07-24 04:30,0000
|
||||
2023-07-24 04:45,0000
|
||||
2023-07-24 05:00,0000
|
||||
2023-07-24 05:15,0000
|
||||
2023-07-24 05:30,0000
|
||||
2023-07-24 05:46,0000
|
||||
2023-07-24 06:30,0000
|
||||
2023-07-24 06:46,0000
|
||||
2023-07-24 07:01,0000
|
||||
2023-07-24 07:16,0000
|
||||
2023-07-24 08:15,0000
|
||||
2023-07-24 09:00,0000
|
||||
2023-07-24 09:16,0000
|
||||
2023-07-24 10:16,0000
|
||||
2023-07-24 11:00,0000
|
||||
2023-07-24 11:15,0000
|
||||
2023-07-24 11:30,0000
|
||||
2023-07-24 12:01,0000
|
||||
2023-07-24 12:15,0000
|
||||
2023-07-24 12:45,0000
|
||||
2023-07-24 13:00,0000
|
||||
2023-07-24 13:15,0000
|
||||
2023-07-24 13:30,0000
|
||||
2023-07-24 13:45,0000
|
||||
2023-07-24 14:00,0000
|
||||
2023-07-24 14:16,0000
|
||||
2023-07-24 15:00,0000
|
||||
2023-07-24 15:30,0000
|
||||
2023-07-24 15:46,0000
|
||||
2023-07-24 16:00,0000
|
||||
2023-07-24 16:15,0000
|
||||
2023-07-24 16:30,0000
|
||||
2023-07-24 16:45,0000
|
||||
2023-07-24 17:00,0000
|
||||
2023-07-24 17:15,0000
|
||||
2023-07-24 17:30,0000
|
||||
2023-07-24 17:45,0000
|
||||
2023-07-24 18:01,0000
|
||||
2023-07-24 18:15,0000
|
||||
2023-07-24 18:46,0000
|
||||
2023-07-24 19:00,0000
|
||||
2023-07-24 19:15,0000
|
||||
2023-07-24 19:45,0000
|
||||
2023-07-24 20:01,0000
|
||||
2023-07-24 20:16,0000
|
||||
2023-07-24 20:30,0000
|
||||
2023-07-24 20:46,0000
|
||||
2023-07-24 21:00,0000
|
||||
2023-07-24 21:31,0000
|
||||
2023-07-24 22:16,0000
|
||||
2023-07-24 22:31,0000
|
||||
2023-07-24 22:45,0000
|
||||
2023-07-24 23:16,0000
|
||||
2023-07-24 23:30,0000
|
||||
2023-07-24 23:45,0000
|
80
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-8.dat
Normal file
80
aprs_utils/aprs_log/2023-07-24_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,80 @@
|
||||
2023-07-24 00:05,0011
|
||||
2023-07-24 00:20,0011
|
||||
2023-07-24 00:36,0011
|
||||
2023-07-24 00:51,0011
|
||||
2023-07-24 01:06,0011
|
||||
2023-07-24 01:20,0011
|
||||
2023-07-24 01:35,0011
|
||||
2023-07-24 01:50,0011
|
||||
2023-07-24 02:05,0011
|
||||
2023-07-24 02:20,0011
|
||||
2023-07-24 02:50,0011
|
||||
2023-07-24 03:05,0011
|
||||
2023-07-24 03:20,0011
|
||||
2023-07-24 03:35,0011
|
||||
2023-07-24 03:51,0011
|
||||
2023-07-24 04:06,0011
|
||||
2023-07-24 04:36,0011
|
||||
2023-07-24 04:51,0011
|
||||
2023-07-24 05:05,0011
|
||||
2023-07-24 05:35,0011
|
||||
2023-07-24 05:51,0011
|
||||
2023-07-24 06:05,0011
|
||||
2023-07-24 06:20,0011
|
||||
2023-07-24 06:36,0011
|
||||
2023-07-24 07:06,0011
|
||||
2023-07-24 07:20,0011
|
||||
2023-07-24 07:35,0011
|
||||
2023-07-24 07:50,0011
|
||||
2023-07-24 08:05,0011
|
||||
2023-07-24 08:20,0011
|
||||
2023-07-24 08:35,0011
|
||||
2023-07-24 08:51,0011
|
||||
2023-07-24 09:06,0011
|
||||
2023-07-24 09:20,0011
|
||||
2023-07-24 09:35,0011
|
||||
2023-07-24 10:05,0011
|
||||
2023-07-24 10:21,0011
|
||||
2023-07-24 10:36,0011
|
||||
2023-07-24 11:06,0011
|
||||
2023-07-24 11:21,0011
|
||||
2023-07-24 11:35,0011
|
||||
2023-07-24 12:05,0011
|
||||
2023-07-24 12:21,0011
|
||||
2023-07-24 12:35,0011
|
||||
2023-07-24 13:06,0011
|
||||
2023-07-24 13:20,0011
|
||||
2023-07-24 13:35,0011
|
||||
2023-07-24 13:50,0011
|
||||
2023-07-24 14:05,0011
|
||||
2023-07-24 14:21,0011
|
||||
2023-07-24 14:51,0011
|
||||
2023-07-24 15:05,0011
|
||||
2023-07-24 15:20,0011
|
||||
2023-07-24 15:35,0011
|
||||
2023-07-24 15:50,0011
|
||||
2023-07-24 16:05,0011
|
||||
2023-07-24 16:21,0011
|
||||
2023-07-24 16:35,0011
|
||||
2023-07-24 16:50,0011
|
||||
2023-07-24 17:06,0011
|
||||
2023-07-24 17:36,0011
|
||||
2023-07-24 17:51,0011
|
||||
2023-07-24 18:05,0011
|
||||
2023-07-24 18:21,0011
|
||||
2023-07-24 18:36,0011
|
||||
2023-07-24 18:51,0011
|
||||
2023-07-24 19:06,0011
|
||||
2023-07-24 19:20,0011
|
||||
2023-07-24 19:36,0011
|
||||
2023-07-24 19:50,0011
|
||||
2023-07-24 20:05,0011
|
||||
2023-07-24 20:50,0011
|
||||
2023-07-24 21:20,0011
|
||||
2023-07-24 21:35,0011
|
||||
2023-07-24 22:05,0011
|
||||
2023-07-24 22:20,0011
|
||||
2023-07-24 22:35,0011
|
||||
2023-07-24 23:05,0011
|
||||
2023-07-24 23:35,0011
|
||||
2023-07-24 23:50,0011
|
70
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-5.dat
Normal file
70
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,70 @@
|
||||
2023-07-25 00:11,0111
|
||||
2023-07-25 00:25,0111
|
||||
2023-07-25 00:40,0111
|
||||
2023-07-25 00:55,0111
|
||||
2023-07-25 01:10,0111
|
||||
2023-07-25 01:26,0111
|
||||
2023-07-25 01:41,0111
|
||||
2023-07-25 01:56,0111
|
||||
2023-07-25 02:11,0111
|
||||
2023-07-25 02:26,0111
|
||||
2023-07-25 02:40,0111
|
||||
2023-07-25 02:55,0111
|
||||
2023-07-25 03:11,0111
|
||||
2023-07-25 03:25,0111
|
||||
2023-07-25 03:41,0111
|
||||
2023-07-25 04:10,0111
|
||||
2023-07-25 04:25,0111
|
||||
2023-07-25 04:40,0111
|
||||
2023-07-25 05:11,0111
|
||||
2023-07-25 05:25,0111
|
||||
2023-07-25 05:40,0111
|
||||
2023-07-25 05:56,0111
|
||||
2023-07-25 06:10,0111
|
||||
2023-07-25 06:25,0111
|
||||
2023-07-25 06:55,0111
|
||||
2023-07-25 07:26,0111
|
||||
2023-07-25 07:40,0111
|
||||
2023-07-25 07:56,0111
|
||||
2023-07-25 08:26,0111
|
||||
2023-07-25 08:41,0111
|
||||
2023-07-25 08:55,0111
|
||||
2023-07-25 09:11,0111
|
||||
2023-07-25 09:25,0111
|
||||
2023-07-25 09:40,0111
|
||||
2023-07-25 09:56,0111
|
||||
2023-07-25 10:10,0111
|
||||
2023-07-25 10:25,0111
|
||||
2023-07-25 11:10,0111
|
||||
2023-07-25 11:40,0111
|
||||
2023-07-25 11:55,0111
|
||||
2023-07-25 12:25,0111
|
||||
2023-07-25 12:41,0111
|
||||
2023-07-25 12:55,0111
|
||||
2023-07-25 13:26,0111
|
||||
2023-07-25 13:41,0111
|
||||
2023-07-25 14:11,0111
|
||||
2023-07-25 14:26,0111
|
||||
2023-07-25 14:40,0111
|
||||
2023-07-25 14:55,0111
|
||||
2023-07-25 15:40,0111
|
||||
2023-07-25 16:10,0111
|
||||
2023-07-25 16:26,0111
|
||||
2023-07-25 16:41,0111
|
||||
2023-07-25 17:10,0111
|
||||
2023-07-25 17:40,0111
|
||||
2023-07-25 18:40,0111
|
||||
2023-07-25 19:11,0111
|
||||
2023-07-25 19:25,0111
|
||||
2023-07-25 19:41,0111
|
||||
2023-07-25 19:55,0111
|
||||
2023-07-25 20:26,0111
|
||||
2023-07-25 20:41,0111
|
||||
2023-07-25 20:56,0111
|
||||
2023-07-25 21:41,0111
|
||||
2023-07-25 22:40,0111
|
||||
2023-07-25 22:56,0111
|
||||
2023-07-25 23:10,0111
|
||||
2023-07-25 23:26,0111
|
||||
2023-07-25 23:40,0111
|
||||
2023-07-25 23:55,0111
|
73
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-6.dat
Normal file
73
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,73 @@
|
||||
2023-07-25 00:01,0000
|
||||
2023-07-25 00:31,0000
|
||||
2023-07-25 00:45,0000
|
||||
2023-07-25 01:31,0000
|
||||
2023-07-25 01:45,0000
|
||||
2023-07-25 02:15,0000
|
||||
2023-07-25 03:01,0000
|
||||
2023-07-25 03:16,0000
|
||||
2023-07-25 04:00,0000
|
||||
2023-07-25 04:15,0000
|
||||
2023-07-25 04:31,0000
|
||||
2023-07-25 04:45,0000
|
||||
2023-07-25 05:01,0000
|
||||
2023-07-25 05:30,0000
|
||||
2023-07-25 05:45,0000
|
||||
2023-07-25 06:15,0000
|
||||
2023-07-25 06:30,0000
|
||||
2023-07-25 06:45,0000
|
||||
2023-07-25 07:16,0000
|
||||
2023-07-25 07:30,0000
|
||||
2023-07-25 07:46,0000
|
||||
2023-07-25 08:01,0000
|
||||
2023-07-25 08:15,0000
|
||||
2023-07-25 08:46,0000
|
||||
2023-07-25 09:01,0000
|
||||
2023-07-25 09:30,0000
|
||||
2023-07-25 09:45,0000
|
||||
2023-07-25 10:01,0000
|
||||
2023-07-25 10:15,0000
|
||||
2023-07-25 10:30,0000
|
||||
2023-07-25 10:45,0000
|
||||
2023-07-25 11:15,0000
|
||||
2023-07-25 11:30,0000
|
||||
2023-07-25 11:45,0000
|
||||
2023-07-25 12:00,0000
|
||||
2023-07-25 12:16,0000
|
||||
2023-07-25 12:30,0000
|
||||
2023-07-25 13:00,0000
|
||||
2023-07-25 13:16,0000
|
||||
2023-07-25 13:31,0000
|
||||
2023-07-25 14:01,0000
|
||||
2023-07-25 14:16,0000
|
||||
2023-07-25 14:30,0000
|
||||
2023-07-25 15:01,0000
|
||||
2023-07-25 15:15,0000
|
||||
2023-07-25 15:30,0000
|
||||
2023-07-25 16:01,0000
|
||||
2023-07-25 16:15,0000
|
||||
2023-07-25 16:31,0000
|
||||
2023-07-25 16:45,0000
|
||||
2023-07-25 17:00,0000
|
||||
2023-07-25 17:16,0000
|
||||
2023-07-25 17:30,0000
|
||||
2023-07-25 17:46,0000
|
||||
2023-07-25 18:01,0000
|
||||
2023-07-25 18:15,0000
|
||||
2023-07-25 18:30,0000
|
||||
2023-07-25 19:01,0000
|
||||
2023-07-25 19:30,0000
|
||||
2023-07-25 19:45,0000
|
||||
2023-07-25 20:01,0000
|
||||
2023-07-25 20:16,0000
|
||||
2023-07-25 20:31,0000
|
||||
2023-07-25 20:46,0000
|
||||
2023-07-25 21:00,0000
|
||||
2023-07-25 21:16,0000
|
||||
2023-07-25 21:46,0000
|
||||
2023-07-25 22:00,0000
|
||||
2023-07-25 22:15,0000
|
||||
2023-07-25 22:30,0000
|
||||
2023-07-25 22:46,0000
|
||||
2023-07-25 23:15,0000
|
||||
2023-07-25 23:31,0000
|
75
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-8.dat
Normal file
75
aprs_utils/aprs_log/2023-07-25_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,75 @@
|
||||
2023-07-25 00:05,0011
|
||||
2023-07-25 00:20,0011
|
||||
2023-07-25 00:35,0011
|
||||
2023-07-25 00:51,0011
|
||||
2023-07-25 01:20,0011
|
||||
2023-07-25 01:36,0011
|
||||
2023-07-25 02:35,0011
|
||||
2023-07-25 02:51,0011
|
||||
2023-07-25 03:06,0011
|
||||
2023-07-25 03:20,0011
|
||||
2023-07-25 03:35,0011
|
||||
2023-07-25 03:50,0011
|
||||
2023-07-25 04:21,0011
|
||||
2023-07-25 04:36,0011
|
||||
2023-07-25 05:05,0011
|
||||
2023-07-25 05:36,0011
|
||||
2023-07-25 05:50,0011
|
||||
2023-07-25 06:06,0011
|
||||
2023-07-25 06:20,0011
|
||||
2023-07-25 06:36,0011
|
||||
2023-07-25 06:51,0011
|
||||
2023-07-25 07:05,0011
|
||||
2023-07-25 07:20,0011
|
||||
2023-07-25 07:35,0011
|
||||
2023-07-25 07:50,0011
|
||||
2023-07-25 08:05,0011
|
||||
2023-07-25 08:20,0011
|
||||
2023-07-25 08:36,0011
|
||||
2023-07-25 08:50,0011
|
||||
2023-07-25 09:06,0011
|
||||
2023-07-25 09:21,0011
|
||||
2023-07-25 09:51,0011
|
||||
2023-07-25 10:05,0011
|
||||
2023-07-25 10:21,0011
|
||||
2023-07-25 10:36,0011
|
||||
2023-07-25 10:50,0011
|
||||
2023-07-25 11:06,0011
|
||||
2023-07-25 11:20,0011
|
||||
2023-07-25 11:36,0011
|
||||
2023-07-25 11:51,0011
|
||||
2023-07-25 12:05,0011
|
||||
2023-07-25 12:35,0011
|
||||
2023-07-25 12:51,0011
|
||||
2023-07-25 13:05,0011
|
||||
2023-07-25 13:20,0011
|
||||
2023-07-25 13:36,0011
|
||||
2023-07-25 14:06,0011
|
||||
2023-07-25 14:21,0011
|
||||
2023-07-25 14:35,0011
|
||||
2023-07-25 14:50,0011
|
||||
2023-07-25 15:20,0011
|
||||
2023-07-25 15:36,0011
|
||||
2023-07-25 16:06,0011
|
||||
2023-07-25 16:21,0011
|
||||
2023-07-25 16:36,0011
|
||||
2023-07-25 17:06,0011
|
||||
2023-07-25 17:21,0011
|
||||
2023-07-25 17:51,0011
|
||||
2023-07-25 18:21,0011
|
||||
2023-07-25 18:36,0011
|
||||
2023-07-25 18:51,0011
|
||||
2023-07-25 19:36,0011
|
||||
2023-07-25 20:06,0011
|
||||
2023-07-25 20:35,0011
|
||||
2023-07-25 21:05,0011
|
||||
2023-07-25 21:21,0011
|
||||
2023-07-25 21:36,0011
|
||||
2023-07-25 21:51,0011
|
||||
2023-07-25 22:05,0011
|
||||
2023-07-25 22:21,0011
|
||||
2023-07-25 22:35,0011
|
||||
2023-07-25 22:50,0011
|
||||
2023-07-25 23:20,0011
|
||||
2023-07-25 23:35,0011
|
||||
2023-07-25 23:51,0011
|
71
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-5.dat
Normal file
71
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,71 @@
|
||||
2023-07-26 00:10,0111
|
||||
2023-07-26 01:11,0111
|
||||
2023-07-26 01:40,0111
|
||||
2023-07-26 01:56,0111
|
||||
2023-07-26 02:25,0111
|
||||
2023-07-26 02:56,0111
|
||||
2023-07-26 03:11,0111
|
||||
2023-07-26 03:25,0111
|
||||
2023-07-26 03:41,0111
|
||||
2023-07-26 03:56,0111
|
||||
2023-07-26 04:26,0111
|
||||
2023-07-26 04:40,0111
|
||||
2023-07-26 05:11,0111
|
||||
2023-07-26 05:25,0111
|
||||
2023-07-26 05:56,0111
|
||||
2023-07-26 06:11,0111
|
||||
2023-07-26 06:41,0111
|
||||
2023-07-26 06:56,0111
|
||||
2023-07-26 07:11,0111
|
||||
2023-07-26 07:40,0111
|
||||
2023-07-26 07:56,0111
|
||||
2023-07-26 08:11,0111
|
||||
2023-07-26 08:26,0111
|
||||
2023-07-26 08:41,0111
|
||||
2023-07-26 08:56,0111
|
||||
2023-07-26 09:26,0111
|
||||
2023-07-26 09:41,0111
|
||||
2023-07-26 09:56,0111
|
||||
2023-07-26 10:11,0111
|
||||
2023-07-26 10:25,0111
|
||||
2023-07-26 10:40,0111
|
||||
2023-07-26 11:10,0111
|
||||
2023-07-26 11:26,0111
|
||||
2023-07-26 11:40,0111
|
||||
2023-07-26 11:55,0111
|
||||
2023-07-26 12:10,0111
|
||||
2023-07-26 12:26,0111
|
||||
2023-07-26 12:41,0111
|
||||
2023-07-26 12:55,0111
|
||||
2023-07-26 13:11,0111
|
||||
2023-07-26 13:26,0111
|
||||
2023-07-26 13:41,0111
|
||||
2023-07-26 13:55,0111
|
||||
2023-07-26 14:11,0111
|
||||
2023-07-26 14:26,0111
|
||||
2023-07-26 14:41,0111
|
||||
2023-07-26 14:56,0111
|
||||
2023-07-26 15:11,0111
|
||||
2023-07-26 15:41,0111
|
||||
2023-07-26 16:11,0111
|
||||
2023-07-26 16:26,0111
|
||||
2023-07-26 16:55,0111
|
||||
2023-07-26 17:11,0111
|
||||
2023-07-26 17:41,0111
|
||||
2023-07-26 18:26,0111
|
||||
2023-07-26 18:56,0111
|
||||
2023-07-26 19:11,0111
|
||||
2023-07-26 19:26,0111
|
||||
2023-07-26 19:40,0111
|
||||
2023-07-26 19:56,0111
|
||||
2023-07-26 20:11,0111
|
||||
2023-07-26 20:26,0111
|
||||
2023-07-26 20:40,0111
|
||||
2023-07-26 20:56,0111
|
||||
2023-07-26 21:11,0111
|
||||
2023-07-26 21:26,0111
|
||||
2023-07-26 21:56,0111
|
||||
2023-07-26 22:26,0111
|
||||
2023-07-26 22:56,0111
|
||||
2023-07-26 23:11,0111
|
||||
2023-07-26 23:56,0111
|
67
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-6.dat
Normal file
67
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,67 @@
|
||||
2023-07-26 00:01,0000
|
||||
2023-07-26 00:16,0000
|
||||
2023-07-26 00:31,0000
|
||||
2023-07-26 00:46,0000
|
||||
2023-07-26 01:01,0000
|
||||
2023-07-26 01:16,0000
|
||||
2023-07-26 01:30,0000
|
||||
2023-07-26 02:16,0000
|
||||
2023-07-26 02:31,0000
|
||||
2023-07-26 03:01,0000
|
||||
2023-07-26 03:30,0000
|
||||
2023-07-26 03:46,0000
|
||||
2023-07-26 04:01,0000
|
||||
2023-07-26 04:16,0000
|
||||
2023-07-26 04:30,0000
|
||||
2023-07-26 04:46,0000
|
||||
2023-07-26 05:16,0000
|
||||
2023-07-26 05:45,0000
|
||||
2023-07-26 06:15,0000
|
||||
2023-07-26 06:30,0000
|
||||
2023-07-26 07:00,0000
|
||||
2023-07-26 07:16,0000
|
||||
2023-07-26 07:31,0000
|
||||
2023-07-26 07:46,0000
|
||||
2023-07-26 08:16,0000
|
||||
2023-07-26 08:46,0000
|
||||
2023-07-26 09:01,0000
|
||||
2023-07-26 09:31,0000
|
||||
2023-07-26 09:46,0000
|
||||
2023-07-26 10:01,0000
|
||||
2023-07-26 10:16,0000
|
||||
2023-07-26 10:46,0000
|
||||
2023-07-26 11:01,0000
|
||||
2023-07-26 11:16,0000
|
||||
2023-07-26 11:31,0000
|
||||
2023-07-26 11:46,0000
|
||||
2023-07-26 12:16,0000
|
||||
2023-07-26 13:01,0000
|
||||
2023-07-26 13:16,0000
|
||||
2023-07-26 13:31,0000
|
||||
2023-07-26 13:46,0000
|
||||
2023-07-26 14:01,0000
|
||||
2023-07-26 14:16,0000
|
||||
2023-07-26 14:46,0000
|
||||
2023-07-26 15:16,0000
|
||||
2023-07-26 15:31,0000
|
||||
2023-07-26 15:46,0000
|
||||
2023-07-26 16:01,0000
|
||||
2023-07-26 16:16,0000
|
||||
2023-07-26 16:31,0000
|
||||
2023-07-26 16:46,0000
|
||||
2023-07-26 17:01,0000
|
||||
2023-07-26 17:16,0000
|
||||
2023-07-26 18:16,0000
|
||||
2023-07-26 18:31,0000
|
||||
2023-07-26 18:45,0000
|
||||
2023-07-26 19:01,0000
|
||||
2023-07-26 19:31,0000
|
||||
2023-07-26 19:46,0000
|
||||
2023-07-26 20:16,0000
|
||||
2023-07-26 20:31,0000
|
||||
2023-07-26 20:46,0000
|
||||
2023-07-26 21:01,0000
|
||||
2023-07-26 21:16,0000
|
||||
2023-07-26 21:46,0000
|
||||
2023-07-26 23:16,0000
|
||||
2023-07-26 23:46,0000
|
75
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-8.dat
Normal file
75
aprs_utils/aprs_log/2023-07-26_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,75 @@
|
||||
2023-07-26 00:20,0011
|
||||
2023-07-26 00:35,0011
|
||||
2023-07-26 00:51,0011
|
||||
2023-07-26 01:06,0011
|
||||
2023-07-26 01:35,0011
|
||||
2023-07-26 01:51,0011
|
||||
2023-07-26 02:06,0011
|
||||
2023-07-26 02:21,0011
|
||||
2023-07-26 02:51,0011
|
||||
2023-07-26 03:21,0011
|
||||
2023-07-26 03:35,0011
|
||||
2023-07-26 04:06,0011
|
||||
2023-07-26 04:21,0011
|
||||
2023-07-26 04:36,0011
|
||||
2023-07-26 05:20,0011
|
||||
2023-07-26 05:51,0011
|
||||
2023-07-26 06:06,0011
|
||||
2023-07-26 06:20,0011
|
||||
2023-07-26 06:51,0011
|
||||
2023-07-26 07:06,0011
|
||||
2023-07-26 07:21,0011
|
||||
2023-07-26 07:36,0011
|
||||
2023-07-26 07:51,0011
|
||||
2023-07-26 08:06,0011
|
||||
2023-07-26 08:20,0011
|
||||
2023-07-26 08:36,0011
|
||||
2023-07-26 08:51,0011
|
||||
2023-07-26 09:06,0011
|
||||
2023-07-26 09:21,0011
|
||||
2023-07-26 09:36,0011
|
||||
2023-07-26 10:06,0011
|
||||
2023-07-26 10:21,0011
|
||||
2023-07-26 10:36,0011
|
||||
2023-07-26 10:51,0011
|
||||
2023-07-26 11:06,0011
|
||||
2023-07-26 11:21,0011
|
||||
2023-07-26 11:36,0011
|
||||
2023-07-26 11:51,0011
|
||||
2023-07-26 12:35,0011
|
||||
2023-07-26 13:21,0011
|
||||
2023-07-26 13:35,0011
|
||||
2023-07-26 13:51,0011
|
||||
2023-07-26 14:06,0011
|
||||
2023-07-26 14:21,0011
|
||||
2023-07-26 14:51,0011
|
||||
2023-07-26 15:21,0011
|
||||
2023-07-26 15:36,0011
|
||||
2023-07-26 16:06,0011
|
||||
2023-07-26 16:21,0011
|
||||
2023-07-26 16:36,0011
|
||||
2023-07-26 16:51,0011
|
||||
2023-07-26 17:06,0011
|
||||
2023-07-26 17:21,0011
|
||||
2023-07-26 17:35,0011
|
||||
2023-07-26 17:51,0011
|
||||
2023-07-26 18:06,0011
|
||||
2023-07-26 18:36,0011
|
||||
2023-07-26 18:51,0011
|
||||
2023-07-26 19:06,0011
|
||||
2023-07-26 19:21,0011
|
||||
2023-07-26 19:36,0011
|
||||
2023-07-26 19:51,0011
|
||||
2023-07-26 20:06,0011
|
||||
2023-07-26 20:21,0011
|
||||
2023-07-26 20:36,0011
|
||||
2023-07-26 20:51,0011
|
||||
2023-07-26 21:05,0011
|
||||
2023-07-26 21:21,0011
|
||||
2023-07-26 21:36,0011
|
||||
2023-07-26 21:51,0011
|
||||
2023-07-26 22:21,0011
|
||||
2023-07-26 22:36,0011
|
||||
2023-07-26 23:06,0011
|
||||
2023-07-26 23:36,0011
|
||||
2023-07-26 23:51,0011
|
76
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-5.dat
Normal file
76
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,76 @@
|
||||
2023-07-27 00:11,0111
|
||||
2023-07-27 00:26,0111
|
||||
2023-07-27 00:41,0111
|
||||
2023-07-27 00:56,0111
|
||||
2023-07-27 01:26,0111
|
||||
2023-07-27 02:11,0111
|
||||
2023-07-27 02:26,0111
|
||||
2023-07-27 02:41,0111
|
||||
2023-07-27 02:56,0111
|
||||
2023-07-27 03:11,0111
|
||||
2023-07-27 03:26,0111
|
||||
2023-07-27 03:56,0111
|
||||
2023-07-27 04:11,0111
|
||||
2023-07-27 04:26,0111
|
||||
2023-07-27 04:41,0111
|
||||
2023-07-27 04:56,0111
|
||||
2023-07-27 05:11,0111
|
||||
2023-07-27 05:41,0111
|
||||
2023-07-27 05:56,0111
|
||||
2023-07-27 06:11,0111
|
||||
2023-07-27 06:26,0111
|
||||
2023-07-27 06:41,0111
|
||||
2023-07-27 06:56,0111
|
||||
2023-07-27 07:11,0111
|
||||
2023-07-27 07:26,0111
|
||||
2023-07-27 07:41,0111
|
||||
2023-07-27 07:56,0111
|
||||
2023-07-27 08:11,0111
|
||||
2023-07-27 08:26,0111
|
||||
2023-07-27 08:41,0111
|
||||
2023-07-27 08:56,0111
|
||||
2023-07-27 09:26,0111
|
||||
2023-07-27 09:41,0111
|
||||
2023-07-27 09:56,0111
|
||||
2023-07-27 10:11,0111
|
||||
2023-07-27 10:26,0111
|
||||
2023-07-27 10:41,0111
|
||||
2023-07-27 11:26,0111
|
||||
2023-07-27 11:56,0111
|
||||
2023-07-27 12:26,0111
|
||||
2023-07-27 12:41,0111
|
||||
2023-07-27 13:11,0111
|
||||
2023-07-27 13:26,0111
|
||||
2023-07-27 13:41,0111
|
||||
2023-07-27 13:56,0111
|
||||
2023-07-27 14:11,0111
|
||||
2023-07-27 14:26,0111
|
||||
2023-07-27 15:26,0111
|
||||
2023-07-27 15:41,0111
|
||||
2023-07-27 15:56,0111
|
||||
2023-07-27 16:11,0111
|
||||
2023-07-27 16:41,0111
|
||||
2023-07-27 16:56,0111
|
||||
2023-07-27 17:11,0111
|
||||
2023-07-27 17:41,0111
|
||||
2023-07-27 17:56,0111
|
||||
2023-07-27 18:11,0111
|
||||
2023-07-27 18:26,0111
|
||||
2023-07-27 18:41,0111
|
||||
2023-07-27 18:56,0111
|
||||
2023-07-27 19:11,0111
|
||||
2023-07-27 19:26,0111
|
||||
2023-07-27 19:41,0111
|
||||
2023-07-27 19:56,0111
|
||||
2023-07-27 20:26,0111
|
||||
2023-07-27 20:56,0111
|
||||
2023-07-27 21:26,0111
|
||||
2023-07-27 21:56,0111
|
||||
2023-07-27 22:11,0111
|
||||
2023-07-27 22:26,0111
|
||||
2023-07-27 22:41,0111
|
||||
2023-07-27 22:56,0111
|
||||
2023-07-27 23:11,0111
|
||||
2023-07-27 23:26,0111
|
||||
2023-07-27 23:41,0111
|
||||
2023-07-27 23:56,0111
|
78
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-6.dat
Normal file
78
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-27 00:01,0000
|
||||
2023-07-27 00:46,0000
|
||||
2023-07-27 01:01,0000
|
||||
2023-07-27 01:16,0000
|
||||
2023-07-27 01:31,0000
|
||||
2023-07-27 01:46,0000
|
||||
2023-07-27 02:01,0000
|
||||
2023-07-27 02:16,0000
|
||||
2023-07-27 02:46,0000
|
||||
2023-07-27 03:01,0000
|
||||
2023-07-27 03:16,0000
|
||||
2023-07-27 03:46,0000
|
||||
2023-07-27 04:01,0000
|
||||
2023-07-27 04:16,0000
|
||||
2023-07-27 04:31,0000
|
||||
2023-07-27 04:46,0000
|
||||
2023-07-27 05:16,0000
|
||||
2023-07-27 05:31,0000
|
||||
2023-07-27 05:46,0000
|
||||
2023-07-27 06:01,0000
|
||||
2023-07-27 06:31,0000
|
||||
2023-07-27 07:01,0000
|
||||
2023-07-27 07:16,0000
|
||||
2023-07-27 07:31,0000
|
||||
2023-07-27 08:16,0000
|
||||
2023-07-27 08:46,0000
|
||||
2023-07-27 09:01,0000
|
||||
2023-07-27 09:16,0000
|
||||
2023-07-27 09:31,0000
|
||||
2023-07-27 09:46,0000
|
||||
2023-07-27 10:01,0000
|
||||
2023-07-27 10:16,0000
|
||||
2023-07-27 10:31,0000
|
||||
2023-07-27 10:46,0000
|
||||
2023-07-27 11:00,0000
|
||||
2023-07-27 11:16,0000
|
||||
2023-07-27 11:31,0000
|
||||
2023-07-27 11:46,0000
|
||||
2023-07-27 12:16,0000
|
||||
2023-07-27 12:31,0000
|
||||
2023-07-27 13:01,0000
|
||||
2023-07-27 13:16,0000
|
||||
2023-07-27 13:31,0000
|
||||
2023-07-27 14:16,0000
|
||||
2023-07-27 14:46,0000
|
||||
2023-07-27 15:16,0000
|
||||
2023-07-27 15:31,0000
|
||||
2023-07-27 15:46,0000
|
||||
2023-07-27 16:01,0000
|
||||
2023-07-27 16:16,0000
|
||||
2023-07-27 16:46,0000
|
||||
2023-07-27 17:01,0000
|
||||
2023-07-27 17:16,0000
|
||||
2023-07-27 17:31,0000
|
||||
2023-07-27 18:01,0000
|
||||
2023-07-27 18:16,0000
|
||||
2023-07-27 18:31,0000
|
||||
2023-07-27 18:46,0000
|
||||
2023-07-27 19:01,0000
|
||||
2023-07-27 19:16,0000
|
||||
2023-07-27 19:31,0000
|
||||
2023-07-27 19:46,0000
|
||||
2023-07-27 20:01,0000
|
||||
2023-07-27 20:16,0000
|
||||
2023-07-27 20:31,0000
|
||||
2023-07-27 20:46,0000
|
||||
2023-07-27 21:01,0000
|
||||
2023-07-27 21:16,0000
|
||||
2023-07-27 21:31,0000
|
||||
2023-07-27 21:46,0000
|
||||
2023-07-27 22:01,0000
|
||||
2023-07-27 22:16,0000
|
||||
2023-07-27 22:31,0000
|
||||
2023-07-27 22:46,0000
|
||||
2023-07-27 23:01,0000
|
||||
2023-07-27 23:16,0000
|
||||
2023-07-27 23:31,0000
|
||||
2023-07-27 23:46,0000
|
69
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-8.dat
Normal file
69
aprs_utils/aprs_log/2023-07-27_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,69 @@
|
||||
2023-07-27 00:36,0011
|
||||
2023-07-27 01:06,0011
|
||||
2023-07-27 01:21,0011
|
||||
2023-07-27 01:36,0011
|
||||
2023-07-27 01:51,0011
|
||||
2023-07-27 02:51,0011
|
||||
2023-07-27 03:06,0011
|
||||
2023-07-27 03:21,0011
|
||||
2023-07-27 03:36,0011
|
||||
2023-07-27 03:51,0011
|
||||
2023-07-27 04:06,0011
|
||||
2023-07-27 04:21,0011
|
||||
2023-07-27 04:36,0011
|
||||
2023-07-27 04:51,0011
|
||||
2023-07-27 05:06,0011
|
||||
2023-07-27 05:51,0011
|
||||
2023-07-27 06:06,0011
|
||||
2023-07-27 06:20,0011
|
||||
2023-07-27 06:36,0011
|
||||
2023-07-27 07:06,0011
|
||||
2023-07-27 07:21,0011
|
||||
2023-07-27 07:36,0011
|
||||
2023-07-27 08:06,0011
|
||||
2023-07-27 08:21,0011
|
||||
2023-07-27 08:36,0011
|
||||
2023-07-27 09:06,0011
|
||||
2023-07-27 09:21,0011
|
||||
2023-07-27 09:36,0011
|
||||
2023-07-27 09:51,0011
|
||||
2023-07-27 10:06,0011
|
||||
2023-07-27 10:21,0011
|
||||
2023-07-27 10:36,0011
|
||||
2023-07-27 10:51,0011
|
||||
2023-07-27 11:06,0011
|
||||
2023-07-27 11:36,0011
|
||||
2023-07-27 12:06,0011
|
||||
2023-07-27 12:21,0011
|
||||
2023-07-27 12:36,0011
|
||||
2023-07-27 12:51,0011
|
||||
2023-07-27 13:06,0011
|
||||
2023-07-27 14:21,0011
|
||||
2023-07-27 14:36,0011
|
||||
2023-07-27 14:51,0011
|
||||
2023-07-27 15:06,0011
|
||||
2023-07-27 15:21,0011
|
||||
2023-07-27 15:35,0011
|
||||
2023-07-27 15:51,0011
|
||||
2023-07-27 16:06,0011
|
||||
2023-07-27 16:21,0011
|
||||
2023-07-27 16:36,0011
|
||||
2023-07-27 17:21,0011
|
||||
2023-07-27 17:36,0011
|
||||
2023-07-27 17:51,0011
|
||||
2023-07-27 18:51,0011
|
||||
2023-07-27 19:21,0011
|
||||
2023-07-27 19:36,0011
|
||||
2023-07-27 19:51,0011
|
||||
2023-07-27 20:06,0011
|
||||
2023-07-27 20:21,0011
|
||||
2023-07-27 20:36,0011
|
||||
2023-07-27 20:51,0011
|
||||
2023-07-27 21:06,0011
|
||||
2023-07-27 21:21,0011
|
||||
2023-07-27 22:06,0011
|
||||
2023-07-27 22:21,0011
|
||||
2023-07-27 22:36,0011
|
||||
2023-07-27 22:51,0011
|
||||
2023-07-27 23:21,0011
|
||||
2023-07-27 23:51,0011
|
78
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-5.dat
Normal file
78
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-28 00:11,0111
|
||||
2023-07-28 00:26,0111
|
||||
2023-07-28 00:41,0111
|
||||
2023-07-28 00:56,0111
|
||||
2023-07-28 01:11,0111
|
||||
2023-07-28 01:26,0111
|
||||
2023-07-28 01:41,0111
|
||||
2023-07-28 01:56,0111
|
||||
2023-07-28 02:11,0111
|
||||
2023-07-28 02:26,0111
|
||||
2023-07-28 02:41,0111
|
||||
2023-07-28 02:56,0111
|
||||
2023-07-28 03:11,0111
|
||||
2023-07-28 03:26,0111
|
||||
2023-07-28 03:41,0111
|
||||
2023-07-28 03:56,0111
|
||||
2023-07-28 04:26,0111
|
||||
2023-07-28 04:41,0111
|
||||
2023-07-28 04:56,0111
|
||||
2023-07-28 05:11,0111
|
||||
2023-07-28 05:26,0111
|
||||
2023-07-28 05:41,0111
|
||||
2023-07-28 05:56,0111
|
||||
2023-07-28 06:26,0111
|
||||
2023-07-28 06:41,0111
|
||||
2023-07-28 06:56,0111
|
||||
2023-07-28 07:11,0111
|
||||
2023-07-28 07:26,0111
|
||||
2023-07-28 07:41,0111
|
||||
2023-07-28 07:56,0111
|
||||
2023-07-28 08:11,0111
|
||||
2023-07-28 08:41,0111
|
||||
2023-07-28 08:56,0111
|
||||
2023-07-28 09:11,0111
|
||||
2023-07-28 09:26,0111
|
||||
2023-07-28 09:41,0111
|
||||
2023-07-28 09:56,0111
|
||||
2023-07-28 10:11,0111
|
||||
2023-07-28 10:26,0111
|
||||
2023-07-28 10:41,0111
|
||||
2023-07-28 11:11,0111
|
||||
2023-07-28 11:56,0111
|
||||
2023-07-28 12:11,0111
|
||||
2023-07-28 12:26,0111
|
||||
2023-07-28 12:41,0111
|
||||
2023-07-28 12:56,0111
|
||||
2023-07-28 13:11,0111
|
||||
2023-07-28 13:41,0111
|
||||
2023-07-28 14:11,0111
|
||||
2023-07-28 14:26,0111
|
||||
2023-07-28 14:41,0111
|
||||
2023-07-28 14:56,0111
|
||||
2023-07-28 15:11,0111
|
||||
2023-07-28 15:26,0111
|
||||
2023-07-28 15:41,0111
|
||||
2023-07-28 15:56,0111
|
||||
2023-07-28 16:11,0111
|
||||
2023-07-28 17:11,0111
|
||||
2023-07-28 17:56,0111
|
||||
2023-07-28 18:11,0111
|
||||
2023-07-28 18:26,0111
|
||||
2023-07-28 18:41,0111
|
||||
2023-07-28 18:56,0111
|
||||
2023-07-28 19:26,0111
|
||||
2023-07-28 19:41,0111
|
||||
2023-07-28 19:56,0111
|
||||
2023-07-28 20:11,0111
|
||||
2023-07-28 20:26,0111
|
||||
2023-07-28 20:41,0111
|
||||
2023-07-28 21:26,0111
|
||||
2023-07-28 21:41,0111
|
||||
2023-07-28 22:11,0111
|
||||
2023-07-28 22:26,0111
|
||||
2023-07-28 22:41,0111
|
||||
2023-07-28 22:56,0111
|
||||
2023-07-28 23:11,0111
|
||||
2023-07-28 23:41,0111
|
||||
2023-07-28 23:56,0111
|
72
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-6.dat
Normal file
72
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,72 @@
|
||||
2023-07-28 00:01,0000
|
||||
2023-07-28 00:16,0000
|
||||
2023-07-28 00:31,0000
|
||||
2023-07-28 01:01,0000
|
||||
2023-07-28 01:16,0000
|
||||
2023-07-28 01:31,0000
|
||||
2023-07-28 01:46,0000
|
||||
2023-07-28 02:01,0000
|
||||
2023-07-28 02:16,0000
|
||||
2023-07-28 02:31,0000
|
||||
2023-07-28 02:46,0000
|
||||
2023-07-28 03:16,0000
|
||||
2023-07-28 03:46,0000
|
||||
2023-07-28 04:01,0000
|
||||
2023-07-28 04:46,0000
|
||||
2023-07-28 05:16,0000
|
||||
2023-07-28 05:46,0000
|
||||
2023-07-28 06:01,0000
|
||||
2023-07-28 06:16,0000
|
||||
2023-07-28 06:46,0000
|
||||
2023-07-28 07:01,0000
|
||||
2023-07-28 07:16,0000
|
||||
2023-07-28 07:30,0000
|
||||
2023-07-28 07:46,0000
|
||||
2023-07-28 08:01,0000
|
||||
2023-07-28 08:46,0000
|
||||
2023-07-28 09:01,0000
|
||||
2023-07-28 09:16,0000
|
||||
2023-07-28 09:31,0000
|
||||
2023-07-28 09:46,0000
|
||||
2023-07-28 10:16,0000
|
||||
2023-07-28 10:31,0000
|
||||
2023-07-28 10:46,0000
|
||||
2023-07-28 11:01,0000
|
||||
2023-07-28 11:16,0000
|
||||
2023-07-28 11:31,0000
|
||||
2023-07-28 11:46,0000
|
||||
2023-07-28 12:16,0000
|
||||
2023-07-28 12:31,0000
|
||||
2023-07-28 12:46,0000
|
||||
2023-07-28 13:01,0000
|
||||
2023-07-28 13:16,0000
|
||||
2023-07-28 13:31,0000
|
||||
2023-07-28 13:46,0000
|
||||
2023-07-28 14:16,0000
|
||||
2023-07-28 15:01,0000
|
||||
2023-07-28 15:16,0000
|
||||
2023-07-28 15:31,0000
|
||||
2023-07-28 15:46,0000
|
||||
2023-07-28 16:01,0000
|
||||
2023-07-28 16:16,0000
|
||||
2023-07-28 17:16,0000
|
||||
2023-07-28 17:31,0000
|
||||
2023-07-28 18:01,0000
|
||||
2023-07-28 18:16,0000
|
||||
2023-07-28 18:46,0000
|
||||
2023-07-28 19:01,0000
|
||||
2023-07-28 19:31,0000
|
||||
2023-07-28 19:46,0000
|
||||
2023-07-28 20:01,0000
|
||||
2023-07-28 20:16,0000
|
||||
2023-07-28 21:01,0000
|
||||
2023-07-28 21:16,0000
|
||||
2023-07-28 21:31,0000
|
||||
2023-07-28 21:46,0000
|
||||
2023-07-28 22:01,0000
|
||||
2023-07-28 22:16,0000
|
||||
2023-07-28 22:31,0000
|
||||
2023-07-28 23:01,0000
|
||||
2023-07-28 23:16,0000
|
||||
2023-07-28 23:31,0000
|
||||
2023-07-28 23:46,0000
|
79
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-8.dat
Normal file
79
aprs_utils/aprs_log/2023-07-28_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,79 @@
|
||||
2023-07-28 00:06,0011
|
||||
2023-07-28 00:21,0011
|
||||
2023-07-28 00:36,0011
|
||||
2023-07-28 00:51,0011
|
||||
2023-07-28 01:21,0011
|
||||
2023-07-28 01:36,0011
|
||||
2023-07-28 02:21,0011
|
||||
2023-07-28 02:36,0011
|
||||
2023-07-28 02:51,0011
|
||||
2023-07-28 03:06,0011
|
||||
2023-07-28 03:21,0011
|
||||
2023-07-28 03:36,0011
|
||||
2023-07-28 03:51,0011
|
||||
2023-07-28 04:06,0011
|
||||
2023-07-28 04:21,0011
|
||||
2023-07-28 04:36,0011
|
||||
2023-07-28 04:51,0011
|
||||
2023-07-28 05:06,0011
|
||||
2023-07-28 05:21,0011
|
||||
2023-07-28 06:06,0011
|
||||
2023-07-28 06:21,0011
|
||||
2023-07-28 06:36,0011
|
||||
2023-07-28 06:51,0011
|
||||
2023-07-28 07:06,0011
|
||||
2023-07-28 07:21,0011
|
||||
2023-07-28 07:36,0011
|
||||
2023-07-28 07:51,0011
|
||||
2023-07-28 08:06,0011
|
||||
2023-07-28 08:36,0011
|
||||
2023-07-28 08:51,0011
|
||||
2023-07-28 09:06,0011
|
||||
2023-07-28 09:36,0011
|
||||
2023-07-28 10:06,0011
|
||||
2023-07-28 10:51,0011
|
||||
2023-07-28 11:21,0011
|
||||
2023-07-28 11:36,0011
|
||||
2023-07-28 11:51,0011
|
||||
2023-07-28 12:06,0011
|
||||
2023-07-28 12:36,0011
|
||||
2023-07-28 12:51,0011
|
||||
2023-07-28 13:06,0011
|
||||
2023-07-28 13:21,0011
|
||||
2023-07-28 13:36,0011
|
||||
2023-07-28 13:51,0011
|
||||
2023-07-28 14:21,0011
|
||||
2023-07-28 14:36,0011
|
||||
2023-07-28 14:51,0011
|
||||
2023-07-28 15:06,0011
|
||||
2023-07-28 15:21,0011
|
||||
2023-07-28 15:36,0011
|
||||
2023-07-28 15:51,0011
|
||||
2023-07-28 16:06,0011
|
||||
2023-07-28 16:21,0011
|
||||
2023-07-28 16:36,0011
|
||||
2023-07-28 16:51,0011
|
||||
2023-07-28 17:21,0011
|
||||
2023-07-28 17:36,0011
|
||||
2023-07-28 17:51,0011
|
||||
2023-07-28 18:06,0011
|
||||
2023-07-28 18:21,0011
|
||||
2023-07-28 18:36,0011
|
||||
2023-07-28 19:06,0011
|
||||
2023-07-28 19:36,0011
|
||||
2023-07-28 19:51,0011
|
||||
2023-07-28 20:06,0011
|
||||
2023-07-28 20:21,0011
|
||||
2023-07-28 20:36,0011
|
||||
2023-07-28 20:51,0011
|
||||
2023-07-28 21:06,0011
|
||||
2023-07-28 21:21,0011
|
||||
2023-07-28 21:36,0011
|
||||
2023-07-28 21:51,0011
|
||||
2023-07-28 22:06,0011
|
||||
2023-07-28 22:21,0011
|
||||
2023-07-28 22:36,0011
|
||||
2023-07-28 22:51,0011
|
||||
2023-07-28 23:06,0011
|
||||
2023-07-28 23:36,0011
|
||||
2023-07-28 23:51,0011
|
74
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-5.dat
Normal file
74
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,74 @@
|
||||
2023-07-29 00:11,0111
|
||||
2023-07-29 00:26,0111
|
||||
2023-07-29 00:41,0111
|
||||
2023-07-29 00:56,0111
|
||||
2023-07-29 01:11,0111
|
||||
2023-07-29 01:26,0111
|
||||
2023-07-29 02:26,0111
|
||||
2023-07-29 02:56,0111
|
||||
2023-07-29 03:11,0111
|
||||
2023-07-29 03:26,0111
|
||||
2023-07-29 03:41,0111
|
||||
2023-07-29 03:56,0111
|
||||
2023-07-29 04:11,0111
|
||||
2023-07-29 04:26,0111
|
||||
2023-07-29 04:41,0111
|
||||
2023-07-29 04:56,0111
|
||||
2023-07-29 05:11,0111
|
||||
2023-07-29 05:41,0111
|
||||
2023-07-29 05:56,0111
|
||||
2023-07-29 06:11,0111
|
||||
2023-07-29 06:26,0111
|
||||
2023-07-29 06:41,0111
|
||||
2023-07-29 06:56,0111
|
||||
2023-07-29 07:56,0111
|
||||
2023-07-29 08:11,0111
|
||||
2023-07-29 08:56,0111
|
||||
2023-07-29 09:26,0111
|
||||
2023-07-29 09:41,0111
|
||||
2023-07-29 09:56,0111
|
||||
2023-07-29 10:26,0111
|
||||
2023-07-29 10:41,0111
|
||||
2023-07-29 11:11,0111
|
||||
2023-07-29 11:26,0111
|
||||
2023-07-29 11:41,0111
|
||||
2023-07-29 12:11,0111
|
||||
2023-07-29 12:26,0111
|
||||
2023-07-29 12:56,0111
|
||||
2023-07-29 13:26,0111
|
||||
2023-07-29 13:41,0111
|
||||
2023-07-29 13:56,0111
|
||||
2023-07-29 14:11,0111
|
||||
2023-07-29 14:26,0111
|
||||
2023-07-29 14:41,0111
|
||||
2023-07-29 14:56,0111
|
||||
2023-07-29 15:11,0111
|
||||
2023-07-29 15:26,0111
|
||||
2023-07-29 15:41,0111
|
||||
2023-07-29 15:56,0111
|
||||
2023-07-29 16:11,0111
|
||||
2023-07-29 16:26,0111
|
||||
2023-07-29 16:41,0111
|
||||
2023-07-29 16:56,0111
|
||||
2023-07-29 17:20,0111
|
||||
2023-07-29 17:41,0111
|
||||
2023-07-29 18:11,0111
|
||||
2023-07-29 18:26,0111
|
||||
2023-07-29 18:41,0111
|
||||
2023-07-29 18:56,0111
|
||||
2023-07-29 19:11,0111
|
||||
2023-07-29 19:26,0111
|
||||
2023-07-29 19:41,0111
|
||||
2023-07-29 19:56,0111
|
||||
2023-07-29 20:11,0111
|
||||
2023-07-29 20:26,0111
|
||||
2023-07-29 20:41,0111
|
||||
2023-07-29 20:56,0111
|
||||
2023-07-29 21:11,0111
|
||||
2023-07-29 21:26,0111
|
||||
2023-07-29 22:11,0111
|
||||
2023-07-29 22:56,0111
|
||||
2023-07-29 23:11,0111
|
||||
2023-07-29 23:26,0111
|
||||
2023-07-29 23:41,0111
|
||||
2023-07-29 23:56,0111
|
65
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-6.dat
Normal file
65
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,65 @@
|
||||
2023-07-29 00:31,0000
|
||||
2023-07-29 00:46,0000
|
||||
2023-07-29 01:16,0000
|
||||
2023-07-29 01:31,0000
|
||||
2023-07-29 01:46,0000
|
||||
2023-07-29 02:16,0000
|
||||
2023-07-29 02:46,0000
|
||||
2023-07-29 03:01,0000
|
||||
2023-07-29 03:46,0000
|
||||
2023-07-29 04:31,0000
|
||||
2023-07-29 04:46,0000
|
||||
2023-07-29 05:01,0000
|
||||
2023-07-29 05:31,0000
|
||||
2023-07-29 05:46,0000
|
||||
2023-07-29 06:16,0000
|
||||
2023-07-29 06:31,0000
|
||||
2023-07-29 06:46,0000
|
||||
2023-07-29 07:01,0000
|
||||
2023-07-29 07:16,0000
|
||||
2023-07-29 07:31,0000
|
||||
2023-07-29 07:46,0000
|
||||
2023-07-29 08:16,0000
|
||||
2023-07-29 08:31,0000
|
||||
2023-07-29 08:46,0000
|
||||
2023-07-29 09:16,0000
|
||||
2023-07-29 09:46,0000
|
||||
2023-07-29 10:16,0000
|
||||
2023-07-29 10:31,0000
|
||||
2023-07-29 11:01,0000
|
||||
2023-07-29 11:16,0000
|
||||
2023-07-29 11:46,0000
|
||||
2023-07-29 12:16,0000
|
||||
2023-07-29 12:31,0000
|
||||
2023-07-29 12:46,0000
|
||||
2023-07-29 13:01,0000
|
||||
2023-07-29 13:31,0000
|
||||
2023-07-29 14:16,0000
|
||||
2023-07-29 14:31,0000
|
||||
2023-07-29 14:46,0000
|
||||
2023-07-29 15:01,0000
|
||||
2023-07-29 15:16,0000
|
||||
2023-07-29 15:31,0000
|
||||
2023-07-29 15:46,0000
|
||||
2023-07-29 16:16,0000
|
||||
2023-07-29 16:31,0000
|
||||
2023-07-29 17:01,0000
|
||||
2023-07-29 17:16,0000
|
||||
2023-07-29 17:31,0000
|
||||
2023-07-29 18:16,0000
|
||||
2023-07-29 19:01,0000
|
||||
2023-07-29 19:16,0000
|
||||
2023-07-29 19:31,0000
|
||||
2023-07-29 19:46,0000
|
||||
2023-07-29 20:01,0000
|
||||
2023-07-29 20:16,0000
|
||||
2023-07-29 20:31,0000
|
||||
2023-07-29 20:46,0000
|
||||
2023-07-29 21:46,0000
|
||||
2023-07-29 22:01,0000
|
||||
2023-07-29 22:16,0000
|
||||
2023-07-29 22:31,0000
|
||||
2023-07-29 22:46,0000
|
||||
2023-07-29 23:01,0000
|
||||
2023-07-29 23:16,0000
|
||||
2023-07-29 23:46,0000
|
78
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-8.dat
Normal file
78
aprs_utils/aprs_log/2023-07-29_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,78 @@
|
||||
2023-07-29 00:21,0011
|
||||
2023-07-29 00:36,0011
|
||||
2023-07-29 00:51,0011
|
||||
2023-07-29 01:06,0011
|
||||
2023-07-29 01:21,0011
|
||||
2023-07-29 01:36,0011
|
||||
2023-07-29 02:06,0011
|
||||
2023-07-29 02:21,0011
|
||||
2023-07-29 02:36,0011
|
||||
2023-07-29 03:06,0011
|
||||
2023-07-29 03:21,0011
|
||||
2023-07-29 03:36,0011
|
||||
2023-07-29 03:51,0011
|
||||
2023-07-29 04:06,0011
|
||||
2023-07-29 04:21,0011
|
||||
2023-07-29 04:36,0011
|
||||
2023-07-29 04:51,0011
|
||||
2023-07-29 05:06,0011
|
||||
2023-07-29 05:21,0011
|
||||
2023-07-29 06:06,0011
|
||||
2023-07-29 06:21,0011
|
||||
2023-07-29 06:36,0011
|
||||
2023-07-29 07:21,0011
|
||||
2023-07-29 07:36,0011
|
||||
2023-07-29 08:06,0011
|
||||
2023-07-29 08:51,0011
|
||||
2023-07-29 09:06,0011
|
||||
2023-07-29 09:21,0011
|
||||
2023-07-29 09:36,0011
|
||||
2023-07-29 09:51,0011
|
||||
2023-07-29 10:06,0011
|
||||
2023-07-29 10:36,0011
|
||||
2023-07-29 11:06,0011
|
||||
2023-07-29 11:36,0011
|
||||
2023-07-29 11:51,0011
|
||||
2023-07-29 12:21,0011
|
||||
2023-07-29 12:36,0011
|
||||
2023-07-29 12:51,0011
|
||||
2023-07-29 13:06,0011
|
||||
2023-07-29 13:21,0011
|
||||
2023-07-29 14:06,0011
|
||||
2023-07-29 14:21,0011
|
||||
2023-07-29 14:36,0011
|
||||
2023-07-29 14:51,0011
|
||||
2023-07-29 15:06,0011
|
||||
2023-07-29 15:21,0011
|
||||
2023-07-29 15:36,0011
|
||||
2023-07-29 15:51,0011
|
||||
2023-07-29 16:06,0011
|
||||
2023-07-29 16:21,0011
|
||||
2023-07-29 16:51,0011
|
||||
2023-07-29 17:06,0011
|
||||
2023-07-29 17:36,0011
|
||||
2023-07-29 17:51,0011
|
||||
2023-07-29 18:06,0011
|
||||
2023-07-29 18:21,0011
|
||||
2023-07-29 18:36,0011
|
||||
2023-07-29 18:51,0011
|
||||
2023-07-29 19:06,0011
|
||||
2023-07-29 19:21,0011
|
||||
2023-07-29 19:36,0011
|
||||
2023-07-29 19:51,0011
|
||||
2023-07-29 20:06,0011
|
||||
2023-07-29 20:21,0011
|
||||
2023-07-29 20:36,0011
|
||||
2023-07-29 20:51,0011
|
||||
2023-07-29 21:06,0011
|
||||
2023-07-29 21:21,0011
|
||||
2023-07-29 21:36,0011
|
||||
2023-07-29 21:51,0011
|
||||
2023-07-29 22:06,0011
|
||||
2023-07-29 22:21,0011
|
||||
2023-07-29 22:36,0011
|
||||
2023-07-29 22:51,0011
|
||||
2023-07-29 23:06,0011
|
||||
2023-07-29 23:21,0011
|
||||
2023-07-29 23:36,0011
|
||||
2023-07-29 23:51,0011
|
79
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-5.dat
Normal file
79
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,79 @@
|
||||
2023-07-30 00:11,0111
|
||||
2023-07-30 00:26,0111
|
||||
2023-07-30 00:56,0111
|
||||
2023-07-30 01:11,0111
|
||||
2023-07-30 01:26,0111
|
||||
2023-07-30 01:41,0111
|
||||
2023-07-30 01:56,0111
|
||||
2023-07-30 02:11,0111
|
||||
2023-07-30 02:26,0111
|
||||
2023-07-30 02:41,0111
|
||||
2023-07-30 02:56,0111
|
||||
2023-07-30 03:11,0111
|
||||
2023-07-30 03:41,0111
|
||||
2023-07-30 04:11,0111
|
||||
2023-07-30 04:26,0111
|
||||
2023-07-30 04:41,0111
|
||||
2023-07-30 04:56,0111
|
||||
2023-07-30 05:11,0111
|
||||
2023-07-30 05:26,0111
|
||||
2023-07-30 05:41,0111
|
||||
2023-07-30 05:56,0111
|
||||
2023-07-30 06:11,0111
|
||||
2023-07-30 06:26,0111
|
||||
2023-07-30 06:41,0111
|
||||
2023-07-30 06:56,0111
|
||||
2023-07-30 07:26,0111
|
||||
2023-07-30 07:56,0111
|
||||
2023-07-30 08:11,0111
|
||||
2023-07-30 08:41,0111
|
||||
2023-07-30 09:26,0111
|
||||
2023-07-30 09:41,0111
|
||||
2023-07-30 09:56,0111
|
||||
2023-07-30 10:11,0111
|
||||
2023-07-30 10:26,0111
|
||||
2023-07-30 10:41,0111
|
||||
2023-07-30 10:56,0111
|
||||
2023-07-30 11:11,0111
|
||||
2023-07-30 11:26,0111
|
||||
2023-07-30 11:56,0111
|
||||
2023-07-30 12:11,0111
|
||||
2023-07-30 12:26,0111
|
||||
2023-07-30 12:56,0111
|
||||
2023-07-30 13:11,0111
|
||||
2023-07-30 13:26,0111
|
||||
2023-07-30 13:41,0111
|
||||
2023-07-30 14:11,0111
|
||||
2023-07-30 14:26,0111
|
||||
2023-07-30 14:41,0111
|
||||
2023-07-30 14:56,0111
|
||||
2023-07-30 15:11,0111
|
||||
2023-07-30 15:41,0111
|
||||
2023-07-30 15:56,0111
|
||||
2023-07-30 16:11,0111
|
||||
2023-07-30 16:26,0111
|
||||
2023-07-30 16:41,0111
|
||||
2023-07-30 16:56,0111
|
||||
2023-07-30 17:11,0111
|
||||
2023-07-30 17:26,0111
|
||||
2023-07-30 17:41,0111
|
||||
2023-07-30 18:11,0111
|
||||
2023-07-30 18:26,0111
|
||||
2023-07-30 18:41,0111
|
||||
2023-07-30 19:26,0111
|
||||
2023-07-30 19:41,0111
|
||||
2023-07-30 19:56,0111
|
||||
2023-07-30 20:11,0111
|
||||
2023-07-30 20:26,0111
|
||||
2023-07-30 20:56,0111
|
||||
2023-07-30 21:11,0111
|
||||
2023-07-30 21:41,0111
|
||||
2023-07-30 21:56,0111
|
||||
2023-07-30 22:11,0111
|
||||
2023-07-30 22:26,0111
|
||||
2023-07-30 22:41,0111
|
||||
2023-07-30 22:56,0111
|
||||
2023-07-30 23:11,0111
|
||||
2023-07-30 23:26,0111
|
||||
2023-07-30 23:41,0111
|
||||
2023-07-30 23:56,0111
|
72
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-6.dat
Normal file
72
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,72 @@
|
||||
2023-07-30 00:16,0000
|
||||
2023-07-30 00:31,0000
|
||||
2023-07-30 00:46,0000
|
||||
2023-07-30 01:01,0000
|
||||
2023-07-30 01:31,0000
|
||||
2023-07-30 01:46,0000
|
||||
2023-07-30 02:46,0000
|
||||
2023-07-30 03:01,0000
|
||||
2023-07-30 03:46,0000
|
||||
2023-07-30 04:01,0000
|
||||
2023-07-30 04:16,0000
|
||||
2023-07-30 04:31,0000
|
||||
2023-07-30 04:46,0000
|
||||
2023-07-30 05:31,0000
|
||||
2023-07-30 05:46,0000
|
||||
2023-07-30 06:16,0000
|
||||
2023-07-30 06:46,0000
|
||||
2023-07-30 07:01,0000
|
||||
2023-07-30 07:16,0000
|
||||
2023-07-30 07:31,0000
|
||||
2023-07-30 07:46,0000
|
||||
2023-07-30 08:16,0000
|
||||
2023-07-30 08:31,0000
|
||||
2023-07-30 08:46,0000
|
||||
2023-07-30 09:01,0000
|
||||
2023-07-30 09:16,0000
|
||||
2023-07-30 09:31,0000
|
||||
2023-07-30 09:46,0000
|
||||
2023-07-30 10:16,0000
|
||||
2023-07-30 10:31,0000
|
||||
2023-07-30 10:46,0000
|
||||
2023-07-30 11:01,0000
|
||||
2023-07-30 11:16,0000
|
||||
2023-07-30 11:31,0000
|
||||
2023-07-30 11:46,0000
|
||||
2023-07-30 12:16,0000
|
||||
2023-07-30 12:31,0000
|
||||
2023-07-30 12:46,0000
|
||||
2023-07-30 13:16,0000
|
||||
2023-07-30 14:16,0000
|
||||
2023-07-30 14:46,0000
|
||||
2023-07-30 15:01,0000
|
||||
2023-07-30 15:16,0000
|
||||
2023-07-30 15:31,0000
|
||||
2023-07-30 15:46,0000
|
||||
2023-07-30 16:01,0000
|
||||
2023-07-30 16:46,0000
|
||||
2023-07-30 17:01,0000
|
||||
2023-07-30 17:16,0000
|
||||
2023-07-30 17:46,0000
|
||||
2023-07-30 18:16,0000
|
||||
2023-07-30 18:31,0000
|
||||
2023-07-30 18:46,0000
|
||||
2023-07-30 19:01,0000
|
||||
2023-07-30 19:16,0000
|
||||
2023-07-30 19:31,0000
|
||||
2023-07-30 19:46,0000
|
||||
2023-07-30 20:01,0000
|
||||
2023-07-30 20:16,0000
|
||||
2023-07-30 20:31,0000
|
||||
2023-07-30 20:46,0000
|
||||
2023-07-30 21:01,0000
|
||||
2023-07-30 21:16,0000
|
||||
2023-07-30 21:31,0000
|
||||
2023-07-30 21:46,0000
|
||||
2023-07-30 22:01,0000
|
||||
2023-07-30 22:16,0000
|
||||
2023-07-30 22:46,0000
|
||||
2023-07-30 23:01,0000
|
||||
2023-07-30 23:16,0000
|
||||
2023-07-30 23:31,0000
|
||||
2023-07-30 23:46,0000
|
75
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-8.dat
Normal file
75
aprs_utils/aprs_log/2023-07-30_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,75 @@
|
||||
2023-07-30 00:06,0011
|
||||
2023-07-30 00:21,0011
|
||||
2023-07-30 00:36,0011
|
||||
2023-07-30 00:51,0011
|
||||
2023-07-30 01:06,0011
|
||||
2023-07-30 01:36,0011
|
||||
2023-07-30 01:51,0011
|
||||
2023-07-30 02:06,0011
|
||||
2023-07-30 03:06,0011
|
||||
2023-07-30 03:21,0011
|
||||
2023-07-30 03:36,0011
|
||||
2023-07-30 04:21,0011
|
||||
2023-07-30 04:36,0011
|
||||
2023-07-30 04:51,0011
|
||||
2023-07-30 05:06,0011
|
||||
2023-07-30 05:36,0011
|
||||
2023-07-30 06:21,0011
|
||||
2023-07-30 06:36,0011
|
||||
2023-07-30 06:51,0011
|
||||
2023-07-30 07:06,0011
|
||||
2023-07-30 07:36,0011
|
||||
2023-07-30 07:51,0011
|
||||
2023-07-30 08:06,0011
|
||||
2023-07-30 08:21,0011
|
||||
2023-07-30 08:36,0011
|
||||
2023-07-30 08:51,0011
|
||||
2023-07-30 09:06,0011
|
||||
2023-07-30 09:21,0011
|
||||
2023-07-30 09:51,0011
|
||||
2023-07-30 10:06,0011
|
||||
2023-07-30 10:36,0011
|
||||
2023-07-30 11:21,0011
|
||||
2023-07-30 11:36,0011
|
||||
2023-07-30 12:21,0011
|
||||
2023-07-30 12:36,0011
|
||||
2023-07-30 12:51,0011
|
||||
2023-07-30 13:06,0011
|
||||
2023-07-30 13:21,0011
|
||||
2023-07-30 13:51,0011
|
||||
2023-07-30 14:06,0011
|
||||
2023-07-30 14:21,0011
|
||||
2023-07-30 14:36,0011
|
||||
2023-07-30 14:51,0011
|
||||
2023-07-30 15:06,0011
|
||||
2023-07-30 15:21,0011
|
||||
2023-07-30 15:51,0011
|
||||
2023-07-30 16:06,0011
|
||||
2023-07-30 16:21,0011
|
||||
2023-07-30 16:36,0011
|
||||
2023-07-30 16:51,0011
|
||||
2023-07-30 17:06,0011
|
||||
2023-07-30 17:36,0011
|
||||
2023-07-30 17:51,0011
|
||||
2023-07-30 18:06,0011
|
||||
2023-07-30 18:21,0011
|
||||
2023-07-30 18:36,0011
|
||||
2023-07-30 18:51,0011
|
||||
2023-07-30 19:06,0011
|
||||
2023-07-30 19:21,0011
|
||||
2023-07-30 19:36,0011
|
||||
2023-07-30 19:51,0011
|
||||
2023-07-30 20:06,0011
|
||||
2023-07-30 20:21,0011
|
||||
2023-07-30 20:51,0011
|
||||
2023-07-30 21:06,0011
|
||||
2023-07-30 21:21,0011
|
||||
2023-07-30 21:36,0011
|
||||
2023-07-30 21:51,0011
|
||||
2023-07-30 22:06,0011
|
||||
2023-07-30 22:21,0011
|
||||
2023-07-30 22:51,0011
|
||||
2023-07-30 23:06,0011
|
||||
2023-07-30 23:21,0011
|
||||
2023-07-30 23:36,0011
|
||||
2023-07-30 23:51,0011
|
38
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-5.dat
Normal file
38
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,38 @@
|
||||
2023-07-31 00:11,0111
|
||||
2023-07-31 00:26,0111
|
||||
2023-07-31 00:41,0111
|
||||
2023-07-31 01:11,0111
|
||||
2023-07-31 01:26,0111
|
||||
2023-07-31 01:41,0111
|
||||
2023-07-31 01:56,0111
|
||||
2023-07-31 02:11,0111
|
||||
2023-07-31 02:26,0111
|
||||
2023-07-31 02:56,0111
|
||||
2023-07-31 03:56,0111
|
||||
2023-07-31 04:41,0111
|
||||
2023-07-31 04:56,0111
|
||||
2023-07-31 05:11,0111
|
||||
2023-07-31 05:26,0111
|
||||
2023-07-31 05:56,0111
|
||||
2023-07-31 06:56,0111
|
||||
2023-07-31 07:11,0111
|
||||
2023-07-31 07:41,0111
|
||||
2023-07-31 07:56,0111
|
||||
2023-07-31 08:11,0111
|
||||
2023-07-31 08:26,0111
|
||||
2023-07-31 08:41,0111
|
||||
2023-07-31 08:56,0111
|
||||
2023-07-31 09:11,0111
|
||||
2023-07-31 09:26,0111
|
||||
2023-07-31 09:56,0111
|
||||
2023-07-31 10:26,0111
|
||||
2023-07-31 10:41,0111
|
||||
2023-07-31 10:56,0111
|
||||
2023-07-31 11:11,0111
|
||||
2023-07-31 11:26,0111
|
||||
2023-07-31 11:56,0111
|
||||
2023-07-31 12:11,0111
|
||||
2023-07-31 12:26,0111
|
||||
2023-07-31 12:41,0111
|
||||
2023-07-31 12:56,0111
|
||||
2023-07-31 13:26,0111
|
37
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-6.dat
Normal file
37
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,37 @@
|
||||
2023-07-31 00:16,0000
|
||||
2023-07-31 00:46,0000
|
||||
2023-07-31 01:16,0000
|
||||
2023-07-31 01:46,0000
|
||||
2023-07-31 02:01,0000
|
||||
2023-07-31 02:16,0000
|
||||
2023-07-31 03:01,0000
|
||||
2023-07-31 03:46,0000
|
||||
2023-07-31 04:31,0000
|
||||
2023-07-31 04:46,0000
|
||||
2023-07-31 05:16,0000
|
||||
2023-07-31 05:31,0000
|
||||
2023-07-31 05:46,0000
|
||||
2023-07-31 06:01,0000
|
||||
2023-07-31 06:16,0000
|
||||
2023-07-31 06:31,0000
|
||||
2023-07-31 06:46,0000
|
||||
2023-07-31 07:01,0000
|
||||
2023-07-31 07:31,0000
|
||||
2023-07-31 07:46,0000
|
||||
2023-07-31 08:01,0000
|
||||
2023-07-31 08:16,0000
|
||||
2023-07-31 08:46,0000
|
||||
2023-07-31 09:16,0000
|
||||
2023-07-31 09:31,0000
|
||||
2023-07-31 09:46,0000
|
||||
2023-07-31 10:01,0000
|
||||
2023-07-31 10:16,0000
|
||||
2023-07-31 10:31,0000
|
||||
2023-07-31 11:01,0000
|
||||
2023-07-31 11:16,0000
|
||||
2023-07-31 11:46,0000
|
||||
2023-07-31 12:01,0000
|
||||
2023-07-31 12:16,0000
|
||||
2023-07-31 13:16,0000
|
||||
2023-07-31 13:31,0000
|
||||
2023-07-31 13:46,0000
|
44
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-8.dat
Normal file
44
aprs_utils/aprs_log/2023-07-31_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,44 @@
|
||||
2023-07-31 00:06,0011
|
||||
2023-07-31 00:36,0011
|
||||
2023-07-31 00:51,0011
|
||||
2023-07-31 01:06,0011
|
||||
2023-07-31 01:21,0011
|
||||
2023-07-31 01:36,0011
|
||||
2023-07-31 02:06,0011
|
||||
2023-07-31 02:21,0011
|
||||
2023-07-31 02:36,0011
|
||||
2023-07-31 02:51,0011
|
||||
2023-07-31 03:06,0011
|
||||
2023-07-31 03:21,0011
|
||||
2023-07-31 03:36,0011
|
||||
2023-07-31 03:51,0011
|
||||
2023-07-31 04:21,0011
|
||||
2023-07-31 04:36,0011
|
||||
2023-07-31 04:51,0011
|
||||
2023-07-31 05:06,0011
|
||||
2023-07-31 05:21,0011
|
||||
2023-07-31 05:36,0011
|
||||
2023-07-31 06:06,0011
|
||||
2023-07-31 06:51,0011
|
||||
2023-07-31 07:06,0011
|
||||
2023-07-31 07:21,0011
|
||||
2023-07-31 07:36,0011
|
||||
2023-07-31 07:51,0011
|
||||
2023-07-31 08:06,0011
|
||||
2023-07-31 08:21,0011
|
||||
2023-07-31 08:36,0011
|
||||
2023-07-31 08:51,0011
|
||||
2023-07-31 09:06,0011
|
||||
2023-07-31 09:51,0011
|
||||
2023-07-31 10:06,0011
|
||||
2023-07-31 10:21,0011
|
||||
2023-07-31 10:36,0011
|
||||
2023-07-31 10:51,0011
|
||||
2023-07-31 11:36,0011
|
||||
2023-07-31 11:51,0011
|
||||
2023-07-31 12:06,0011
|
||||
2023-07-31 12:21,0011
|
||||
2023-07-31 12:36,0011
|
||||
2023-07-31 12:51,0011
|
||||
2023-07-31 13:06,0011
|
||||
2023-07-31 13:36,0011
|
26
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-5.dat
Normal file
26
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-5.dat
Normal file
@@ -0,0 +1,26 @@
|
||||
2023-08-04 15:14,0111
|
||||
2023-08-04 15:29,0111
|
||||
2023-08-04 16:29,0111
|
||||
2023-08-04 16:44,0111
|
||||
2023-08-04 16:59,0111
|
||||
2023-08-04 17:14,0111
|
||||
2023-08-04 17:29,0111
|
||||
2023-08-04 17:44,0111
|
||||
2023-08-04 18:29,0111
|
||||
2023-08-04 18:44,0111
|
||||
2023-08-04 19:14,0111
|
||||
2023-08-04 19:29,0111
|
||||
2023-08-04 19:44,0111
|
||||
2023-08-04 19:59,0111
|
||||
2023-08-04 20:14,0111
|
||||
2023-08-04 20:29,0111
|
||||
2023-08-04 20:44,0111
|
||||
2023-08-04 21:14,0111
|
||||
2023-08-04 21:29,0111
|
||||
2023-08-04 21:44,0111
|
||||
2023-08-04 22:14,0111
|
||||
2023-08-04 22:29,0111
|
||||
2023-08-04 22:44,0111
|
||||
2023-08-04 23:14,0111
|
||||
2023-08-04 23:29,0111
|
||||
2023-08-04 23:59,0111
|
28
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-6.dat
Normal file
28
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-6.dat
Normal file
@@ -0,0 +1,28 @@
|
||||
2023-08-04 15:19,0000
|
||||
2023-08-04 15:34,0000
|
||||
2023-08-04 15:49,0000
|
||||
2023-08-04 16:19,0000
|
||||
2023-08-04 16:34,0000
|
||||
2023-08-04 16:49,0000
|
||||
2023-08-04 17:04,0000
|
||||
2023-08-04 17:19,0000
|
||||
2023-08-04 17:49,0000
|
||||
2023-08-04 18:04,0000
|
||||
2023-08-04 18:19,0000
|
||||
2023-08-04 18:34,0000
|
||||
2023-08-04 18:49,0000
|
||||
2023-08-04 19:04,0000
|
||||
2023-08-04 19:19,0000
|
||||
2023-08-04 20:04,0000
|
||||
2023-08-04 20:19,0000
|
||||
2023-08-04 20:34,0000
|
||||
2023-08-04 20:49,0000
|
||||
2023-08-04 21:04,0000
|
||||
2023-08-04 21:19,0000
|
||||
2023-08-04 21:34,0000
|
||||
2023-08-04 21:49,0000
|
||||
2023-08-04 22:04,0000
|
||||
2023-08-04 23:04,0000
|
||||
2023-08-04 23:19,0000
|
||||
2023-08-04 23:34,0000
|
||||
2023-08-04 23:49,0000
|
27
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-8.dat
Normal file
27
aprs_utils/aprs_log/2023-08-04_telemetry_PE1RXF-8.dat
Normal file
@@ -0,0 +1,27 @@
|
||||
2023-08-04 15:24,0011
|
||||
2023-08-04 15:39,0011
|
||||
2023-08-04 16:54,0011
|
||||
2023-08-04 17:09,0011
|
||||
2023-08-04 17:24,0011
|
||||
2023-08-04 17:39,0011
|
||||
2023-08-04 17:54,0011
|
||||
2023-08-04 18:39,0011
|
||||
2023-08-04 18:54,0011
|
||||
2023-08-04 19:09,0011
|
||||
2023-08-04 19:24,0011
|
||||
2023-08-04 19:54,0011
|
||||
2023-08-04 20:09,0011
|
||||
2023-08-04 20:24,0011
|
||||
2023-08-04 20:39,0011
|
||||
2023-08-04 20:54,0011
|
||||
2023-08-04 21:09,0011
|
||||
2023-08-04 21:24,0011
|
||||
2023-08-04 21:54,0011
|
||||
2023-08-04 22:09,0011
|
||||
2023-08-04 22:24,0011
|
||||
2023-08-04 22:39,0011
|
||||
2023-08-04 22:54,0011
|
||||
2023-08-04 23:09,0011
|
||||
2023-08-04 23:24,0011
|
||||
2023-08-04 23:39,0011
|
||||
2023-08-04 23:54,0011
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user