Manufacturer | Model | GPS | Temperature | Humidity | XDATA |
---|---|---|---|---|---|
Vaisala | RS41-SG | ✔️ | ✔️ | ✔️ | ✔️ |
Meteomodem | M10 | ✔️ | ✔️ | ✔️ | |
Meteomodem | M20 | ✔️ | ✔️ | ||
GRAW | DFM06/09/17 | ✔️ | ✔️ | ||
Meisei | iMS-100 | ✔️ | ✔️ | ✔️ | |
Meisei | RS-11G | ✔️ | ✔️ | ✔️ | |
InterMet | iMet-1/4 | ✔️ | ✔️ | ✔️ | ✔️ |
Meteolabor | SRS-C50 | ✔️ | ✔️ | ||
Meteo-Radiy | MRZ-N1 | ✔️ | ✔️ |
Binary releases for Windows and Linux (both x86-64 only, built for SDR++ nightlies) are available from the Releases page.
- Windows: download the
.dll
file from the latest release, and place it in themodules
directory within your SDR++ installation. - Linux: download the
.so
file from the latest release, and place it in the/usr/lib/sdrpp/plugins
folder.
The plugin can then be enabled from the module manager in SDR++, under the name radiosonde_decoder.
If no binary is available for your platform, you can build this plugin from source:
- Download the SDR++ source code:
git clone https://github.com/AlexandreRouma/SDRPlusPlus
- Open the top-level
CMakeLists.txt
file, and add the following line in the# Decoders
section at the top:
option(OPT_BUILD_RADIOSONDE_DECODER "Build the radiosonde decoder module (no dependencies required)" ON)
- In that same file, search for the second
# Decoders
section, and add the following lines:
if (OPT_BUILD_RADIOSONDE_DECODER)
add_subdirectory("decoder_modules/sdrpp_radiosonde")
endif (OPT_BUILD_RADIOSONDE_DECODER)
- Navigate to the
decoder_modules
folder, then clone this repository:git clone https://github.com/dbdexter-dev/sdrpp_radiosonde --recurse-submodules
- Build and install SDR++ following the guide in the original repository
- Enable the module by adding it via the module manager