feat(sat): the station side — elements, plan, passes and tuning
What internal/sat could not know: where the antenna is, which birds the operator cares about, and where the files live. Startup reads the cached elements and the frequency plan from disk and nothing else — one file and a few hundred parses, so the tab is full the moment it is opened, on a shack PC with no internet as much as on one with. Fetching is the slow, optional half and never blocks a launch; it happens on its own only when the set is stale and the operator asked for it. Elements pasted in by hand go in their own file. The feed cache is replaced wholesale on every refresh, so a freshly launched satellite — whose elements circulate on a mailing list days before any feed carries it, which is exactly the week everybody wants to hear it — would otherwise be wiped by the first automatic update. The list joins both halves and shows what is missing on either side. A bird with elements and no plan is one the operator can still track; a bird with a plan and no elements is the visible symptom of an element set that is too old. Dropping either turns a fixable configuration problem into a satellite that "does not exist". GetSatelliteTuning is the working answer, and everything that will later drive a radio is built on top of it rather than beside it, so the display and the rig can never disagree. It keeps the operator's frequency nominal and applies Doppler only on the way out: on a linear pass the station being answered stays put on the dial while both radios chase the shift. A geostationary bird is corrected by nothing at all.
This commit is contained in:
@@ -38,6 +38,10 @@ export function AddQSO(arg1) {
|
||||
return window['go']['main']['App']['AddQSO'](arg1);
|
||||
}
|
||||
|
||||
export function AddSatelliteElements(arg1) {
|
||||
return window['go']['main']['App']['AddSatelliteElements'](arg1);
|
||||
}
|
||||
|
||||
export function AmpFanMode(arg1, arg2) {
|
||||
return window['go']['main']['App']['AmpFanMode'](arg1, arg2);
|
||||
}
|
||||
@@ -1110,6 +1114,38 @@ export function GetSPEStatus() {
|
||||
return window['go']['main']['App']['GetSPEStatus']();
|
||||
}
|
||||
|
||||
export function GetSatSettings() {
|
||||
return window['go']['main']['App']['GetSatSettings']();
|
||||
}
|
||||
|
||||
export function GetSatelliteBirds() {
|
||||
return window['go']['main']['App']['GetSatelliteBirds']();
|
||||
}
|
||||
|
||||
export function GetSatelliteGroundTrack(arg1, arg2) {
|
||||
return window['go']['main']['App']['GetSatelliteGroundTrack'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function GetSatelliteObserver() {
|
||||
return window['go']['main']['App']['GetSatelliteObserver']();
|
||||
}
|
||||
|
||||
export function GetSatellitePasses(arg1, arg2) {
|
||||
return window['go']['main']['App']['GetSatellitePasses'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function GetSatellitePositions(arg1) {
|
||||
return window['go']['main']['App']['GetSatellitePositions'](arg1);
|
||||
}
|
||||
|
||||
export function GetSatelliteTLEInfo() {
|
||||
return window['go']['main']['App']['GetSatelliteTLEInfo']();
|
||||
}
|
||||
|
||||
export function GetSatelliteTuning(arg1, arg2, arg3) {
|
||||
return window['go']['main']['App']['GetSatelliteTuning'](arg1, arg2, arg3);
|
||||
}
|
||||
|
||||
export function GetScpStatus() {
|
||||
return window['go']['main']['App']['GetScpStatus']();
|
||||
}
|
||||
@@ -1882,6 +1918,10 @@ export function RefreshKenwood() {
|
||||
return window['go']['main']['App']['RefreshKenwood']();
|
||||
}
|
||||
|
||||
export function RefreshSatelliteTLE() {
|
||||
return window['go']['main']['App']['RefreshSatelliteTLE']();
|
||||
}
|
||||
|
||||
export function RefreshSolar() {
|
||||
return window['go']['main']['App']['RefreshSolar']();
|
||||
}
|
||||
@@ -2166,6 +2206,10 @@ export function SaveRowColors(arg1) {
|
||||
return window['go']['main']['App']['SaveRowColors'](arg1);
|
||||
}
|
||||
|
||||
export function SaveSatSettings(arg1) {
|
||||
return window['go']['main']['App']['SaveSatSettings'](arg1);
|
||||
}
|
||||
|
||||
export function SaveSelfSpotSettings(arg1) {
|
||||
return window['go']['main']['App']['SaveSelfSpotSettings'](arg1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user