Added METAR-Decoder
for RIC 1062 and 1063
This commit is contained in:
parent
796d5d5df0
commit
09bdb4aabe
1 changed files with 3 additions and 0 deletions
|
@ -96,6 +96,9 @@ function getMessage(logline) {
|
||||||
if (4520 == parseInt(getRIC(logline))) {
|
if (4520 == parseInt(getRIC(logline))) {
|
||||||
message = rot1(message);
|
message = rot1(message);
|
||||||
}
|
}
|
||||||
|
if (1062 == parseInt(getRIC(logline)) || 1063 == parseInt(getRIC(logline))) {
|
||||||
|
message = message + "<br> Decoded: " + JSON.stringify(parseMETAR(message));
|
||||||
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue