M1DUL wrote: I am also getting the same problem.
As you have a Fine Offset station, the calculation is considerably simpler, as the station supplies the station pressure and Cumulus doesn't have to try to work it out. It just has to calculate the altimeter pressure from the station pressure, and it does this with the algorithm I quoted earlier, from Steve Hatchett:
Code: Select all
k1 := 0.190284; // discrepency with calculated k1 probably because Smithsonian used less precise gas constant and gravity values
k2 := 8.4184960528E-5; // (standardLapseRate / standardTempK) * (Power(standardSLP, k1)
Result := Power(Power(pressureHPa - 0.3, k1) + (k2 * elevationM), 1/k1);
Where pressureHPa is the station (absolute) pressure read from the station, and elevationM is your elevation in metres as configured in Cumulus (converted from feet if necessary).
So, if your CWOP data is being flagged as wrong (but I can't see it being flagged as wrong on that page?), then either your station is supplying an incorrect value, or your elevation in Cumulus is wrong.
Steve