0

我如何检查是否报告了影响——例如使用“生态指标 99,(H,A)”、“生态系统质量”、“总计”——以毫点或点为单位。

4

1 回答 1

1

元数据存储在 中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'}
于 2016-04-29T13:41:23.043 回答