Skip to content

Instantly share code, notes, and snippets.

@gilesbowkett
Forked from mattly/d-gen.clj
Created September 22, 2016 17:15
Show Gist options
  • Save gilesbowkett/8597870db969dd46edfd561f545389ca to your computer and use it in GitHub Desktop.
Save gilesbowkett/8597870db969dd46edfd561f545389ca to your computer and use it in GitHub Desktop.
(asdf)
(defn- state-line [[state results]]
(let [d (->> results
(sort-by :year)
(reduce (fn [line {:keys [year from-center]}]
(conj line (str (x-for-margin from-center)
","
(+ 10 (year-base year)))))
[])
(interpose "L")
(concat ["M"])
(str/join " "))]
[:path {:key state :d d :stroke "#ccc" :fill "none"}]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment