Closed jgomezdans closed 10 years ago
Isn't it the same like if to have several different observation operators? And how about multiangular observations? Becouse now mask for time series is defined like (n_days x 4) - do you mean this - "currently deal with the mask"? I would do it 3-dimentional but probably it would be too expencive...
The point of this change is to let ObservationOperatorTimeSeriesGP
deal with several observations on the same day. Since this method uses emulators, it doesn't require the geometry for each day, as the emulator list in self.emulators
already holds that information, so it's not needed, which simplifies the mask.
Currently, we can only really have one observation per day for the time series operator. This is quite annoying and limiting, and easy to solve. We should allow to have different observations per day. This probably means that the way I currently deal with the mask is also likely to change.