Struct map_model::RoutingParams[][src]

pub struct RoutingParams {
    pub unprotected_turn_penalty: Duration,
    pub bike_lane_penalty: f64,
    pub bus_lane_penalty: f64,
    pub driving_lane_penalty: f64,
    pub avoid_steep_incline_penalty: f64,
    pub avoid_high_stress: f64,
    pub main_road_penalty: f64,
    pub avoid_roads: BTreeSet<RoadID>,
    pub avoid_movements_between: BTreeSet<(RoadID, RoadID)>,
}
Expand description

Tuneable parameters for all types of routing.

Fields

unprotected_turn_penalty: Durationbike_lane_penalty: f64bus_lane_penalty: f64driving_lane_penalty: f64avoid_steep_incline_penalty: f64avoid_high_stress: f64main_road_penalty: f64

When crossing an arterial or highway road, multiply the base cost by this penalty. When greater than 1, this will encourage routes to use local roads more.

avoid_roads: BTreeSet<RoadID>

Don’t allow crossing these roads at all. Only affects vehicle routing, not pedestrian.

TODO The route may cross one of these roads if it’s the start or end!

avoid_movements_between: BTreeSet<(RoadID, RoadID)>

Don’t allow movements between these roads at all. Only affects vehicle routing, not pedestrian.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.