Refactoring of the reader.py module so that the only major preprocessing done on read-in is transformation to daily counts from 15-minute ones. Since this is only done for zip files, moved all zip-specific preprocessing to a ReaderZip class, greatly simplifying AnnualCount (which is now called RawAnnualCount). Renamed some other classes and methods to better reflect what they do.
Refactoring of the
reader.py
module so that the only major preprocessing done on read-in is transformation to daily counts from 15-minute ones. Since this is only done for zip files, moved all zip-specific preprocessing to aReaderZip
class, greatly simplifyingAnnualCount
(which is now calledRawAnnualCount
). Renamed some other classes and methods to better reflect what they do.Addresses #21.