Example #1
0
 public MeteoTimeSeries(DateTime start, DateTime end, TimeStep step)
 {
     _data = new TimeValueList(new TimeInterval(start, end), step, PointPair.Missing);
 }
Example #2
0
 public object Clone()
 {
     TimeValueList copy = new TimeValueList();
     copy._start = this._start;
     copy._timeStepFactor = this._timeStepFactor;
     copy._data = (double[])(_data.Clone());
     return (TimeValueList)copy;
 }