ArcYP üzerinden tabloyu XYZ ASCII dosyasına dışa aktarma?


23

Bir ArcGIS tablosunu ( Örnek aracıyla oluşturulmuş ) bir metin dosyasına ArcPy aracılığıyla dışa aktarmanın bir yolunu arıyorum.

Bunu ArcGIS'te tablo üzerinden sağ tıklayarak bağlam menüsünden yapabilirim, ancak bunu yazmanın bir yolunu bulamadım.

Yanıtlar:


31

Bunu, tablonuzdaki verileri almak ve virgülle ayrılmış bir metin dosyasına yazmak için bir imleç kullanarak yapabilirsiniz.

EDIT: csvPython modülünü kullanarak görevi gerçekleştirmek için daha kısa bir kod bloğu ekliyorum .

Arcpy.da imleci kullanarak yeni cevap:

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)))

Eski stil imleci kullanarak Yeni Cevap:

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

Eski cevap:

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()


1
@ Jason - Teşekkürler, bu çok yardımcı oldu. Ben yeniyim, bu nedenle kabul ettiğiniz cevap hakkında yorum yapacak ününüz yok. Yeni cevapta bir arcpy.da imleci kullanan küçük bir hata olduğunu düşünüyorum. with arcpy.da.SearchCursor(table) as cursor:olmalıdırwith arcpy.da.SearchCursor(table, field_names) as cursor:

Good catch @TylerG, cevabını Veri Erişimi imlecinin gerektirdiği alanların listesini içerecek şekilde düzenledim. Teşekkürler.
Jason,

8

Akıllıca arcpy.ExportXYv_stats adlı "ASCII Özelliğini Verme Özelliğini" isteyebilirsiniz

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")

Sleuthing için +1! Alan adları belirtilmesi gerektiğinden bu etkileşimli olarak çalışır, ancak bir modelde veya komut dosyasında da olmaz.
matt wilkie

1

İşte kullandığım bir kod parçası. Tüm çıktı dosyalarımı .100 metin aralığında .100 metin aralığında oluşturmama yardımcı oluyor. Umarım yardımcı olur

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")
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.