Transfer Quality Of Position (Maritime)

Mit der ArcGIS Maritime-Lizenz verfügbar.

Zusammenfassung

Transfers the Quality of Position (QUAPOS) attribution from S-57 edge primitives (captured in PLTS_SpatialAttributeL) to the feature to aid in symbolization dependent on this attribute.

Features in CoastlineL, NaturalFeaturesL, and DepthsL are divided where the primitive attribution changes, and the QUAPOS values are copied to the affected features.

Verwendung

  • The primitive attribute P_QUAPOS is transferred from the coincident features in PLTS_SpatialAttributeL to features in CoastlineL, DepthsL, and NaturalFeaturesL.

  • Run the tool on chart geodatabases before using the Apply Maritime Symbology tool so that the features have the necessary attribution to properly symbolize.

    • For a new chart product, leave the Unverified Features Only parameter unchecked.
    • When updating an existing chart product, check the Unverified Features Only parameter.

  • Running the tool on previously processed features will overwrite prior versions of the output. If unchanged features previously processed by the tool are included, it may generate invalid results, such as deleted features.

Parameter

BeschriftungErläuterungDatentyp
Input Geodatabase

The input geodatabase that contains the chart data in the maritime chart schema.

Workspace
Unverified Features Only
(optional)

Specifies whether only features marked as unverified will be processed.

  • Checked—Only features marked as unverified will be processed.
  • Unchecked—All features will be processed. This is the default.

Boolean

Abgeleitete Ausgabe

BeschriftungErläuterungDatentyp
Output Geodatabase

The updated workspace.

Workspace

arcpy.maritime.TransferQualityOfPosition(in_geodatabase, {unverified_features_only})
NameErläuterungDatentyp
in_geodatabase

The input geodatabase that contains the chart data in the maritime chart schema.

Workspace
unverified_features_only
(optional)

Specifies whether only features marked as unverified will be processed.

  • UNVERIFIED_FEATURESOnly features marked as unverified will be processed.
  • ALL_FEATURESAll features will be processed. This is the default.
Boolean

Abgeleitete Ausgabe

NameErläuterungDatentyp
out_geodatabase

The updated workspace.

Workspace

Codebeispiel

TransferQualityOfPosition example (stand-alone script)

The following stand-alone script demonstrates how to use the TransferQualityOfPosition function.

# Import arcpy module
import arcpy

# Tool variables
input_geodatabase = r"C:\Data\Chart.gdb"
update_features = "ALL_FEATURES"

# Run the tool
arcpy.maritime.TransferQualityOfPosition(input_geodatabase, update_features)

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Lizenzinformationen

  • Basic: Erfordert ArcGIS Maritime
  • Standard: Erfordert ArcGIS Maritime
  • Advanced: Erfordert ArcGIS Maritime

Verwandte Themen