Added 'resolution' attribute, fixed setup.py
This commit is contained in:
parent
056aef619f
commit
3ea2ff162b
2 changed files with 4 additions and 2 deletions
2
setup.py
2
setup.py
|
@ -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:
|
||||
|
|
|
@ -43,6 +43,7 @@ class SNAPDataSet:
|
|||
# HISTORICAL DATA
|
||||
self.model = 'CRU'
|
||||
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):
|
||||
|
|
Loading…
Add table
Reference in a new issue