public void SaveStats(string title, string category)
        {
            FileSupport.SaveAsStats(TE, title, "T_TE_MAP", category);
            FileSupport.SaveAsStats(TW, title, "T_TW_MAP", category);
            FileSupport.SaveAsStats(TL, title, "T_TL_MAP", category);
            FileSupport.SaveAsStats(TS, title, "T_TS_MAP", category);

            FileSupport.SaveAsStats(SNOW, title, "N_00_MAP", category);
            FileSupport.SaveAsStats(RAIN, title, "R_00_MAP", category);

            FileSupport.SaveAsStats(BLIZZARD, title, "B_00_MAP", category);
            FileSupport.SaveAsStats(ALBEDO, title, "A_00_MAP", category);

            FileSupport.SaveAsStats(Precip, title, "C_00_MAP", category);
            FileSupport.SaveAsStats(TLow, title, "T_SL_MAP", category);
            FileSupport.SaveAsStats(THigh, title, "T_SH_MAP", category);
            FileSupport.SaveAsStats(LIDX, title, "L_00_MAP", category);

            FileSupport.SaveAsStats(FOG, title, "F_SI_MAP", category);

            FileSupport.SaveAsStats(TNormLow, title, "T_NL_MAP", category);
            FileSupport.SaveAsStats(TNormHigh, title, "T_NH_MAP", category);

            FileSupport.SaveAsStats((TLow - TNormLow), title, "T_DL_MAP", category);
            FileSupport.SaveAsStats((THigh - TNormHigh), title, "T_DH_MAP", category);

            FileSupport.SaveAsStats(0.5f * (TLow - TNormLow + THigh - TNormHigh), title, "T_DA_MAP", category);
        }
        public void SaveStats(string title, string category)
        {
            SeaLevel.SaveStats(title, category);
            MidLevel.SaveStats(title, category);
            TopLevel.SaveStats(title, category);
            JetLevel.SaveStats(title, category);

            FileSupport.SaveAsStats(AirMass.EQ(), title, "M_00_MAP", category);
            FileSupport.SaveAsStats(Fronts.EQ(), title, "F_00_MAP", category);
        }
        public override void SaveStats(string title, string category)
        {
            FileSupport.SaveAsStats(P, title, string.Format("P_{0:d2}_MAP", _levelType), category);

            var this_BP = this.BP;
            var this_FP = this.FP;

            FileSupport.SaveAsStats(this_BP, title, "D_BP_MAP", category);
            FileSupport.SaveAsStats(this_FP, title, "D_FP_MAP", category);
        }
 public virtual void SaveStats(string title, string category)
 {
     FileSupport.SaveAsStats(P, title, string.Format("P_{0:d2}_MAP", _levelType), category);
     FileSupport.SaveAsStats(T, title, string.Format("T_{0:d2}_MAP", _levelType), category);
     FileSupport.SaveAsStats(H, title, string.Format("H_{0:d2}_MAP", _levelType), category);
 }