pysondehub/README.md

96 wiersze
2.4 KiB
Markdown
Czysty Zwykły widok Historia

2021-02-02 00:33:53 +00:00
Simple realtime streaming SDK for sondehub.org V2 API.
```
sondehub.Stream(sondes=["serial number"], on_message=callback)
```
If no `sondes` list is provided then all radiosondes will be streamed.
2021-02-10 06:18:10 +00:00
On message callback will contain a python dictonary using the [Universal Sonde Telemetry Format](https://github.com/projecthorus/radiosonde_auto_rx/wiki/SondeHub-DB-Universal-Telemetry-Format)
2021-02-02 00:33:53 +00:00
2021-02-02 00:54:00 +00:00
```
sondehub.Stream().add_sonde(serial)
sondehub.Stream().remove_sonde(serial)
```
Adds or removes a radiosonde from the filter
2021-02-02 02:29:52 +00:00
Data license
--
Data is provided under the [Creative Commons BY-SA 2.0](https://creativecommons.org/licenses/by-sa/2.0/) license.
2021-02-02 00:33:53 +00:00
Example Usage
--
```python
import sondehub
def on_message(message):
print(message)
test = sondehub.Stream(sondes=["R3320848"], on_message=on_message)
#test = sondehub.Stream(on_message=on_message)
while 1:
pass
```
2021-06-10 09:51:20 +00:00
Advanced Usage
--
Manual usage of the Paho MQTT network loop can be obtained by using the `loop`, `loop_forever`, `loop_start` and `loop_stop` functions, taking care to ensure that the different types of network loop aren't mixed. See Paho documentation [here](https://www.eclipse.org/paho/index.php?page=clients/python/docs/index.php#network-loop).
```python
test = sondehub.Stream(on_message=on_message, sondes=sondes, auto_start_loop=False)
test.loop_forever()
```
2021-04-07 08:34:52 +00:00
### CLI Usage
#### Live streaming data
2021-02-02 00:33:53 +00:00
```sh
# all radiosondes
sondehub
# single radiosonde
sondehub --serial "IMET-73217972"
# multiple radiosondes
sondehub --serial "IMET-73217972" --serial "IMET-73217973"
#pipe in jq
sondehub | jq .
{
"subtype": "SondehubV1",
"temp": "-4.0",
"manufacturer": "SondehubV1",
"serial": "IMET54-55067143",
"lat": "-25.95437",
"frame": "85436",
"datetime": "2021-02-01T23:43:57.043655Z",
"software_name": "SondehubV1",
"humidity": "97.8",
"alt": "5839",
"vel_h": "-9999.0",
"uploader_callsign": "ZS6TVB",
"lon": "28.19082",
"software_version": "SondehubV1",
"type": "SondehubV1",
"time_received": "2021-02-01T23:43:57.043655Z",
"position": "-25.95437,28.19082"
}
....
2021-02-10 06:18:10 +00:00
```
2021-04-07 08:34:52 +00:00
#### Downloading data
```
2021-08-03 06:12:57 +00:00
sondehub --download S2810113
2021-04-07 08:34:52 +00:00
```
2021-02-10 06:18:10 +00:00
Open Data Access
==
2021-08-03 06:12:57 +00:00
A basic interface to the Open Data is a available using `sondehub.download(serial=, datetime_prefix=)`. When using datetime_prefix only summary data is provided (the oldest, newest and highest frames)
2021-02-10 06:18:10 +00:00
```
import sondehub
2021-08-03 06:12:57 +00:00
frames = sondehub.download(datetime_prefix="2018/10/01")
2021-02-10 06:18:10 +00:00
frames = sondehub.download(serial="serial")
2021-02-02 00:33:53 +00:00
```