json sauce

main
root 2022-05-23 13:16:04 -06:00
parent d8bb287e3d
commit 74bad2c007
2 changed files with 41 additions and 1 deletions

View File

@ -46,6 +46,30 @@ Run thusly.
./celestia-galmon ./celestia-galmon
``` ```
# Galmon Data
Galmon data can be retrieved from the website in JSON format.
Available URLs:
Global, overview of data collection:
* https://galmon.eu/global.json
Service Vehicles (Satellites):
* https://galmon.eu/svs.json
Almanac. Can also be queried with `t` time flag:
* https://galmon.eu/almanac.json
* https://galmon.eu/almanac.json?t=1653332121
Observers (Ground Stations):
* https://galmon.eu/observers.json
Coverage:
* https://galmon.eu/cov.json
* https://galmon.eu/cov.json?gps=0&galileo=1&beidou=0&glonass=0
SBAS:
* https://galmon.eu/sbas.json
# See Also # See Also
Refs. Refs.
@ -66,6 +90,19 @@ Upstream Celestia:
* https://github.com/CelestiaProject/Celestia * https://github.com/CelestiaProject/Celestia
## Galmon
Galmon main page:
* https://galmon.eu
Galmon web map:
* https://galmon.eu/geo/
Source code:
* https://github.com/berthubert/galmon
Observers:
* https://berthub.eu/articles/posts/galmon-project/
# TODO # TODO
Do. Do.
@ -78,6 +115,7 @@ Alpha, under development.
# License / Copyright # License / Copyright
Unofficial project, not part of Celestia or Galmon.
Upstream sources under their respective copyrights. Upstream sources under their respective copyrights.
Copyright (C) 2022 Jeff Moe. Copyright (C) 2022 Jeff Moe.

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
""" """
celestia-galon celestia-galmon
Retrieve Galmon GNSS data and feed it to Celestia for visualization. Retrieve Galmon GNSS data and feed it to Celestia for visualization.
Copyright (C) 2022, Jeff Moe, jebba. Copyright (C) 2022, Jeff Moe, jebba.
@ -26,4 +26,6 @@
# ./celestia-galmon > /usr/share/celestia/extras-standard/galmon/galmon.foo # ./celestia-galmon > /usr/share/celestia/extras-standard/galmon/galmon.foo
import os import os
import json
import simplejson as json