Compare commits
No commits in common. "275a346e8575304dc3d154d0066e8df06e2092ee" and "2ba2192044b5dd28d87bb01bd47795d728e6ffa8" have entirely different histories.
275a346e85
...
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
|
|
@ -230,7 +230,6 @@ 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
|
||||
}
|
||||
|
||||
|
|
@ -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