Created
February 28, 2016 17:45
-
-
Save cigrainger/48cf8d637b8eced0ee5f 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
temp_precip = [] | |
for i,p in enumerate(correct_precip): | |
if i % 6 == 0: | |
temp_precip.append(p) | |
else: | |
temp_precip.append(p-correct_precip[i-1]) | |
if i % 10000 == 0: | |
print i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment