Web-FIK is a sophisticated toolkit for rapid visualization of data from stratospheric balloons, utilizing multiple communication channels, specifically SiK with MAVLINK packets and Lora TTN. It extracts data from the TTN network and from scripts in tracking vehicles that receive Sik packets (mavlink) using ISM02A or TFSIK modems. The data is immediately sent to a server, visualized, and forwarded to amateur.sondehub.org.
- Technology: Node.js web application.
- Functionality: Visualizes the status of components or experiments on a stratospheric balloon.
- Details: Uses ejs templates.
- Technology: Python3
- Functionality:
- Receives mavlink data from SiK radio receivers.
- Determines car location via GPSD.
- Forwards data to GAPP and sondehub.
- Implementation: The
car
directory in the repository contains relevant code and setup details.
- Technology: Python.
- Functionality:
- Downloads packets from the Lora The things network.
- Sends packets to the GAPP server and sondehub.org.
node.js server with ejs template that shows balloon informations (Now mock data). The apiKey and ttnEndpoint is in file config.json and that file is in gitignore. So you must make that by yourself. Example:
{
"ttnEndpoint": "https://example-things-network.com",
"apiKey": "your_api_key_here"
}
Start server with:
node index.js
Necessery to have:
npm install express ejs
npm install express axios
npm install express fs