|
@@ -354,6 +354,7 @@ def checkData(fileUrl):
|
|
|
# 提取异常指标数据
|
|
|
global table_1_index
|
|
|
table_1_index = pd.DataFrame({
|
|
|
+ '原样品编号': simpleData['原样品编号'],
|
|
|
'样品编号': simpleData['样品编号'],
|
|
|
'土地利用类型': resData['土地利用类型'],
|
|
|
'指标': table_1_res['异常指标'],
|
|
@@ -653,6 +654,7 @@ def makeNormalWord(url):
|
|
|
indexArr = pd.RangeIndex(start=1, stop=length+1)
|
|
|
newData = pd.DataFrame({
|
|
|
'序号': indexArr,
|
|
|
+ '原样品编号': table_1_index['原样品编号'],
|
|
|
'样品编号': table_1_index['样品编号'],
|
|
|
'土地利用类型': table_1_index['土地利用类型'],
|
|
|
'指标': table_1_index['指标'] + table_3_index['指标'] + table_5_index['指标'] + table_8_index['指标'] + table_10_index['指标'] + table_12_index['指标'] + table_14_index['指标'],
|