I have an array of data (double[] data) and a list of datetimes (List datetimes). Each position of data array is related to the position of the datetimes. I mean: data[i] was collected in datetimes[i].
Now I want to filter the data collected with a week pattern (7 day, 24 hours). So, I have the week pattern:
class WeekPattern
{
List<DayPattern> week;
public WeekPattern(List<DayPattern> _week)
{
week = _week;
}
public bool isInRange(DateTime time)
{
return week.Any(i => i.isInRange(time));
}
}
class DayPattern
{
DayOfWeek day;
List<bool> hours;
public DayPattern(List<bool> _hours, DayOfWeek _day)
{
hours = _hours;
day = _day;
}
public bool isInRange(DateTime time)
{
if (time.DayOfWeek != day)
return false;
return hours[time.Hour];
}
}
Filter the datetimes in range is easy (I have alread Weekpattern pattern object)
double[] data = { 1, 2, 3, 4}
string[] times = { "23/01/2013 12:00", "23/01/2013 13:00", "23/01/2013 14:00", "23/01/2013 15:00" }
List<DateTime> datetimes = Array.ConvertAll(_times, time => DateTime.ParseExact(time, "dd/MM/yyyy HH:mm:ss", null)).ToList();
Weekpattern pattern... // Weekpattern object
List<DateTime> filter = datetimes.Where(i => pattern.isInRange(i)).ToList();
But, how I get the data filteres (double[] data filtered) instead of datetimes the list of datetimes filtered?
- 1 was collected on 23/01/2013 12:00
- 2 was collected on 23/01/2013 13:00
- 3 was collected on 23/01/2013 14:00
- 4 was collected on 23/01/2013 15:00
Suppose I have a range "Wednesday, 13:00 - 14:00". So I want to get an array of doubles with 2 and 3:
data = { 2, 3 }