Apply Feature Level Metadata (Topographic Production)

Zusammenfassung

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

Verwendung

  • 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.

Parameter

BeschriftungErläuterungDatentyp
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

Abgeleitete Ausgabe

BeschriftungErläuterungDatentyp
Updated Features

The Input Features layer with updated attributes.

Feature Layer; Feature Class

arcpy.topographic.ApplyFeatureLevelMetadata(in_features, in_metadata_table, metadata_favorite)
NameErläuterungDatentyp
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

Abgeleitete Ausgabe

NameErläuterungDatentyp
updated_features

The in_features layer with updated attributes.

Feature Layer; Feature Class

Codebeispiel

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

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert Production Mapping
  • Advanced: Erfordert Production Mapping

Verwandte Themen