From c4eadd7dca7b48a6578dc519cca04c82642f8e66 Mon Sep 17 00:00:00 2001 From: krakenrf <78108016+krakenrf@users.noreply.github.com> Date: Mon, 7 Aug 2023 22:40:53 +1200 Subject: Update sondehub_krakenmap.py --- misc_scripts/sondehub_krakenmap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc_scripts/sondehub_krakenmap.py b/misc_scripts/sondehub_krakenmap.py index 9b38cce..d44308b 100644 --- a/misc_scripts/sondehub_krakenmap.py +++ b/misc_scripts/sondehub_krakenmap.py @@ -10,7 +10,7 @@ import requests # The unique 8-digit Sonde identifier. Shown in the sondehub.org UI. SONDE_ID = "U1140595" -API_SERVER = 'https://map.krakenrf.com:443' +API_SERVER = 'https://map.krakenrf.com' # Your Kraken Pro Cloud username email and password login = {'email': 'email', 'password': 'password'} @@ -21,7 +21,7 @@ token = x.text #print(x.text) def on_message(message): - beaconData = {'lat': message['lat'], 'lon': message['lon'], 'speed': 0, 'height': message['alt']} + beaconData = {'id': str(message['serial']), 'lat': message['lat'], 'lon': message['lon'], 'speed': round(message['vel_h'] * 3.6), 'height': int(message['alt']), 'heading' : int(message['heading'])} x = requests.post(API_SERVER + '/beacon', json = beaconData, headers = {'Authorization': token}) #print(x.text) #print(message['lat']) -- cgit v1.2.3