rvouyaa commited on
Commit
22e4120
·
verified ·
1 Parent(s): 9d0aff9

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -117,7 +117,7 @@ st.markdown("Bandingkan rute tercepat antara **Drive** dan **Bus** dari titik-ti
117
 
118
  with st.sidebar:
119
  st.header("📍 Input Rute")
120
- gdf_nodes, gdf_edges, gdf_poi = load_data()
121
  name_list = sorted(gdf_poi['name'].dropna().unique().tolist())
122
  start_name = st.selectbox("Pilih Lokasi Awal:", name_list)
123
  end_name = st.selectbox("Pilih Lokasi Tujuan:", name_list, index=1)
 
117
 
118
  with st.sidebar:
119
  st.header("📍 Input Rute")
120
+ gdf_nodes, gdf_edges, gdf_poi = load_all_data()
121
  name_list = sorted(gdf_poi['name'].dropna().unique().tolist())
122
  start_name = st.selectbox("Pilih Lokasi Awal:", name_list)
123
  end_name = st.selectbox("Pilih Lokasi Tujuan:", name_list, index=1)