1

Fixing accessibility calculation

This commit is contained in:
Alex Yatskov 2015-07-31 13:29:33 +09:00
parent 37e66d00ae
commit 9b364d1c6d

View File

@ -185,7 +185,7 @@ func computeRecordGeo(entries records, context queryContext) {
if distUserRange > 0 {
nearby = -((entry.distanceToUser-distUserMin)/distUserRange - 0.5) * 2.0
accessible = 1.0 - (entry.distanceToStn / context.walkingDist)
accessible = 1.0 - (entry.distanceToStn / context.walkingDist * 1000)
accessible = math.Max(accessible, -1.0)
accessible = math.Min(accessible, 1.0)
}