I am new to clojure and working on a small jabber bot as a starter
project.  One of the things I am adding is a simple weather lookup, but
in doing so I need to convert zip code to lat/long.  I've found a
suitable CSV from http://www.boutell.com/zipcodes/ and am wondering the
best way to deal with the data.  I'd like to keep it "contained" in an
uberjar and not have to add a database as a requirement.  I've
considered sqlite, but again not sure if it can be inside the uberjar.

The data set is rather small:

,----
| bash-3.2$ ls -larh zipcode.csv 
| -rw-r--r--@ 1 kes  staff   2.4M Aug  6  2004 zipcode.csv
| bash-3.2$ wc -l zipcode.csv 
|    43205 zipcode.csv
| bash-3.2$ 
`----

What would be the recommended way for dealing with this data?

-- 
Kyle Sexton

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to