Apply Feature Level Metadata (Topographic Production)

Resumen

Applies values from a metadata record in the FeatureLevelMetadata table to selected features that have matching attribute fields.

Uso

  • The Metadata Favorite value is a record in the FeatureLevelMetadata table. The tool will apply a record's associated values to corresponding attributes for the specified features in the Input Features parameter.

  • The FeatureLevelMetadata table is included with the ArcGIS Defense Mapping and ArcGIS Production Mapping product data files.

  • The field types in the FeatureLevelMetadata table must match the field types in the feature layers being updated. If they don't, the tool will fail with an error message indicating that the field types must match before processing.

Parámetros

EtiquetaExplicaciónTipo de datos
Input Features

The inputs to which the Metadata Favorite value will be applied.

Feature Layer; Feature Class
Input Metadata Table

The path to the metadata table containing the records that will be used to populate attributes.

Table
Metadata Favorite

The record that will be used to populate attributes. The available options depend on the records available in the metadata table.

String

Salida derivada

EtiquetaExplicaciónTipo de datos
Updated Features

The Input Features layer with updated attributes.

Feature Layer; Feature Class

arcpy.topographic.ApplyFeatureLevelMetadata(in_features, in_metadata_table, metadata_favorite)
NombreExplicaciónTipo de datos
in_features
[in_features,...]

The inputs to which the metadata_favorite value will be applied.

Feature Layer; Feature Class
in_metadata_table

The path to the metadata table containing the records that will be used to populate attributes.

Table
metadata_favorite

The record that will be used to populate attributes. The available options depend on the records available in the metadata table.

String

Salida derivada

NombreExplicaciónTipo de datos
updated_features

The in_features layer with updated attributes.

Feature Layer; Feature Class

Muestra de código

ApplyFeatureLevelMetadata example (stand-alone script)

The following code sample demonstrates how to use the ApplyFeatureLevelMetadata function in Python.

# Name: ApplyFeatureLevelMetadata_sample.py
# Description: Use the Apply Feature Level Metadata tool to apply values from a
# metadata record in the Feature Level Metadata table to selected features
# that have matching attribute fields

# Import System Modules
import arcpy

# Check Out Extensions
arcpy.CheckOutExtension('Foundation')

# Setting Local Variables
in_features = r'C:\Data\MGCP_TRD_4_6.gdb\MGCP\AerofacA'
in_metadata_table = r'C:\Data\MGCP_TRD_4_6.gdb\FeatureLevelMetadata'
metadata_favorite = 'Favorite1'

# Execute Apply Feature Level Metadata
arcpy.topographic.ApplyFeatureLevelMetadata(in_features, in_metadata_table, metadata_favorite)

# Check In Extensions
arcpy.CheckInExtension('Foundation')

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Información de licenciamiento

  • Basic: No
  • Standard: Requiere Production Mapping
  • Advanced: Requiere Production Mapping

Temas relacionados