Une tâche de géotraitement courante consiste à fusionner de nombreux jeux de données dans un nouveau jeu de données ou un jeu de données existant afin de créer un jeu de données unique couvrant une zone plus étendue ou une table contenant un plus grand nombre d’enregistrements. Si les attributs, ou champs, de toutes les entrées utilisées dans une opération de fusion ou d’ajout sont souvent identiques, il arrive cependant parfois qu’ils ne correspondent pas et que les relations entre les champs de noms et de types différents doivent être appariées. Pour obtenir un exemple d’appariement de champs, reportez-vous à l’outil Fusionner, facilite l’appariement des relations de façon à placer les données dans les champs en sortie souhaités avec les valeurs correctes.
FieldMap
The FieldMap object provides a field definition and a list of input fields from a set of tables or feature classes that provide its values.
The properties of the FieldMap object include the start and end position of an input text value, so an output value can be created using a slice of an input value. If a FieldMap object contains multiple input fields from the same table or feature class, each record's values are merged using the mergeRule property. This is a convenient way to join values, such as a street name that is held in one field and a street type that is held in another, for example, Eureka and Street. The joinDelimiter property of the FieldMap object is used when Join is specified as the mergeRule value. Any set of characters, such as a space, can be used as a delimiter. In the example above, this would create a value of Eureka Street.
FieldMappings
The FieldMappings object is a collection of FieldMap objects, and it is used as the parameter value for tools that perform field mapping, such as Merge. The easiest way to work with these objects is to first create a FieldMappings object, then initialize its FieldMap objects by adding the input feature classes or tables that are to be combined. Once all inputs are provided, the FieldMappings object will contain one FieldMap object, or output field, for each unique field name from all the inputs. You can modify this list by adding new fields, altering the properties or contents of an output field, or removing unwanted output fields.
Exemples
Dans l’exemple qui suit, un certain nombre de classes d’entités contenant des données de recensement américain seront fusionnées afin de former une nouvelle classe d’entités. Le champ numérique STFID est l’un des attributs en entrée présent dans toutes les entrées. Cette valeur à 15 chiffres est un identifiant unique attribué à chaque îlot de recensement aux États-Unis. Cette valeur peut être décomposée en quatre composants. Les deux premiers chiffres correspondent au code de l’état, les trois suivants au comté, les six chiffres suivants identifient le secteur de recensement, et les quatre derniers chiffres l’îlot de recensement. La valeur 360899912001006 représente l’îlot de recensement (1006) dans lequel se trouve l’Université d’État de New York à Potsdam dans le nord de l’État de New York (36), au sein du secteur de recensement 991200 du comté de St. Lawrence (089). L’exemple de script fusionne ces classes d’entités et crée également deux nouveaux champs, TRACTID et BLOCKID, puisque les données en entrée ne possèdent que l’attribut STFID. Pour ce faire, l’objet FieldMappings est initialisé à l’aide de la méthode addTable pour saisir chaque entrée. L’objet FieldMappings par défaut est ensuite modifié en créant deux nouveaux objets FieldMap, en renseignant leurs propriétés, et en les ajoutant à l’objet FieldMappings.
import arcpy
arcpy.env.workspace = "C:/Data/CityBlocks.gdb"
outfc = "C:/Data/CityBlocks.gdb/AllBlocks"
# Each of the input Feature classes has an STFID, which is the combination of
# the Tract ID and Block ID for each block. Separate these values out from this
# field into two new fields, TRACTID and BLOCKID.
# Create a fieldmappings and two new fieldmaps.
fieldmappings = arcpy.FieldMappings()
fldmap_TRACTID = arcpy.FieldMap()
fldmap_BLOCKID = arcpy.FieldMap()
# List all the feature classes in the workspace that start with 'block' in
# their name and are of polygon feature type.
fcs = arcpy.ListFeatureClasses("block*", "Polygon")
# Create a value table that will hold the input feature classes to Merge
vTab = arcpy.ValueTable()
for fc in fcs:
# Adding a table is the fast way to load all the fields from the input
# into fieldmaps held by the fieldmappings object.
fieldmappings.addTable(fc)
# In this example also create two fieldmaps by 'chopping up' an input field.
# Feed the chopped field into the new fieldmaps.
fldmap_TRACTID.addInputField(fc, "STFID")
fldmap_BLOCKID.addInputField(fc, "STFID")
# Populate the input value table with feature classes
vTab.addRow(fc)
# Set the starting and ending position of the fields going into the TractID
# fieldmap. This is the location in the STFID field where the TractID falls.
for x in range(0, fldmap_TRACTID.inputFieldCount):
fldmap_TRACTID.setStartTextPosition(x, 5)
fldmap_TRACTID.setEndTextPosition(x, 10)
# Set the Name of the Field output from this field map.
fld_TRACTID = fldmap_TRACTID.outputField
fld_TRACTID.name = "TRACTID"
fldmap_TRACTID.outputField = fld_TRACTID
# Set the starting and ending position of the fields going into the BlockID
# fieldmap. This is the location in the STFID field where the blockID falls.
for x in range(0, fldmap_BLOCKID.inputFieldCount):
fldmap_BLOCKID.setStartTextPosition(x, 11)
fldmap_BLOCKID.setEndTextPosition(x, 16)
# Set the Name of the Field output from this field map.
fld_BLOCKID = fldmap_BLOCKID.outputField
fld_BLOCKID.name = "BLOCKID"
fldmap_BLOCKID.outputField = fld_BLOCKID
# Add the custom fieldmaps into the fieldmappings object.
fieldmappings.addFieldMap(fldmap_TRACTID)
fieldmappings.addFieldMap(fldmap_BLOCKID)
# Run the Merge tool.
arcpy.Merge_management(vTab, outfc, fieldmappings)
L’exemple suivant montre comment modifier un objet FieldMap une fois celui-ci créé à l’aide de la méthode addTable de l’objet FieldMappings. Ceci est important lorsque les entrées comportent des champs de noms différents mais contenant logiquement des valeurs identiques.
import arcpy
outfc = "C:/data/CityData.gdb/AllBlocks"
# Want to merge these two feature classes together. Have a field that has the
# same content but the names are slightly different: Blocks1 has TRACT2000
# and Blocks2 TRACTCODE. Name the output the same as Blocks1.
fc1 = "C:/data/CityData.gdb/Blocks1"
fc2 = "C:/data/CityData.gdb/Blocks2"
# Create a new fieldmappings and add the two input feature classes.
fieldmappings = arcpy.FieldMappings()
fieldmappings.addTable(fc1)
fieldmappings.addTable(fc2)
# First get the TRACT2000 fieldmap. Then add the TRACTCODE field from Blocks2
# as an input field. Then replace the fieldmap within the fieldmappings object.
fieldmap = fieldmappings.getFieldMap(fieldmappings.findFieldMapIndex("TRACT2000"))
fieldmap.addInputField(fc2, "TRACTCODE")
fieldmappings.replaceFieldMap(fieldmappings.findFieldMapIndex("TRACT2000"), fieldmap)
# Remove the TRACTCODE fieldmap.
fieldmappings.removeFieldMap(fieldmappings.findFieldMapIndex("TRACTCODE"))
# Run the Merge tool.
arcpy.Merge_management([fc1, fc2], outfc, fieldmappings)
Vous avez un commentaire à formuler concernant cette rubrique ?