This module is in charge of reading the POPS housekeeping file and converting it to a TimeSeries instance.
In [1]:
from atmPy.instruments.POPS import housekeeping
%matplotlib inline
In [2]:
filename = './data/POPS_housekeeping.csv'
hk = housekeeping.read_csv(filename)
Done! hk is an instance of TimeSeries and you can do with it what ever the instance is capable of (see here). E.g. plot stuff.
In [3]:
out = hk.plot_all()
In [ ]: