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
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
with open('README') as f:
|
with open('README.md') as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
|
||||||
with open('LICENSE') as f:
|
with open('LICENSE') as f:
|
||||||
|
|
|
@ -43,6 +43,7 @@ class SNAPDataSet:
|
||||||
# HISTORICAL DATA
|
# HISTORICAL DATA
|
||||||
self.model = 'CRU'
|
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:
|
else:
|
||||||
# PROJECTION DATA
|
# PROJECTION DATA
|
||||||
for comp in components:
|
for comp in components:
|
||||||
|
@ -52,6 +53,7 @@ class SNAPDataSet:
|
||||||
self.scenario = comp.replace('sres', '').upper()
|
self.scenario = comp.replace('sres', '').upper()
|
||||||
endmarker = components.index(comp)
|
endmarker = components.index(comp)
|
||||||
self.model = "_".join(components[startmarker:endmarker])
|
self.model = "_".join(components[startmarker:endmarker])
|
||||||
|
self.resolution = components[startmarker - 1]
|
||||||
|
|
||||||
|
|
||||||
def load_dataset(self):
|
def load_dataset(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue