Return average gradient across a route
This function assumes that elevations and distances are in the same units.
route_average_gradient(elevations, distances)
elevations |
Elevations, e.g. those provided by the |
distances |
Distances, e.g. those provided by the |
Other route_funs:
route_rolling_average()
,
route_rolling_diff()
,
route_rolling_gradient()
,
route_sequential_dist()
,
route_slope_matrix()
,
route_slope_vector()
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
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.