galmon/README.md

308 lines
11 KiB
Markdown
Raw Normal View History

2019-07-21 08:09:11 -06:00
# galmon
2019-09-05 03:12:15 -06:00
galileo/GPS/GLONASS/BeiDou open source monitoring. GPL3 licensed.
2019-11-05 05:18:22 -07:00
(C) AHU Holding BV - bert@hubertnet.nl - https://berthub.eu/
2019-09-05 03:12:15 -06:00
Live website: https://galmon.eu/
2019-08-15 14:08:59 -06:00
2019-11-08 03:18:06 -07:00
Theoretically multi-vendor, although currently only the U-blox 8 and 9
chipsets are supported. Navilock NL-8012U receiver works really well, as
does the U-blox evaluation kit for the 8MT. In addition, many stations have
reported success with this very cheap [AliExpress sourced
device](https://www.aliexpress.com/item/32816656706.html). The best and
most high-end receiver, which does all bands, all the time, is the Ublox
F9P, several of us use the
[ArdusimpleRTK2B](https://www.ardusimple.com/simplertk2b/) board.
2019-09-05 03:12:15 -06:00
2020-01-12 13:40:28 -07:00
To deliver data to the project, please read
[The Galmon GNSS Monitoring Project](https://berthub.eu/articles/posts/galmon-project/)
and consult the rules outlined in [the operator
guidelines](https://github.com/ahupowerdns/galmon/blob/master/operator.md).
2019-11-05 05:18:22 -07:00
Highlights
----------
2019-09-05 03:12:15 -06:00
* Processes raw frames/strings/words from GPS, GLONASS, BeiDou and Galileo
2019-11-05 05:18:22 -07:00
* All-band support (E1, E5b, B1I, B2I, Glonass L1, Glonass L2, GPS L1C/A)
so far, GPS L2C and Galileo E5a pending).
2019-09-05 03:12:15 -06:00
* Calculate ephemeris positions
2019-11-05 05:18:22 -07:00
* Comparison of ephemerides to independent SP3 data to determine SISE
* Globally, locally, worst user location
2019-11-05 05:14:31 -07:00
* Record discontinuities between subsequent ephemerides (in time and space)
2019-09-05 03:12:15 -06:00
* Compare doppler shift as reported by receiver with that expected from ephemeris
* Track atomic clock & report jumps
2019-11-05 05:14:31 -07:00
* Coverage maps (number of satellites >5, >10, >20 elevation)
* HDOP/VDOP/PDOP maps
2019-09-05 03:12:15 -06:00
* Compare orbit to TLE, match up to best matching satellite
* Tear out every bit that tells us how well an SV is doing
* Full almanac processing to see what _should_ be transmitting
* Distributed receivers, combined into a single source of all messages
2019-11-05 05:18:22 -07:00
* Ready to detect/report spoofing/jamming
2019-11-05 05:14:31 -07:00
Data is made available as JSON, as a user-friendly website and as a
time-series database. This time-series database is easily mated to the
2020-01-12 13:40:28 -07:00
industry standard Matplotlib/Pandas/Jupyter combination (details
[here]((https://github.com/ahupowerdns/galmon/blob/master/influxdb.md)).
2019-11-05 05:14:31 -07:00
There is also tooling to extract raw frames/strings/words from specific
timeframes.
2019-08-15 14:08:59 -06:00
Goals:
1) Support multiple wildly distributed receivers
2) Combine these into a forensic archive of all Galileo/GPS NAV messages
3) Make this archive available, offline and as a stream
4) Consume this stream and turn it into an attractive live website
(https://galmon.eu/). As part of this, perform higher-level calculations
to determine ephemeris discontinuities, live gst/gps/galileo time
offsets, atomic clock jumps etc.
5) Populate an InfluxDB timeseries database with raw measurements and higher
order calculations
2019-11-09 14:19:00 -07:00
Works on Linux (including Raspbian Buster on Pi Zero W), OSX and OpenBSD.
2019-09-05 03:12:15 -06:00
2019-09-27 02:31:38 -06:00
Build locally
-------------
2019-11-09 14:19:00 -07:00
To get started, make sure you have a C++17 compiler (like g++ 8 or higher),
git, protobuf-compiler. Then run 'make ubxtool navdump' to build the
receiver-only tools.
2019-09-16 05:55:47 -06:00
2019-10-23 02:58:48 -06:00
To build everything, including the webserver, try:
2019-08-15 14:08:59 -06:00
```
2019-10-23 02:58:48 -06:00
apt-get install protobuf-compiler libh2o-dev libcurl4-openssl-dev libssl-dev libprotobuf-dev \
libh2o-evloop-dev libwslay-dev libncurses5-dev libeigen3-dev
2019-08-15 14:08:59 -06:00
git clone https://github.com/ahupowerdns/galmon.git --recursive
cd galmon
make
```
If this doesn't succeed with an error about h2o, make sure you have this
2019-09-05 03:12:15 -06:00
library installed. If you get an error about 'wslay', do the following, and run make again:
```
echo WSLAY=-lwslay > Makefile.local
```
2019-08-15 14:08:59 -06:00
2019-09-28 13:29:34 -06:00
Build in Docker
---------------
To build it in Docker:
```
git clone https://github.com/ahupowerdns/galmon.git --recursive
docker build -t galmon --build-arg MAKE_FLAGS=-j2 .
```
To run a container with a shell in there (this will also expose a port so you can view the UI too and assumes a ublox GPS device too - you may need to tweak as necessary):
2019-09-28 13:29:34 -06:00
```
docker run -it --rm --device=/dev/ttyACM0 -p 10000:10000 galmon
2019-09-28 13:29:34 -06:00
```
2019-09-27 02:31:38 -06:00
Running
-------
2019-09-25 03:29:14 -06:00
Once compiled, run for example `./ubxtool --wait --port /dev/ttyACM0
--station 1 --stdout --galileo | ./navparse 127.0.0.1:10000 html null`
2019-08-15 14:08:59 -06:00
Next up, browse to http://[::1]:10000 (or try http://localhost:10000/ and
you should be in business. ubxtool changes (non-permanently) the
configuration of your u-blox receiver so it emits the required frames for
GPS and Galileo. If you have a u-blox timing receiver it will also enable
the doppler frames.
By default the ublox receiver module will be configured to use the USB port,
if you want to use a different interface port on the ublox module then add
the `--ubxport <id>` option using one of the following numeric IDs:
0 : DDC (aka. I2C)
1 : UART[1]
2 : UART2
3 : USB (default)
4 : SPI
2019-08-15 14:08:59 -06:00
To see what is going on, try:
```
./ubxtool --wait --port /dev/ttyACM0 --station 1 --stdout --galileo | ./navdump
2019-08-15 14:08:59 -06:00
```
2019-09-25 03:29:14 -06:00
To distribute data to a remote `navrecv`, use:
```
./ubxtool --wait --port /dev/ttyACM0 --galileo --station 255 --dest 127.0.0.1
2019-09-25 03:29:14 -06:00
```
This will send protobuf to 127.0.0.1:29603. You can add as many destinations
as you want, they will buffer and automatically reconnect. To also send data
to stdout, add `--stdout`.
2019-08-15 14:08:59 -06:00
2019-08-06 11:13:25 -06:00
Tooling:
* ubxtool: can configure a u-blox 8 chipset, parses its output & will
convert it into a protbuf stream of GNSS NAV frames + metadata
Adds 64-bit timestamps plus origin information to each message
* xtool: if you have another chipset, build something that extracts NAV
2019-08-15 14:08:59 -06:00
frames & metadata. Not done yet.
2019-08-06 11:13:25 -06:00
* navrecv: receives GNSS NAV frames and stores them on disk, split out per
2019-08-11 02:43:29 -06:00
sender.
2019-08-15 14:08:59 -06:00
* navnexus: tails the files stored by navrecv, makes them available over
TCP
2019-09-05 03:12:15 -06:00
* navparse: consumes these ordered nav updates for a nice website
2019-08-15 14:08:59 -06:00
and puts "ready to graph" data in influxdb - this is the first
2019-08-06 11:13:25 -06:00
step that breaks "store everything in native format". Also does
computations on ephemerides.
* grafana dashboard: makes pretty graphs
2019-10-09 19:40:54 -06:00
Linux Systemd
-------------
First make sure 'ubxtool' has been compiled (run: make ubxtool). Then, as
root:
2019-10-09 19:40:54 -06:00
```
mkdir /usr/local/ubxtool
cp ubxtool ubxtool.sh /usr/local/ubxtool/
cp ubxtool.service /etc/systemd/system/
2019-10-09 19:40:54 -06:00
```
Then collect the server IP address (SERVER-IP) and a station number
(STATION-NUMBER) as described in [operator.md], and run:
```
echo SERVER-IP > /usr/local/ubxtool/destination
echo STATION-NUMBER > /usr/local/ubxtool/station
```
Then start up the service (as root):
```
systemctl enable ubxtool
systemctl start ubxtool
2019-10-09 19:40:54 -06:00
```
To check if it is all working, do 'service ubxtool status'.
To change the default constellations, create a file called
/usr/local/ubxtool/constellations and set your favorites. To set all four
constellations (which only F9-receivers support), do as root:
2019-10-09 19:40:54 -06:00
```
echo --gps --glonass --beidou --galileo > /usr/local/ubxtool/constellations
```
And then 'service ubxtool restart'.
2019-10-09 19:40:54 -06:00
2019-09-05 03:12:15 -06:00
Distributed setup
-----------------
Run `navrecv :: ./storage` to receive frames on port 29603 of ::, aka all your IPv6 addresses (and IPv4 too on Linux).
This allows anyone to send you frames, so be aware.
Next up, run `navnexus ./storage ::`, which will serve your recorded data from port 29601. It will merge messages
coming in from all sources and serve them in time order.
Finally, you can do `nc 127.0.0.1 29601 | ./navdump`, which will give you all messages over the past 24 hours, and stream you more.
This also works for `navparse` for the pretty website and influx storage, `nc 127.0.0.1 29601 | ./navparse 127.0.0.0:10000 html galileo`,
2019-09-05 03:12:15 -06:00
if you have an influxdb running on localhost with a galileo database in there.
Internals
---------
2019-08-06 11:13:25 -06:00
The transport format consists of repeats of:
1) Four byte magic value
2) Two-byte frame length
3) A protobuf frame
The magic value is there to help us resync from partially written data.
The whole goal is that we can continue to rebuild the database by
rerunning 'navstore' and 'navinflux'.
Documents
---------
* [BeiDou](http://m.beidou.gov.cn/xt/gfxz/201902/P020190227593621142475.pdf)
2019-09-16 05:55:47 -06:00
* [Galileo](https://www.gsc-europa.eu/sites/default/files/sites/all/files/Galileo-OS-SIS-ICD.pdf)
* [GLONASS](https://www.unavco.org/help/glossary/docs/ICD_GLONASS_4.0_(1998)_en.pdf),
old 1998 version, but unlike newer versions, this one is not full of
mistakes. [New version](http://gauss.gge.unb.ca/GLONASS.ICD.pdf) is more complete but is worryingly messy.
* [GLONASS CDMA](http://russianspacesystems.ru/wp-content/uploads/2016/08/ICD-GLONASS-CDMA-General.-Edition-1.0-2016.pdf)
not actually relevant for the CDMA aspects, but has appendices on more
precise orbit determinations.
* [GPS](https://www.gps.gov/technical/icwg/IS-GPS-200K.pdf)
* [U-blox 8 interface specification](https://www.u-blox.com/sites/default/files/products/documents/u-blox8-M8_ReceiverDescrProtSpec_%28UBX-13003221%29_Public.pdf)
2019-09-16 05:55:47 -06:00
* [U-blox 9 interface specification](https://www.u-blox.com/sites/default/files/u-blox_ZED-F9P_InterfaceDescription_%28UBX-18010854%29.pdf)
* [U-blox 9 integration manual](https://www.u-blox.com/sites/default/files/ZED-F9P_IntegrationManual_%28UBX-18010802%29.pdf)
2019-09-16 05:55:47 -06:00
2019-10-31 11:10:48 -06:00
Data sources
------------
The software can interpret SP3 files, good sources:
2019-12-25 13:47:57 -07:00
* ESA/ESOC: http://navigation-office.esa.int/products/gnss-products/ - pick the
relevant GPS week number, and then a series (.sp3 extension):
* ESU = ultra rapid, 2-8h delay, only GPS and GLONASS
* ESR = rapid, 2-26h delay, only GPS and GLONASS
* ESM = finals, 6-13d delay, GPS, GLONASS, Galileo, BeiDou, QZSS
* File format is esXWWWWD.sp3 - where X is U, R or M, WWWW is the
(non-wrapping) GPS week number and D is day of week, Sunday is 0.
* Further description: http://navigation-office.esa.int/GNSS_based_products.html
* GFZ Potsdam: ftp://ftp.gfz-potsdam.de/GNSS/products/mgnss
* The GBM series covers GPS, GLONASS, Galileo, BeiDou, QZSS and appears
to have less of a delay than the ESA ESM series.
* GBU = ultra rapid, still a few days delay, but much more recent.
Uncompress and concatenate all downloaded files into 'all.sp3' and run
'navdump' on collected protobuf, and it will output 'sp3.csv' with fit data.
Big TODO
--------
2019-08-11 02:43:29 -06:00
* Dual goals: completeness, liveness, not the same
For forensics, great if the packet is there
For display, not that bad if we missed a message
* In general, consider refeed strategy
Raw serial
Protobuf
Influxdb
".csv files"
* Delivery needs to be bit more stateful (queue)
* Semantics definition for output of Navnexus
2019-08-11 02:43:29 -06:00
"we'll never surprise you with old data"
Global coverage (via volunteers)
--------------------------------
In alphabetical order:
* Austria (Vienna area)
* Brazil
* Holland (Nootdorp, Hilversum, etc)
* India (New Delhi area)
* Israel (Jerusalem)
2020-01-18 03:19:05 -07:00
* Italy (Rome)
* New Zealand (Auckland area)
* Rusia (Moscow area)
* Singapore
* South Africa (Cape Town area)
* Spain
* Tonga
2019-11-11 05:29:39 -07:00
* USA
* Alaska (Anchorage)
2019-11-11 05:29:39 -07:00
* California (Santa Cruz, Los Angeles area, etc)
* Massachusetts (Boston area)
* Uruguay
Additional sites are welcome (and encouraged) as the more data receiving sites that exist, then more accurate data and absolute coverage of each constellation can be had.
2019-12-26 14:10:56 -07:00
The galmon project is very grateful to all its volunteering receiving stations.
2019-08-09 07:58:52 -06:00
ubxtool
-------
* Will also spool raw serial data to disk (in a filename that includes the
start date)
* Can also read from disk
* Careful to add the right timestamps