Експорт таблиці в файл XYZ ASCII через ArcPy?


23

Я шукаю спосіб експорту таблиці ArcGIS (створеної за допомогою інструмента Sample ) в текстовий файл через ArcPy.

Я можу це зробити в ArcGIS через контекстне меню, клацнувши правою кнопкою миші по таблиці, але не знайшов способу це зробити.

Відповіді:


31

Ви можете зробити це за допомогою курсору, щоб забрати дані зі своєї таблиці та записати у текстовий файл з комою.

EDIT: Я додаю більш короткий блок коду для виконання завдання за допомогою csvмодуля Python

Нова відповідь за допомогою курсору arcpy.da:

import arcpy,csv

table =r'c:\path\to\table'
outfile = r'c:\path\to\output\ascii\text\file'

#--first lets make a list of all of the fields in the table
fields = arcpy.ListFields(table)
field_names = [field.name for field in fields]

with open(outfile,'wb') as f:
    dw = csv.DictWriter(f,field_names)
    #--write all field names to the output file
    dw.writeheader()

    #--now we make the search cursor that will iterate through the rows of the table
    with arcpy.da.SearchCursor(table,field_names) as cursor:
        for row in cursor:
            dw.writerow(dict(zip(field_names,row)))

Нова відповідь за допомогою курсору старого стилю:

import arcpy,csv

table =r'c:\path\to\table'
outfile = r'c:\path\to\output\ascii\text\file'      

#--first lets make a list of all of the fields in the table
fields = arcpy.ListFields(table)
field_names = [field.name for field in fields]

with open(outfile,'wb') as f:
    w = csv.writer(f)
    #--write all field names to the output file
    w.writerow(field_names)

    #--now we make the search cursor that will iterate through the rows of the table
    for row in arcpy.SearchCursor(table):
        field_vals = [row.getValue(field.name) for field in fields]
        w.writerow(field_vals)
    del row

Стара відповідь:

import arcpy

table =r'c:\path\to\table'
outfile = r'c:\path\to\output\ascii\text\file'


#--first lets make a list of all of the fields in the table
fields = arcpy.ListFields(table)

i = 1
f = open(outfile,'w')
for field in fields:
    #--write all field names to the output file
    if i < len(fields):
        f.write('%s,' % field.name)
        i += 1
    else:
        f.write('%s\n' % field.name)

#--now we make the search cursor that will iterate through the rows of the table
rows = arcpy.SearchCursor(table)
for row in rows:
    i = 1
    for field in fields:
        if i < len(fields):
            f.write('%s,' % row.getValue(field.name))
            i += 1
        else:
            f.write('%s\n' % row.getValue(field.name))
del rows
f.close()

Радий, що можу вам допомогти @Toni
Jason

1
@Jason - Дякую, це було дуже корисно. Я новачок, тому не маю репутації коментувати вашу прийняту відповідь. Я думаю, що у новій відповіді є невелика помилка, яка використовує курсор arcpy.da. with arcpy.da.SearchCursor(table) as cursor:повинен бутиwith arcpy.da.SearchCursor(table, field_names) as cursor:

Хороший улов @TylerG, я змінив відповідь, щоб включити список полів, необхідних курсором доступу до даних. Спасибі.
Джейсон

8

Ви можете захотіти "Експорт атрибута функції в ASCII", вміло названий arcpy.ExportXYv_stats

http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//005p0000003v000000

import arcpy

feature = "path to feature here"
# fieldnames must be explicitly provided. Note that you will get additional fields based on the feature type (e.g., "XCoord" and "YCoord" for point features)
fieldnames = [X.name for X in arcpy.ListFields(feature)]
# delimiter options "SPACE", "COMMA", or "SEMI-COLON"
# header options "ADD_FIELD_NAMES" or "NO_FIELD_NAMES"
arcpy.ExportXYv_stats(feature, fieldnames, "SPACE", "path to outfile", "ADD_FIELD_NAMES")

+1 для снування! Це працює в інтерактивному режимі, але не так добре в моделі або сценарії, оскільки назви полів повинні бути вказані.
matt wilkie

1

Ось фрагмент коду, який я використовую. Це допомагає мені генерувати всі мої вихідні файли до .txt-файлу з діапазоном від 0,100. Сподіваємось, це допомагає

for x in xrange(0,100):
    if os.path.isfile(outfolder + "/" + "outputs" + str(x) +".shp" ):
       inFeatures = "selected_features" + str(x) +".shp"
       export_ASCII = "ASCII " + str(x) +".txt"
       arcpy.ExportXYv_stats(inFeatures, ["Cur1_pr2","Cur3_pl1","slp1"],"SPACE", export_ASCII,"ADD_FIELD_NAMES")
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.