Example #1
0
        public void parseStormsToDatabase(
            ref TropicalCycloneDatabase database,
            string[] fileText,
            ref string errorMessages)
        {
            int numberOfLines = fileText.Length;
            int linePosition  = 0;

            while (linePosition < numberOfLines)
            {
                TropicalCyclone temp = new TropicalCyclone();

                /// Grab header line for storm.
                /// Basin_Number_Year, Name, number of records
                string[] line = fileText[linePosition].Split(',');

                // Check basin
                string basinTemp = line[0] + line[1];
            }
        }
 public void addRIStormToDatabase(TropicalCyclone tc)
 {
     RIStorms.Add(tc);
 }