route_average_gradient {stplanr} | R Documentation |
Return average gradient across a route
Description
This function assumes that elevations and distances are in the same units.
Usage
route_average_gradient(elevations, distances)
Arguments
elevations |
Elevations, e.g. those provided by the |
distances |
Distances, e.g. those provided by the |
See Also
Other route_funs:
route_rolling_average()
,
route_rolling_diff()
,
route_rolling_gradient()
,
route_sequential_dist()
,
route_slope_matrix()
,
route_slope_vector()
Examples
r1 <- od_data_routes[od_data_routes$route_number == 2, ]
elevations <- r1$elevations
distances <- r1$distances
route_average_gradient(elevations, distances) # an average of a 4% gradient
[Package stplanr version 1.2.1 Index]