Python 2.7,arcpy:将数据从txt文件导入空属性表。

时间:2015-07-27 00:33:54

标签: python python-2.7 arcgis arcpy arcgis-server

我有一个shapefile(Fireincidents),目前没有任何数据。我想用来自文本文件(north_america_fires)的数据填充该功能。文本文件包含每个火灾的纬度,长度和置信度。我创建了一个新的插入游标来插入新角色。我还启动了一个for循环来循环遍历文本文件中的每一行。我无法识别填充点类对象中的行的方法。我相信我必须创建一个列表,可以附加文本文件中的数据然后以某种方式将该数据列表插入到属性表中。

我目前的代码:

try:

    work = raw_input("Enter the full path of WildlandFires.mdb: ") 
    arcpy.env.workspace = work
    arcpy.env.overwriteOutput = True

    iFile = raw_input("Enter the full path of wildfire text file: ")

    fields = ["SHAPE@", "CONFIDENCEVALUE"]
    cur = arcpy.da.InsertCursor("FireIncidents", fields)

    f = open(iFile, 'r')
    lstFires = f.readlines()

    cntr = 0

    for fire in lstFires:  
        if 'Latitude' in fire: 
            continue
        row = line.split(',')
        lstValues = []
        latitude = row[0].strip() 
        longitude = row[1].strip()
        confid = row[2].strip()
        pnt = arcpy.CreateObject("Point")
        lstValues.append(pnt)


    f.close()

except Exception as e:
    print "Error: " + str(e)
    print arcpy.GetMessages()
    arcpy.AddError(e) 

任何指导都将不胜感激。

1 个答案:

答案 0 :(得分:0)

我刚刚发现了这个问题。它确实有正确的纬度和长坐标。谢谢你的回复。