This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # I ran this on a host with Debian 13 using kernel 6.12.73+deb13-amd64 | |
| # PicoScenes per documentation should only be ran on metal, Ubuntu 22.04 as of June 5 '26. | |
| # This has not been extensively tested, but it seems to work at first glance | |
| # Create docker container | |
| docker run -it --name picoscenes \ | |
| --privileged \ | |
| -v /dev/bus/usb:/dev/bus/usb \ | |
| ubuntu:22.04 bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Summer project I worked on to get radio map given dropped antenna tower, height and so on. | |
| * Calculates fresnel map and draws strength of signal given origin point taking into account | |
| * the elevation, LOS, and general environment of Switzerland. | |
| * TIF Map: https://www.swisstopo.admin.ch/en/height-model-swissalti3d | |
| */ | |
| /* main.cpp */ | |
| #include <cstdio> |