mirror of
https://github.com/dg9vh/MMDVMHost-Websocketboard.git
synced 2026-01-25 09:50:17 +01:00
Added METAR-Decoder
for RIC 1062 and 1063
This commit is contained in:
parent
796d5d5df0
commit
09bdb4aabe
|
|
@ -96,6 +96,9 @@ function getMessage(logline) {
|
|||
if (4520 == parseInt(getRIC(logline))) {
|
||||
message = rot1(message);
|
||||
}
|
||||
if (1062 == parseInt(getRIC(logline)) || 1063 == parseInt(getRIC(logline))) {
|
||||
message = message + "<br> Decoded: " + JSON.stringify(parseMETAR(message));
|
||||
}
|
||||
return message;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue