Change default precision to 9 characters (approx 5m square)
This commit is contained in:
parent
05f019b269
commit
5c6ee9e782
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
(define base32 "0123456789bcdefghjkmnpqrstuvwxyz")
|
(define base32 "0123456789bcdefghjkmnpqrstuvwxyz")
|
||||||
|
|
||||||
(define* (encode lat lon #:key (precision 6))
|
(define* (encode lat lon #:key (precision 9))
|
||||||
(define desired-precision (min precision max-precision))
|
(define desired-precision (min precision max-precision))
|
||||||
(let loop ((lat-min -90.0)
|
(let loop ((lat-min -90.0)
|
||||||
(lat-max 90.0)
|
(lat-max 90.0)
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
(encode 37.25 123.75 #:precision 12))
|
(encode 37.25 123.75 #:precision 12))
|
||||||
|
|
||||||
(test-equal "encode default precision"
|
(test-equal "encode default precision"
|
||||||
"wy85bj"
|
"wy85bj0hb"
|
||||||
(encode 37.25 123.75))
|
(encode 37.25 123.75))
|
||||||
|
|
||||||
(test-end)
|
(test-end)
|
||||||
|
|
Loading…
Reference in a new issue