Added 'resolution' attribute, fixed setup.py

This commit is contained in:
Matthew Dillon (diogenes) 2013-09-16 07:19:57 -08:00
parent 056aef619f
commit 3ea2ff162b
2 changed files with 4 additions and 2 deletions

View file

@ -3,7 +3,7 @@
from setuptools import setup, find_packages
with open('README') as f:
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:

View file

@ -42,7 +42,8 @@ class SNAPDataSet:
if 'historical' in components:
# HISTORICAL DATA
self.model = 'CRU'
self.scenario = components[components.index('CRU')+1]
self.scenario = components[components.index('CRU') + 1]
self.resolution = components[components.index('CRU') - 1]
else:
# PROJECTION DATA
for comp in components:
@ -52,6 +53,7 @@ class SNAPDataSet:
self.scenario = comp.replace('sres', '').upper()
endmarker = components.index(comp)
self.model = "_".join(components[startmarker:endmarker])
self.resolution = components[startmarker - 1]
def load_dataset(self):