Définir un sous-type par défaut (Gestion des données)

Récapitulatif

Définit le code ou la valeur par défaut pour le sous-type de la table en entrée.

Utilisation

Syntaxe

SetDefaultSubtype_management (in_table, subtype_code)
ParamètreExplicationType de données
in_table

Classe d'entités ou table en entrée dont la valeur par défaut du sous-type est définie.

Table View
subtype_code

Valeur par défaut unique d'un sous-type.

Long

Exemple de code

Exemple d'utilisation de l'outil Définir un sous-type par défaut (fenêtre Python)

Le script de fenêtre Python suivant illustre l'utilisation de la fonction SetDefaultSubtype en mode immédiat.

import arcpy
from arcpy import env
env.workspace = "C:/data/Montgomery.gdb"
arcpy.SetDefaultSubtype_management("water/fittings", 5)
Exemple 2 d'utilisation de l'outil SetDefaultSubtype (script autonome)

Le script autonome suivant montre comment utiliser la fonction SetDefaultSubtype dans le cadre d'un workflow pour ajouter des sous-types à un champ.

#Name: ManageSubtypes.py
# Purpose: Create a subtype definition
# Author: ESRI

# Import system modules
import arcpy
from arcpy import env
 
try:
    # Set the workspace (to avoid having to type in the full path to the data every time)
    env.workspace =  "C:/data/Montgomery.gdb"
    
    # Set local parameters
    inFeatures = "water/fittings"
 
    # Process: Set Subtype Field...
    arcpy.SetSubtypeField_management(inFeatures, "TYPECODE")
     
    # Process: Add Subtypes...
    # Store all the suptype values in a dictionary with the subtype code as the "key" and the 
    # subtype description as the "value" (stypeDict[code])
    stypeDict = {"0": "Unknown", "1": "Bend", "2": "Cap", "3": "Cross", "4": "Coupling",\
                 "5": "Expansion joint", "6": "Offset", "7":"Plug", "8": "Reducer",\
                 "9": "Saddle", "10": "Sleeve", "11": "Tap", "12": "Tee", "13": "Weld", "14": "Riser"} 
    
    # use a for loop to cycle through the dictionary
    for code in stypeDict:
        arcpy.AddSubtype_management(inFeatures, code, stypeDict[code])     
			
    # Process: Set Default Subtype...
    arcpy.SetDefaultSubtype_management(inFeatures, "4")
 
except Exception, e:
    # If an error occurred, print line number and error message
    import traceback, sys
    tb = sys.exc_info()[2]
    print "Line %i" % tb.tb_lineno
    print e.message

Environnements

Rubriques connexes

Informations de licence

ArcView : Oui
ArcEditor : Oui
ArcInfo : Oui

7/10/2012