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 48b9f12 commit 9d36cb0Copy full SHA for 9d36cb0
src/main/java/aero/t2s/modes/decoder/df/df17/AirbornePosition.java
@@ -78,7 +78,7 @@ public AirbornePosition decode() {
78
if (isCprEven) {
79
positionUpdate.setEven(new CprPosition(cprLat / (double) (1 << 17), cprLon / (double) (1 << 17)));
80
} else {
81
- positionUpdate.setOdd(new CprPosition(cprLat, cprLon));
+ positionUpdate.setOdd(new CprPosition(cprLat / (double) (1 << 17), cprLon / (double) (1 << 17)));
82
}
83
84
if (positionUpdate.isComplete()) {
0 commit comments