cagov / caldata-mdsa-caltrans-pems

CalData's MDSA project with Caltrans on Performance Measurement System (PeMS) data
https://cagov.github.io/caldata-mdsa-caltrans-pems/
MIT License
2 stars 0 forks source link

AADT (Average Annual Daily Traffic) #185

Open jkarpen opened 2 months ago

jkarpen commented 2 months ago

Computation of AADT for ITS Stations

Another quantity that we precompute offline from traffic flow data is the AADT, or Average Annual Daily Traffic. Conceptually, this is simply the total vehicle flow per day, averaged over a year-long period. We compute the AADT in 8 different ways, for every ITS station in the system and for every 12-month period which starts at the first of a calendar month. This section describes the various algorithms used to compute these quantities.

Conventional methods for calculating AADT values require that the input data meet certain completeness standards. For example, the AASHTO's 1992 "Guidelines for Traffic Data Programs" requires that a full day's worth of flow data be available for every day of the week and for every month of the year, with no imputed data allowed. However, much real-world sensor data does not meet such rigorous standards. Several research groups have developed variant procedures designed to accomodate typical patterns of missing data and minimize their distorting effect on the averages. PeMS computes AADT values using 8 of these methods, which are summarized below. More details can be found in the paper "Using Incomplete Archived ITS Data to Calculate Annual Average Traffic Statistics" by Shawn Turner and Eun Sung Park (Proceedings of the Transportation Research Board 87th Annual Meeting, Washington, D.C., 2008). The inputs to these methods are the total station flow values (across all lanes) aggregated to the hourly or daily level, depending on the algorithm. In every case, no imputed data is allowed; only those hours or days for which all data points are real observed values are included in the computations.

The 8 methods used to calculate AADT in PeMS, for each station and each 12-month period, are as follows: AADT Method Description
AADT_1 Arithmetic Mean
AADT_2 ASTM Standard 1442
AADT_3 Conventional AASHTO Procedures
AADT_4 Provisional AASHTO Procedures
AADT_5 Sum of 24 Annual Average Hourly Traffic Volumes
AADT_6 Modified ASTM Standard
AADT_7 Modified Conventional AASHTO
AADT_8 Modified Provisional AASHTO

Lastly, PeMS also computes k-factor

Here is the paper referenced above: turner-park-2008-incomplete-archived-data-of-intelligent-transportation-systems-for-calculation-of-annual-average.pdf

pingpingxiu-DOT-ca-gov commented 1 month ago

@kengodleskidot @ian-r-rose @ZhenyuZhu-Caltrans

I decided to take this as next for data modeling because it is tightly related to the relay completeness (i.e. Annual metrics)

Let me know any questions.

pingpingxiu-DOT-ca-gov commented 1 month ago

We compute the AADT in 8 different ways, for every ITS station in the system and for every 12-month period which starts at the first of a calendar month.

Should it be a year or month ? @kengodleskidot

junlee-analytica commented 1 month ago

This issue will be moved over as a sprint goal in Sprint 2024-11.

mmmiah commented 2 weeks ago

I think that k-factors need to be handled in different model as it is monthly value while AADT is the annual value!

mmmiah commented 2 weeks ago

Created the PR and ready for review of this task!