Skip to content

Commit

Permalink
Fix KML exporter. Fixes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
lvauvillier committed Sep 10, 2024
1 parent 9a1f8b3 commit a8479f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dji-log-cli/src/exporters/kml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ impl Exporter for KmlExporter {

frames.iter().for_each(|frame| {
let coord = Coord {
x: frame.osd.latitude,
y: frame.osd.longitude,
x: frame.osd.longitude,
y: frame.osd.latitude,
z: Some(frame.osd.altitude as f64),
};
coords.push(coord);
Expand Down

0 comments on commit a8479f2

Please sign in to comment.