Exemplo n.º 1
0
        private void AddAllShef(DataTable dTab, string shefFile)
        {
            // Get Locations
            DataView  view = new DataView(dTab);
            DataTable distinctLocations = view.ToTable(true, "location");

            foreach (DataRow locationItem in distinctLocations.Rows)
            {
                string shefLocation = locationItem["location"].ToString();
                // Get location-pcode pairs
                DataTable distinctPairs = view.ToTable(true, "location", "shefcode");
                var       distinctCodes = new DataView(distinctPairs);
                distinctCodes.RowFilter = "location = '" + shefLocation + "'";
                // Get Pcodes
                var codeTable = distinctCodes.ToTable();
                foreach (DataRow codeItem in codeTable.Rows)
                {
                    string shefCode = codeItem["shefcode"].ToString();
                    // Add Series
                    var s        = new ShefSeries(shefLocation, shefCode, shefFile);
                    var valTable = dTab.Select(string.Format("location = '{0}' AND shefcode = '{1}'", shefLocation, shefCode));
                    foreach (DataRow item in valTable)
                    {
                        s.Add(DateTime.Parse(item["datetime"].ToString()), Convert.ToDouble(item["value"]));
                    }
                    DB.AddSeries(s, CurrentFolder);
                }
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Add SHEF data
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addShef_Click(object sender, EventArgs e)
        {
            ImportShef dlg = new ImportShef();


            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                bool isImportAll = dlg.IsImportAll();

                DataTable dTab;
                string    shefLocation, shefCode, shefFile;
                dTab         = dlg.GetShefTable();
                shefLocation = dlg.GetShefLocation();
                shefCode     = dlg.GetShefCode();
                shefFile     = dlg.GetShefFileName();

                if (isImportAll)
                {
                    AddAllShef(dTab, shefFile);
                }
                else
                {
                    var s        = new ShefSeries(shefLocation, shefCode, shefFile);
                    var valTable = dTab.Select(string.Format("location = '{0}' AND shefcode = '{1}'", shefLocation, shefCode));
                    foreach (DataRow item in valTable)
                    {
                        s.Add(DateTime.Parse(item["datetime"].ToString()), Convert.ToDouble(item["value"]));
                    }
                    DB.AddSeries(s, CurrentFolder);
                }
            }
        }
Exemplo n.º 3
0
 private void AddAllShef(DataTable dTab, string shefFile)
 {
     // Get Locations
     DataView view = new DataView(dTab);
     DataTable distinctLocations = view.ToTable(true, "location");
     foreach (DataRow locationItem in distinctLocations.Rows)
     {
         string shefLocation = locationItem["location"].ToString();
         // Get location-pcode pairs
         DataTable distinctPairs = view.ToTable(true, "location", "shefcode");
         var distinctCodes = new DataView(distinctPairs);
         distinctCodes.RowFilter = "location = '" + shefLocation + "'";
         // Get Pcodes
         var codeTable = distinctCodes.ToTable();
         foreach (DataRow codeItem in codeTable.Rows)
         {
             string shefCode = codeItem["shefcode"].ToString();
             // Add Series
             var s = new ShefSeries(shefLocation, shefCode, shefFile);
             var valTable = dTab.Select(string.Format("location = '{0}' AND shefcode = '{1}'", shefLocation, shefCode));
             foreach (DataRow item in valTable)
             {
                 s.Add(DateTime.Parse(item["datetime"].ToString()), Convert.ToDouble(item["value"]));
             }
             DB.AddSeries(s, CurrentFolder);
         }
     }
 }
Exemplo n.º 4
0
        private void shefSelectButton_Click(object sender, EventArgs e)
        {
            OpenFileDialog choofdlog = new OpenFileDialog();

            choofdlog.Multiselect = false;

            DialogResult result = choofdlog.ShowDialog();

            if (result == DialogResult.OK)
            {
                this.shefFileSelected.Text = choofdlog.FileName;
                var shef = new ShefSeries();
                ReadShefFile(choofdlog.FileName);
                GetShefLocations();
            }
        }
Exemplo n.º 5
0
        /// <summary>
        /// Add SHEF data
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addShef_Click(object sender, EventArgs e)
        {
            ImportShef dlg = new ImportShef();

            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                bool isImportAll = dlg.IsImportAll();

                DataTable dTab;
                string shefLocation, shefCode, shefFile;
                dTab = dlg.GetShefTable();
                shefLocation = dlg.GetShefLocation();
                shefCode = dlg.GetShefCode();
                shefFile = dlg.GetShefFileName();

                if (isImportAll)
                {
                    AddAllShef(dTab, shefFile);
                }
                else
                {
                    var s = new ShefSeries(shefLocation, shefCode, shefFile);
                    var valTable = dTab.Select(string.Format("location = '{0}' AND shefcode = '{1}'", shefLocation, shefCode));
                    foreach (DataRow item in valTable)
                    {
                        s.Add(DateTime.Parse(item["datetime"].ToString()), Convert.ToDouble(item["value"]));
                    }
                    DB.AddSeries(s, CurrentFolder);
                }
            }
        }