Skip to content

Commit

Permalink
Change default value
Browse files Browse the repository at this point in the history
  • Loading branch information
chraibi committed Aug 23, 2024
1 parent 667b4ab commit 0f0d3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def run() -> None:
st.pyplot(fig2)
if selected == "Distance to entrance":
c1, c2 = st.columns(2)
yaxis_max = c1.number_input("Max y-Axis: ", value=1.0, step=0.1)
yaxis_max = c1.number_input("Max y-Axis: ", value=10.0, step=0.1)
colorbar_max = c2.number_input("Max colorbar: ", value=2.0, step=0.1)
df_time_distance = pedpy.compute_time_distance_line(
traj_data=traj, measurement_line=measurement_line
Expand Down

0 comments on commit 0f0d3ce

Please sign in to comment.