Exemplo n.º 1
0
        static void Main(string[] args)
        {
            string[] allLines = FileReader.Read();

            Parser.Plots plots = Parser.Parser.Parse(allLines);

            Plotter.PreparePlots(plots);
        }
Exemplo n.º 2
0
        public static void PreparePlots(Parser.Plots plots)
        {
            string outputPath      = FileReader.WorkingDirectory + "\\Plots";
            var    outputDirectory = new DirectoryInfo(outputPath);

            outputDirectory.Create();

            string[] xm = new string[20];
            string[,] ym = new string[20, 50];
            string[] specm = new string[20];

            for (var i = 1; i < plots.Temp.GetLength(0); i++)
            {
                string[] x        = new string[20];
                string[] y        = new string[20];
                string[] spec     = new string[20];
                bool     notEmpty = false;

                for (var j = 0; j < plots.Temp.GetLength(1); j++)
                {
                    if (plots.Temp[i, j] == null)
                    {
                        continue;
                    }
                    x[j]     = plots.Temp[i, j];
                    xm[j]    = plots.Temp[i, j];
                    y[j]     = plots.Over[i, j];
                    ym[i, j] = plots.Over[i, j];
                    spec[j]  = plots.Spec[i, j];
                    specm[j] = plots.Spec[i, j];

                    notEmpty = true;
                }

                if (notEmpty != true)
                {
                    continue;
                }
                string unit = i.ToString();

                var singlePlot = new SinglePlot(x, y, spec, i, plots.Spc[i]);

                string filename = outputPath + "/Unit#" + unit + ".png";
                singlePlot.ChartImage.SaveImage(filename, ChartImageFormat.Png);
            }

            var multiPlot = new MultiPlot(xm, ym, specm, plots.Spc[1]);

            string filenameMulti = outputPath + "/AllUnits.png";

            multiPlot.ChartImage.SaveImage(filenameMulti, ChartImageFormat.Png);
        }
Exemplo n.º 3
0
        public static void PreparePlots(Parser.Plots plots)
        {
            DirectoryInfo d = new DirectoryInfo(@"D:\Plots");

            d.Create();

            string[] xm = new string[20];
            string[,] ym = new string[20, 50];
            string[] specm = new string[20];
            //bool notEmptym = false;

            for (int i = 1; i < plots.Temp.GetLength(0); i++)
            {
                string[] x        = new string[20];
                string[] y        = new string[20];
                string[] spec     = new string[20];
                bool     notEmpty = false;

                for (int j = 0; j < plots.Temp.GetLength(1); j++)
                {
                    if (plots.Temp[i, j] != null)
                    {
                        x[j]     = plots.Temp[i, j];
                        xm[j]    = plots.Temp[i, j];
                        y[j]     = plots.Over[i, j];
                        ym[i, j] = plots.Over[i, j];
                        spec[j]  = plots.Spec[i, j];
                        specm[j] = plots.Spec[i, j];

                        notEmpty = true;
                    }
                }

                if (notEmpty == true)
                {
                    string unit = i.ToString();

                    SinglePlot singlePlot = new SinglePlot(x, y, spec, i, plots.Spc[i]);

                    string filename = "D:\\Plots/Unit#" + unit + ".png";
                    singlePlot.ChartImage.SaveImage(filename, ChartImageFormat.Png);
                }
            }

            MultyPlot multyPlot = new MultyPlot(xm, ym, specm, 1, plots.Spc[1]);

            string filenameMulty = "D:\\Plots/AllUnits.png";

            multyPlot.ChartImage.SaveImage(filenameMulty, ChartImageFormat.Png);
        }
Exemplo n.º 4
0
 public void SetupContext()
 {
     plots = Parser.Parser.Parse(lines);
 }