You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formula used in the function plot_lines_between_nodes to calculate points which are close to 10 feet is dd = np.where(dist < d_thresh * 6 / 10)
Could you explain this calculation?
Because a different formula is used for ten_feet_violations list ten_feet_violations = len(np.where(dist_condensed < 10 / 6 * d_thresh)[0])
Thank you!
The text was updated successfully, but these errors were encountered:
The formula used in the function
plot_lines_between_nodes
to calculate points which are close to 10 feet isdd = np.where(dist < d_thresh * 6 / 10)
Could you explain this calculation?
Because a different formula is used for ten_feet_violations list
ten_feet_violations = len(np.where(dist_condensed < 10 / 6 * d_thresh)[0])
Thank you!
The text was updated successfully, but these errors were encountered: