The foundation of the satellite branch, and nothing above it yet: where a satellite is (SGP4 from akhenakh/sgp4, Apache-2.0 and pure Go, so the no-cgo rule holds), where it will be (passes with an elevation floor, because a three-degree scrape is a line in a table that will never be a QSO), and what its motion does to a frequency. The Doppler pair is the part worth being careful about: the two corrections go in OPPOSITE directions. The downlink arrives shifted and we tune to meet it; the uplink must LEAVE shifted the other way to land on the transponder's nominal input. A test pins the signs and the size — 7 km/s on 2 m is about 3.4 kHz. Elements keep their raw lines beside the parsed form: that is what the cache stores and what an operator pastes by hand for a bird no feed carries yet, which is exactly when everyone wants to hear it.
57 lines
2.1 KiB
AMPL
57 lines
2.1 KiB
AMPL
module hamlog
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/braheezy/shine-mp3 v0.1.0
|
|
github.com/eclipse/paho.mqtt.golang v1.5.1
|
|
github.com/go-ole/go-ole v1.3.0
|
|
github.com/go-sql-driver/mysql v1.10.0
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/jlaffaye/ftp v0.2.2
|
|
github.com/moutend/go-wca v0.3.0
|
|
github.com/wailsapp/wails/v2 v2.11.0
|
|
github.com/wneessen/go-mail v0.7.3
|
|
go.bug.st/serial v1.7.1
|
|
golang.org/x/net v0.44.0
|
|
golang.org/x/sys v0.45.0
|
|
golang.org/x/text v0.37.0
|
|
modernc.org/sqlite v1.50.1
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.2.0 // indirect
|
|
github.com/akhenakh/sgp4 v0.0.0-20260314155803-8ee03fc877eb // indirect
|
|
github.com/bep/debounce v1.2.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
|
|
github.com/labstack/echo/v4 v4.13.3 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/leaanthony/go-ansi-parser v1.6.1 // indirect
|
|
github.com/leaanthony/gosod v1.0.4 // indirect
|
|
github.com/leaanthony/slicer v1.6.0 // indirect
|
|
github.com/leaanthony/u v1.1.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/samber/lo v1.49.1 // indirect
|
|
github.com/tkrajina/go-reflector v0.5.8 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/wailsapp/go-webview2 v1.0.22 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
golang.org/x/crypto v0.42.0 // indirect
|
|
golang.org/x/sync v0.20.0 // indirect
|
|
modernc.org/libc v1.72.3 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
)
|
|
|
|
// replace github.com/wailsapp/wails/v2 v2.11.0 => C:\Users\rouggy.ROUGGY\go\pkg\mod
|