在 brightway2 中导入 simpro CSV 时如何处理 CapitalizationError?
how to deal with CapitalizationError during importing in simpro CSV in brightway2?
当我导入 CSV 文件时出现以下错误:
CapitalizationError: Possible errors in upper/lower case letters for some parameters.
'_a3_spruce_yes'' not found; could be '_a3_spruce_yes'
'_a3_osb_thickness'' not found; could be '_a3_osb_thickness'
'_a3_primary_frame'' not found; could be '_a3_primary_frame'
'_a3_pp_density'' not found; could be '_a3_pp_density'......(continue)
如果我查看 csv 文件,它看起来像(我只以一个输入和项目参数为例,它们基本上都是这样,A 大写)
Project Input parameters
_A3_Spruce_yes;0;Undefined;0;0;0;No;(0/1) Choice of spruce
....
Project Calculated parameters
_A3_Douglas_Yes;1-_A3_spruce_yes;Choice of Douglas
...(there also other calculated parameters but always with the same A capitalized)
任何想法:
- 为什么这个概率
-如何修复它
输入文件有错误。 CapitalizationError
不正确;相反,有一些引用引用输入数据中未定义的变量,例如_Wall_Weight
在包含变量 _A3_OSB
、_A3_Plywood
和 _A3_PP
的长公式中定义,但这些变量本身并未在任何地方定义。这种情况下正确的错误应该是 ParameterError
,并且只能在输入数据中解决(以及在允许首先导出不完整引用的导出程序中)。
当我导入 CSV 文件时出现以下错误:
CapitalizationError: Possible errors in upper/lower case letters for some parameters.
'_a3_spruce_yes'' not found; could be '_a3_spruce_yes'
'_a3_osb_thickness'' not found; could be '_a3_osb_thickness'
'_a3_primary_frame'' not found; could be '_a3_primary_frame'
'_a3_pp_density'' not found; could be '_a3_pp_density'......(continue)
如果我查看 csv 文件,它看起来像(我只以一个输入和项目参数为例,它们基本上都是这样,A 大写)
Project Input parameters
_A3_Spruce_yes;0;Undefined;0;0;0;No;(0/1) Choice of spruce
....
Project Calculated parameters
_A3_Douglas_Yes;1-_A3_spruce_yes;Choice of Douglas
...(there also other calculated parameters but always with the same A capitalized)
任何想法: - 为什么这个概率 -如何修复它
输入文件有错误。 CapitalizationError
不正确;相反,有一些引用引用输入数据中未定义的变量,例如_Wall_Weight
在包含变量 _A3_OSB
、_A3_Plywood
和 _A3_PP
的长公式中定义,但这些变量本身并未在任何地方定义。这种情况下正确的错误应该是 ParameterError
,并且只能在输入数据中解决(以及在允许首先导出不完整引用的导出程序中)。