Transfer Quality Of Position (Maritime)

Disponible con licencia de ArcGIS Maritime.

Resumen

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.

Uso

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

Parámetros

EtiquetaExplicaciónTipo de datos
Input Geodatabase

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

Workspace
Unverified Features Only
(Opcional)

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

Salida derivada

EtiquetaExplicaciónTipo de datos
Output Geodatabase

The updated workspace.

Workspace

arcpy.maritime.TransferQualityOfPosition(in_geodatabase, {unverified_features_only})
NombreExplicaciónTipo de datos
in_geodatabase

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

Workspace
unverified_features_only
(Opcional)

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

Salida derivada

NombreExplicaciónTipo de datos
out_geodatabase

The updated workspace.

Workspace

Muestra de código

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)

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Información de licenciamiento

  • Basic: Requiere ArcGIS Maritime
  • Standard: Requiere ArcGIS Maritime
  • Advanced: Requiere ArcGIS Maritime

Temas relacionados