We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ebec1 commit 8304e65Copy full SHA for 8304e65
2 files changed
.gitignore
@@ -19,3 +19,6 @@ __pycache__
19
# pixi environments
20
.pixi
21
*.egg-info
22
+.python-version
23
+pyproject.toml
24
+uv.lock
core/src/sim.rs
@@ -831,8 +831,8 @@ pub fn closed_loop(
831
&& i % gps_interval == 0
832
{
833
let measurement = GPSPositionMeasurement {
834
- latitude: record.latitude.to_radians(),
835
- longitude: record.longitude.to_radians(),
+ latitude: record.latitude,
+ longitude: record.longitude,
836
altitude: record.altitude,
837
horizontal_noise_std: record.horizontal_accuracy.sqrt(),
838
vertical_noise_std: record.vertical_accuracy,
0 commit comments