From bbfe53653d23186e88180982f39ec7967c24b6bb Mon Sep 17 00:00:00 2001 From: Will Fedder Date: Wed, 10 Jan 2024 00:18:57 +0000 Subject: [PATCH] Update point size option for bus stops --- pages/1_Bus_stops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/1_Bus_stops.py b/pages/1_Bus_stops.py index 9abba46..2926480 100644 --- a/pages/1_Bus_stops.py +++ b/pages/1_Bus_stops.py @@ -239,9 +239,9 @@ def plot_scatter_mapbox(gdf: gpd.GeoDataFrame, **kwargs): with tab2: st.header("Explore Shelters") # Create an option to size the points by ridership - size_by_ridership = st.checkbox("Size points by boardings") + size_by_ridership = st.checkbox("Size points by average daily boardings") if size_by_ridership: - stops_selection = stops[stops["rider_total"] > 0] + stops_selection = stops[stops["rider_on"] > 0] else: stops_selection = stops fig2 = plot_scatter_mapbox(