erm createroadtypeupdate
Usage
erm createroadtypeupdate --datasource db_resource --roadtype "road_type" --velocity velocity_value --velocityunit velocity_unit --velocityadjustment velocity_adjustment_value --velocitypercentage velocity_percentage_value --roadtype road_typeRequired | Argument | Description |
---|---|---|
Yes | --datasource db_resource |
Specifies the name of the database resource to override the data. For a list of existing routing database resources, use the ermdb list command. |
Yes | --roadtype "road_type" |
Indicates the road type to override:
|
No | --velocity velocity_value |
Defines a speed update where you specify the new speed of the road type by specifying the new velocity. The default unit is mph(miles per hour) unless you specify the velocityunit parameter. |
No | --velocityunit velocity_unit |
Defines a unit of speed for the velocity or velocityadjustment overrides. The default is mph(miles per hour). For speed updates, the velocity unit can have one of the following values: kph (kilometers per hour), mps(meters per second), or mph (miles per hour). |
No | --velocityadjustment velocity_adjustment_value |
Defines a speed update where you define a change in the speed of the road type by specifying the change in velocity (unit and value). Speed values can be increased (positive value) or decreased(negative value). The default unit is mph(miles per hour) unless you specify the velocityunit parameter. |
No | --velocitypercentage velocity_percentage_value |
Defines a speed update where you define an increase in the speed of the road type by specifying a percentage to increase(positive value) or decrease(negative value) the speed. |
Examples
This example overrides the speed of a road type to 25 kph, from the US_NE database resources configured on the server.
erm createroadtypeupdate --datasource US_NE --roadtype "normal road suburban" --velocity 25 --velocityunit kphThis example increases the speed of the specified road type by 50 kph, from the US_NE database resources configured on the server.
erm createroadtypeupdate --datasource US_NE --roadtype "normal road suburban" --velocityadjustment 50 --velocityunit mphThis example overrides the speed of the road type by decreasing the speed by 65 percent, from the US_NE database resources configured on the server.
erm createroadtypeupdate --datasource US_NE --roadtype "normal road suburban" --velocitypercentage -65