From: Torsten Dreyer Date: Fri, 31 Dec 2010 12:31:09 +0000 (+0100) Subject: handle NCD (nil clouds detected) in METAR X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c32ab1b84f0cfb5b07b7aa72299012a303c1c2f5;p=simgear.git handle NCD (nil clouds detected) in METAR --- diff --git a/simgear/environment/metar.cxx b/simgear/environment/metar.cxx index 569f0261..d5f2c7ba 100644 --- a/simgear/environment/metar.cxx +++ b/simgear/environment/metar.cxx @@ -767,6 +767,7 @@ bool SGMetar::scanSkyCondition() if (!strncmp(m, "CLR", i = 3) // clear || !strncmp(m, "SKC", i = 3) // sky clear + || !strncmp(m, "NCD", i = 3) // nil cloud detected || !strncmp(m, "NSC", i = 3) // no significant clouds || !strncmp(m, "CAVOK", i = 5)) { // ceiling and visibility OK (implies 9999) m += i;