Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baskiton/geoscandecoder
Image and Telemetry decoder for Geoscan-Edelveis satellite
https://github.com/baskiton/geoscandecoder
amateur amateur-satellites geoscan geoscan-edelveis satellite-images
Last synced: 24 days ago
JSON representation
Image and Telemetry decoder for Geoscan-Edelveis satellite
- Host: GitHub
- URL: https://github.com/baskiton/geoscandecoder
- Owner: baskiton
- License: mit
- Created: 2023-08-09T19:40:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-21T18:19:30.000Z (about 1 year ago)
- Last Synced: 2023-08-21T19:32:19.836Z (about 1 year ago)
- Topics: amateur, amateur-satellites, geoscan, geoscan-edelveis, satellite-images
- Language: Python
- Homepage:
- Size: 294 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geoscan-Edelveis decoder
Image and Telemetry decoder for Geoscan-Edelveis satellite
First, download, setup and run geoscan soundmodem
https://r4uab.ru/program/modem/geoscan.zip
https://r4uab.ru/settings-soundmodem/To start decoding, run GeoscanDecoder and press "Connect" button. Play FM demodulated signal
and wait for result.#### Options
* `Out Dir` Directory to store result images and telemetry
* `Server` Hostname or IP-address of soundmodem
* `Port` Port of soundmodem (see in File -> Devices -> AGWPE Server Port)
* `Merge mode` When enabled, all new images data will store to one file
* `New Image` Force a new image#### Hotkeys
* `Ctrl-Q` Quit
* `F1` Show About window, check if newer version available![](doc/Screenshot.jpg)
### Run from source
Required at least Python 3.7
I recommend to use a virtual environmentInstall required packages:
```commandline
pip install -r requirements.txt
```To run:
```commandline
python -m GeoscanDecoder --ui
```### Build from source
Required at least Python 3.7
I recommend to use a virtual environment```commandline
pip install -r requirements.txt
pip install pyinstaller
pyinstaller -y decoder.spec
```
The result build can be found in the `dist` folder