Propiedades de la tabla de ArcInfo

Resumen

La función Describir devuelve las siguientes propiedades para las tablas de ArcInfo. Las Propiedades de la tabla y las Propiedades del dataset también son compatibles.

Una tabla de ArcInfo devuelve un tipo de datos de "ArcInfoTable".

Propiedades

PropiedadExplicaciónTipo de datos
itemSet
(Sólo lectura)

A Python list of items in the table. Each entry in the list is an ArcInfo Item Properties describe object, representing one item in the table.

Object

Ejemplo de código

ArcInfo Table properties example (stand-alone script)

The following stand-alone script displays a Table property from an ArcInfo Table. It then gets a list of ArcInfo items and prints the name of each item.

import arcpy

# Create a Describe object from the ArcInfo Table.
#
desc = arcpy.Describe("C:/data/crimefreq")

# Print a Table property from the ArcInfo Table.
#
#print "HasOID:       " + desc.hasOID
print "%-11s %s" % ("HasOID:", desc.hasOID)


# Get the itemSet from the ArcInfo Table and
# print the name and item type of each item.
#
iSet = desc.itemSet
for item in iSet:
    print "%-12s %s" % ("\nName:", item.name)
    print "%-11s %s" % ("Item type:", item.itemType)


7/10/2012