Skip to content

Commit 23b7fbc

Browse files
plugins/alliance/NmeaPlotter: Fix to not available to be 551 and not 351.
1 parent 5c608ff commit 23b7fbc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins-dev/alliance/src/java/pt/lsts/neptus/plugins/alliance/NmeaPlotter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,8 @@ else if (msgType == 5) {
441441
mtShip.SHIP_ID = mmsiNbr;
442442
mtShip.SHIPNAME = shipName;
443443
mtShip.SHIPTYPE = aisInfo.getTypeAndCargo();
444-
mtShip.HEADING = 351; // Not available
445-
mtShip.COURSE = 351; // Not available
444+
mtShip.HEADING = 551; // Not available
445+
mtShip.COURSE = 551; // Not available
446446
mtShip.SPEED = -1;
447447
mtShip.W_LEFT = (int) Math.ceil(aisInfo.getC());
448448
mtShip.WIDTH = (int) Math.ceil(aisInfo.getC() + aisInfo.getD());

0 commit comments

Comments
 (0)