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

Configuration file has a setting that is hardcoded in the Postgres #23

Open cczhu opened 4 years ago

cczhu commented 4 years ago

As of #22, Traffic Prophet has a 'min_counts_in_day' setting for the smallest number of counts in a day for that day to be included in daily_counts. This is used when reading data from zip files, but because the Postgres materialized views we're working with already aggregate to daily counts, this minimum count number is hardcoded in the view scripts and setting 'min_counts_in_day' cannot affect this.

Potential solutions