Fork me on GitHub
#clojure-spec
<
2018-12-18
>
Keith19:12:37

Thought the patter was interesting, so I figured I’d share. Data points generated with:

(s/def ::latitude (s/double-in :min 32 :max 34 :NaN false :infinite? false))
(s/def ::longitude (s/double-in :min -84.9 :max -82 :NaN false :infinite? false))

cjsauer19:12:40

Cool! Thanks for sharing. It looks like the double generator is a bit "quantum biased", for lack of a better word.