vein (version 0.7.8)

temp_fact: Expansion of hourly traffic data

Description

temp_fact is a matrix multiplication between traffic and hourly expansion data-frames to obtain a data-frame of traffic at each link to every hour

Usage

temp_fact(q, pro, net)

Arguments

q

Numeric; traffic data per each link

pro

Numeric; expansion factors data-frames

net

SpatialLinesDataFrame or Spatial Feature of "LINESTRING"

Value

data-frames of expanded traffic or sf.

Examples

Run this code
# NOT RUN {
{
# Do not run
data(net)
data(pc_profile)
pc_week <- temp_fact(net$ldv+net$hdv, pc_profile)
plot(pc_week)
pc_weeksf <- temp_fact(net$ldv+net$hdv, pc_profile, net = net)
plot(pc_weeksf)
}
# }

Run the code above in your browser using DataCamp Workspace