bambam 0.3.1

The Behavior and Advanced Mobility Big Access Model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::DelayAggregationType;
use routee_compass_core::model::unit::TimeUnit;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct TimeDelayConfig {
    /// file containing time delays and geometries
    pub lookup_file: String,
    /// unit for time values in the file
    pub time_unit: TimeUnit,
    /// aggregation method for cases when more than one geometry intersects
    /// a road network element.
    pub aggregation: DelayAggregationType,
}