From 3a90407738b22944d613c83676ad2be76f46ab7a Mon Sep 17 00:00:00 2001 From: syounkin Date: Thu, 7 Nov 2024 09:58:34 -0600 Subject: [PATCH] Fixed bug on lines 246-247 route.lts -> route and route.geometry -> route --- cycling_route_analysis_brouter.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cycling_route_analysis_brouter.Rmd b/cycling_route_analysis_brouter.Rmd index ba94673..feff52c 100644 --- a/cycling_route_analysis_brouter.Rmd +++ b/cycling_route_analysis_brouter.Rmd @@ -255,8 +255,8 @@ routes_lts <- bind_rows(routes_lts) ggmap(basemap) + geom_sf(data = routes_lts %>% filter(student_number == 6), inherit.aes = FALSE, - aes(color = route.lts, - geometry = route.geometry), + aes(color = route$lts, + geometry = route$geometry), linewidth = 2) + scale_color_manual(values = bike_lts_scale$color, name = "Bike Level of Traffic Stress")