Created
March 30, 2012 08:53
-
-
Save rhysforyou/2250000 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| File.open("IDCJAC0009_068131_1800_Data.csv", 'r') do |f| | |
| while line = f.gets | |
| values = line.split(',') | |
| # values[2] is the year and values[5] is the amount of rainfall | |
| if values[2] == "2011" && values[5] != '' && values[5] != '0.0' | |
| puts values[5] | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment