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
| $ ./hunity_decode -p 12918747.dat | |
| INFO: reading 12918747.dat, writing 12918747.pkts | |
| WARNING: Failed to open the metafile 12918747.meta | |
| WARNING: unknown file extension, defaulting to CF32 | |
| WARNING: unsupported combination: sampling rate 50000 sps and 25000 bps ! | |
| WARNING: unsupported combination: sampling rate 50000 sps and 50000 bps ! | |
| INFO: finished 12918747.dat, samples: 22532800, speed: 0.260683 msps, tone detected: 411236 pkts, sync detected: 17 pkts | |
| INFO: decoded data packets: 4, RA126: 4, 12500 bps: 4 | |
| INFO: decoded sync packets: 0 |
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
| $ unset PYTHONPATH | |
| $ unset LD_LIBRARY_PATH | |
| $ python3.11 -m venv --system-site-packages .venv | |
| $ source .venv/bin/activate | |
| $ pip3 install construct==2.9.49 websocket-client requests | |
| $ python -c "import sys; print(sys.path)" | |
| ['', '/usr/lib/python3.11/dist-packages', '/home/jh4xsy/gr-satellites-5.8.0/.venv/lib/python3.11/site-packages', '/usr/lib/python311.zip', '/usr/lib/python3.11', '/usr/lib/python3.11/lib-dynload', '/usr/local/lib/python3.11/dist-packages', '/usr/lib/python3/dist-packages'] | |
| $ mkdir build | |
| $ cd build/ | |
| $ cmake .. -DCMAKE_INSTALL_PREFIX=/home/jh4xsy/gr-satellites-5.8.0/.venv -DPYTHON_EXECUTABLE=/home/jh4xsy/gr-satellites-5.8.0/.venv/bin/python3 |
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
| #!/bin/bash | |
| # | |
| # Viewfinder PanoramasからダウンロードしたSRTM3の.hgtファイルをSPLAT!で使う.sdfファイルに変換するスクリプト | |
| # | |
| for f in *.hgt; do | |
| [ -e "$f" ] || continue # ファイルが存在しない場合はスキップ | |
| echo "Converting $f" | |
| srtm2sdf "$f" | |
| done |
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
| *************************************************** | |
| * * | |
| * Unified Satellite Telemetry Decoder * | |
| * AMSAT EA - Free distribution * | |
| * Version 1.08 (Bytes) * | |
| * Compilation : Feb 7 2025 * | |
| * * | |
| *************************************************** |
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
| #!/usr/bin/env ruby | |
| # | |
| # WSJT-Xから抽出したadiファイルからHamlogに食わせるCSVファイルを作成するスクリプト | |
| # 2024/10/14 JH4XSY/1 Iwamoto | |
| # | |
| require 'time' | |
| require 'csv' | |
| # 日本のコールサインを検出するメソッド | |
| def japanese_callsign?(callsign) |
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
| #!/usr/bin/env ruby | |
| # | |
| # GARDENs衛星でSatNOGS CSVファイルからカメラ画像を生成 by JH4XSY/1 | |
| # 2025/1/10 | |
| def find_gaps(list) | |
| # Find the minimum and maximum values in the list. | |
| min_value = list.min | |
| max_value = list.max |
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
| options: | |
| parameters: | |
| author: JH4XSY/1 | |
| catch_exceptions: 'True' | |
| category: '[GRC Hier Blocks]' | |
| cmake_opt: '' | |
| comment: '' | |
| copyright: '' | |
| description: '' | |
| gen_cmake: 'On' |
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
| 28 50 4E 4B 4C FF 40 43 48 42 4B |
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
| #!/bin/sh | |
| # POST OBSERVATION SCRIPT for METEOR | |
| ID="$1" | |
| TLE="$3" | |
| DATE="$4" | |
| # check METEOR M2-3&4 | |
| NORAD=$(echo "$TLE" | jq .tle2 | awk '{print $2}') |
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
| Packet - Telemetry 3 | |
| Timestamp: 1970-01-02 02:55:50 | |
| LSW-UNIDEB: xx 7 [mV] 3 [mA][0m[64G[32m[3 seconds ago][0m | |
| LSW-UNIGYR: xx 14 [mV] 5 [mA][0m[64G[32m[1 seconds ago][0m | |
| LSW-UNISZ2: xx 0 [mV] 0 [mA][0m[64G[32m[<=30 seconds ago][0m | |
| LSW-UNISZ1: xx 0 [mV] 0 [mA][0m[64G[32m[<=30 seconds ago][0m | |
| PCU1 LSW status: 060930CC | |
| PCU2 LSW status: 060930CC | |
| [33mUNIV-DEB active: 0[0m[64G[41m[37m[INVALID value][0m | |
| [33mUNIV-GYR active: 0[0m[64G[41m[37m[INVALID value][0m |
NewerOlder