Compare commits
No commits in common. "ec86ec6829f626bb24daf9de3ce3015fd228c8a4" and "2ba2192044b5dd28d87bb01bd47795d728e6ffa8" have entirely different histories.
ec86ec6829
...
2ba2192044
3 changed files with 38 additions and 929 deletions
|
|
@ -413,7 +413,6 @@
|
|||
<div class="radar3d-controls">
|
||||
<button id="radar3d-reset" disabled>Reset View</button>
|
||||
<button id="radar3d-auto-rotate" disabled>Auto Rotate</button>
|
||||
<button id="radar3d-trails" disabled>Show Trails</button>
|
||||
<label>
|
||||
<input type="range" id="radar3d-range" min="10" max="500" value="100" disabled>
|
||||
Range: <span id="radar3d-range-value">100</span> km
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -227,11 +227,10 @@ type SourceData struct {
|
|||
// PositionPoint represents a timestamped position update in aircraft history.
|
||||
// Used to build position trails for visualization and track analysis.
|
||||
type PositionPoint struct {
|
||||
Time time.Time `json:"time"` // Timestamp when position was received
|
||||
Latitude float64 `json:"lat"` // Latitude in decimal degrees
|
||||
Longitude float64 `json:"lon"` // Longitude in decimal degrees
|
||||
Altitude int `json:"altitude"` // Altitude in feet (0 if unknown)
|
||||
Source string `json:"source"` // Source that provided this position
|
||||
Time time.Time `json:"time"` // Timestamp when position was received
|
||||
Latitude float64 `json:"lat"` // Latitude in decimal degrees
|
||||
Longitude float64 `json:"lon"` // Longitude in decimal degrees
|
||||
Source string `json:"source"` // Source that provided this position
|
||||
}
|
||||
|
||||
// SignalPoint represents a timestamped signal strength measurement.
|
||||
|
|
@ -656,7 +655,6 @@ func (m *Merger) updateHistories(state *AircraftState, aircraft *modes.Aircraft,
|
|||
Time: timestamp,
|
||||
Latitude: aircraft.Latitude,
|
||||
Longitude: aircraft.Longitude,
|
||||
Altitude: aircraft.Altitude, // Include altitude in position history
|
||||
Source: sourceID,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue