如何检查是否以毫点或点数为单位报告了影响--例如,使用‘生态指标99,(H,A)',’生态系统质量‘,’总‘。
发布于 2016-04-29 21:41:23
元数据存储在methods中,因此您应该能够执行以下操作:
In [1]: methods[('eco-indicator 99, (H,A)', 'total', 'total')]['unit']
Out[1]: 'points'您还可以查看完整的方法元数据:
In [1]: methods[('eco-indicator 99, (H,A)', 'total', 'total')]
Out[1]:
{'abbreviation': 'eco-indicator-99-hatt.418ee316e1a7611c9135b9abe7b490e7',
'description': 'Implementation of the impact assessment method with the normalized and weighted damage factor. Weights (30% human health, 50% ecosystem quality, 20% resources) and normalization for Egalitarian perspective. Correction of factors for nickel and chromium emissions and nickel and zinc resource. Own assessment for new land use categories.',
'filename': 'LCIA implementation v3.1 2014_08_13.xlsx',
'num_cfs': 1285,
'unit': 'points'}https://stackoverflow.com/questions/36937698
复制相似问题