Skip to content

Commit

Permalink
fix(gpx): try smaller number
Browse files Browse the repository at this point in the history
  • Loading branch information
bb4L authored Aug 20, 2024
1 parent 4ffd07a commit 0516e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/gpx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub fn generate_partial_gpx(
// only consider points within 10km of the start location
let distance = point.point().geodesic_distance(&location_point);

if distance > 10_000.0 {
if distance > 50.0 {
continue;
}
if distance < min_distance {
Expand Down

0 comments on commit 0516e72

Please sign in to comment.