protected override TrendInfoForTaf DecodeCore(ref string source) { Info info = new Info(); bool found = DecodePrefix(ref source, info); TrendReport tr = new TrendReportDecoder().Decode(ref source); TrendInfoForTaf ret = CreateTafSubReport(info, tr); return(ret); }
private void DecodeTrendValues(ref string source, TrendInfoForMetar ret) { TrendReport pom = new TrendReportDecoder().Decode(ref source); pom.CopyPropertiesTo(ret); }