Skip to content

Commit

Permalink
Merge pull request #6325 from ibi-group/reduce-geocoder-radius
Browse files Browse the repository at this point in the history
Reduce geocode cluster radius
  • Loading branch information
leonardehrenfried authored Dec 11, 2024
2 parents e15f69b + a1d44ba commit da0d520
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private List<LuceneStopCluster> buildStopClusters(Collection<StopLocation> stopL
.stream()
.collect(
Collectors.groupingBy(sl ->
new DeduplicationKey(sl.getName(), sl.getCoordinate().roundToApproximate100m())
new DeduplicationKey(sl.getName(), sl.getCoordinate().roundToApproximate10m())
)
)
.values()
Expand Down

0 comments on commit da0d520

Please sign in to comment.