cfpb / grasshopper

CFPB's streaming batch geocoder
Creative Commons Zero v1.0 Universal
37 stars 13 forks source link

Use CSV library instead of String join/split #194

Open hkeeler opened 8 years ago

hkeeler commented 8 years ago

We're currently using generic String operations for CSV processing. This is going to cause problems as there's a high likelihood we'll have commas in our data, especially address strings. We should use a proper CSV library instead.

scala-csv may be a good fit. Looks like it even supports streaming.