daemon designed to read short data bursts from weather stations transmitting over the Iridium satellite network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
921 B

  1. wstationd
  2. =========
  3. `wstationd` is a simple daemon (written in C) for accepting Iridium Short Data
  4. Bursts via Direct IP. While it's intended to be used for collecting data from
  5. remote weather stations (thus the name), it can be used to collect information
  6. from any source operating over the Iridium SDB Service. `wstationd` has been
  7. tested on OSX, FreeBSD and Linux.
  8. Building
  9. --------
  10. Running `make` should be sufficient in most cases to compile `wstationd`.
  11. Running
  12. -------
  13. `wstationd` requires a single argument to specify the directory SDB will be
  14. collected into. Files will be created using a simple naming convention
  15. indicating the time it was collected and the IP it was collected from. Parsing
  16. these files is an exercise left up to the reader - the format will differ
  17. greatly based on your hardware. `wstationd` leaves all of the SDB headers
  18. intact, so you'll need to account for that when parsing. Good luck!