CityofToronto / bdit_traffic_prophet

Suite of algorithms for predicting average daily traffic on Toronto streets
GNU General Public License v3.0
1 stars 1 forks source link

Refactor reader #35

Closed cczhu closed 4 years ago

cczhu commented 4 years ago

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.

Addresses #21.