Version change for 1.2.3 release.

pull/258/head
Mark Jessop 2019-12-15 14:55:10 +10:30
rodzic a1c369f254
commit 00a9de776c
3 zmienionych plików z 62 dodań i 19 usunięć

Wyświetl plik

@ -33,6 +33,8 @@ Currently we support the following radiosonde types:
* Graw DFM06/DFM09/DFM17/PS-15
* Meteomodem M10 (Thanks Viproz!)
* Intermet iMet-4 (and 'narrowband' iMet-1 sondes)
* Lockheed Martin LMS6 and Mk2a
* Meisei iMS-100
Support for other radiosondes may be added as required (please send us
sondes to test with!)

Wyświetl plik

@ -1,33 +1,74 @@
![auto_rx logo](autorx.png)
# Automatic Radiosonde Receiver Utilities
This fork of [rs1279's RS](https://github.com/rs1729/RS) codebase provides a set of utilities ('auto_rx') to allow automatic reception and uploading of [Radiosonde](https://en.wikipedia.org/wiki/Radiosonde) positions to multiple services, including:
* The [Habitat High-Altitude Balloon Tracker](https://tracker.habhub.org)
* **Please note the HabHub Tracker now filters out radiosondes by default.** To view the radiosondes again, clear the search field at the top-left of the tracker of all text, and press enter. Alternatively, use our front-end to HabHub at: [https://sondehub.org/](https://sondehub.org/)
* APRS-IS (for display on sites such as [aprs.fi](https://aprs.fi)
* [ChaseMapper](https://github.com/projecthorus/chasemapper) and [OziPlotter](https://github.com/projecthorus/oziplotter), for mobile radiosonde chasing.
There is also a web interface provided (defaults to port 5000), allowing display of station status and basic tracking of the sonde position.
**Please refer to the [auto_rx wiki](https://github.com/projecthorus/radiosonde_auto_rx/wiki) for the latest information.**
This fork of [rs1279's RS](https://github.com/rs1729/RS) codebase
provides a set of utilities ('auto_rx') to allow automatic reception
and uploading of
[Radiosonde](https://en.wikipedia.org/wiki/Radiosonde) positions to
multiple services, including:
* The [Habitat High-Altitude Balloon Tracker](https://tracker.habhub.org)
* **Please note the HabHub Tracker now filters out radiosondes by
default.** To view the radiosondes again, clear the search field
at the top-left of the tracker of all text, and press
enter. Alternatively, use our front-end to HabHub at:
[https://sondehub.org/](https://sondehub.org/)
* APRS-IS (for display on sites such as [aprs.fi](https://aprs.fi)
* [ChaseMapper](https://github.com/projecthorus/chasemapper) and
[OziPlotter](https://github.com/projecthorus/oziplotter), for mobile
radiosonde chasing.
There is also a web interface provided (defaults to port 5000),
allowing display of station status and basic tracking of the sonde
position.
Currently we support the following radiosonde types:
* Vaisala RS92SGP
* Vaisala RS41SGP
* Graw DFM06/DFM09
* Vaisala RS92
* Vaisala RS41
* Graw DFM06/DFM09/DFM17/PS-15
* Meteomodem M10 (Thanks Viproz!)
* Intermet iMet-4 (and 'narrowband' iMet-1 sondes)
* Lockheed Martin LMS6 and Mk2a
* Meisei iMS-100
Support for other radiosondes may be added as required (please send us sondes to test with!)
Support for other radiosondes may be added as required (please send us
sondes to test with!)
This software performs the following steps:
1. Use rtl_power to scan across a user-defined frequency range, and detect peaks in the spectrum.
2. For each detected peak frequency, run the rs_detect utility, which determines if a radiosonde signal is present, and what type it is.
3. If a radiosonde signal is found, start demodulating it, and upload data to various internet services.
4. If no peaks are found, or if no packets are heard from the radiosonde in a given amount of time (2 minutes by default), go back to step 1.
The latest version can make use of multiple RTLSDRs to allow for tracking of many radiosondes simultaneously. The number of simultaneous radiosondes you can track is limited only by the number of RTLSDRs you have setup!
1. Use rtl_power to scan across a user-defined frequency range, and
detect peaks in the spectrum.
Refer to the wiki for the [latest updates, and installation/setup instructions](https://github.com/projecthorus/radiosonde_auto_rx/wiki).
2. For each detected peak frequency, run the rs_detect utility, which
determines if a radiosonde signal is present, and what type it is.
#### Please note this software is under constant development. Please update (git pull) regularly!
3. If a radiosonde signal is found, start demodulating it, and upload
data to various internet services.
4. If no peaks are found, or if no packets are heard from the
radiosonde in a given amount of time (2 minutes by default), go back
to step 1.
The latest version can make use of multiple RTLSDRs to allow for
tracking of many radiosondes simultaneously. The number of
simultaneous radiosondes you can track is limited only by the number
of RTLSDRs you have setup!
Refer to the wiki for the [latest updates, and installation/setup
instructions](https://github.com/projecthorus/radiosonde_auto_rx/wiki).
**This software is under regular development. Please [update
regularly](https://github.com/projecthorus/radiosonde_auto_rx/wiki/Performing-Updates)
to get bug-fixes and improvements!**
### Contacts
* [Mark Jessop](https://github.com/darksidelemm) - vk5qi@rfhead.net
* [Michael Wheeler](https://github.com/TheSkorm) - git@mwheeler.org
You can often find us in the #highaltitude IRC Channel on [Freenode](https://webchat.freenode.net/).
You can often find us in the #highaltitude IRC Channel on
[Freenode](https://webchat.freenode.net/).

Wyświetl plik

@ -17,7 +17,7 @@ except ImportError:
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
# PATCH - Small changes, or minor feature additions.
__version__ = "1.2.3-beta2"
__version__ = "1.2.3"
# Global Variables