New TimeSeries.{find,get} methods
This PR introduces two new data access methods for the TimeSeries
, TimeSeriesDict
, and friends:
-
.find()
: use the datafind server to locate frame files containing this channel, then.read()
them -
.get()
: intelligently select between.find()
and.fetch()
to retrieve the relevant data however possible
Included are tests for these new methods (for the series classes, not the dict classes), and an associated method for the Channel
class: Channel.find_frametype
to return those available frametypes that represent the channel.