Exemplo n.º 1
0
        public PspStand(string xlsxFilePath, string worksheetName, float plotAreaInAcres)
        {
            this.IngrowthByYear                = new SortedDictionary <int, List <PspTreeMeasurementSeries> >();
            this.MeasurementsByTag             = new SortedList <int, PspTreeMeasurementSeries>();
            this.MeasurementYears              = new HashSet <int>();
            this.plotAreaInAcres               = plotAreaInAcres;
            this.plotCount                     = 0;
            this.yearOfMostRecentIngrowthAdded = Int32.MinValue;

            XlsxReader reader = new XlsxReader();

            XlsxReader.ReadWorksheet(xlsxFilePath, worksheetName, this.ParseRow);
        }
Exemplo n.º 2
0
        public void Read(string xlsxFilePath, string worksheetName)
        {
            XlsxReader reader = new XlsxReader();

            XlsxReader.ReadWorksheet(xlsxFilePath, worksheetName, this.ParseRow);
        }