Observations¶
-
class
gammapy.data.Observations(observations=None)[source]¶ Bases:
collections.abc.SequenceContainer class that holds a list of observations.
- Parameters
- observationslist
A list of
DataStoreObservation
Attributes Summary
List of obs IDs (
list)Methods Summary
count(self, value)index(self, value[, start, stop])Raises ValueError if the value is not present.
select_time(self, time_intervals)Select a time interval of the observations.
Attributes Documentation
Methods Documentation
-
count(self, value)¶
-
index(self, value, start=0, stop=None)¶ Raises ValueError if the value is not present.
Supporting start and stop arguments is optional, but recommended.
-
select_time(self, time_intervals)[source]¶ Select a time interval of the observations.
- Parameters
- time_intervals
astropy.time.Timeor list ofastropy.time.Time list of Start and stop time of the time intervals or one Time interval
- time_intervals
- Returns
- new_observations
Observations A new Observations instance of the specified time intervals
- new_observations