You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shinysdr/i/webstatic/client/coordination.js
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,12 @@
19
19
20
20
define([
21
21
'require',
22
+
'geodesy/latlon-spherical',
22
23
'./types',
23
24
'./values',
24
25
],(
25
26
require,
27
+
LatLon,
26
28
import_types,
27
29
import_values
28
30
)=>{
@@ -36,6 +38,7 @@ define([
36
38
ConstantCell,
37
39
LocalCell,
38
40
StorageCell,
41
+
findImplementersInBlockCell,
39
42
makeBlock,
40
43
}=import_values;
41
44
@@ -115,7 +118,32 @@ define([
115
118
// (This will require knowledge of retuning which is currently done implicitly on the server side.)
116
119
117
120
if(record){
121
+
// TODO: The server really needs to track the selected record because both the source and the record can move, and something needs to constantly recalculate the bearing and drive the rotator.
122
+
// TODO: Provide a way for the user to disable this (e.g. in EME).
0 commit comments