Update Aviation Annotation (Aviation)

Aviation Charting ライセンスで利用できます。

サマリー

Batch updates Aviation-specific annotation layers to streamline chart production and finishing.

Annotation may need to be resized for cartographic or parameter changes, such as reference scale changes. Complex annotation layers can also use different fonts or sizes in a label that do not always scale correctly. This tool allows you to update those complex layers and apply text and annotation scale updates at the same time.

使用法

  • The Annotation Layers parameter value must include feature-linked annotation.

    注意:

    If an annotation feature class is not selected, it will be skipped.

  • For the Apply Scaling parameter, scaling is applied to the Annotation feature directly on the FontSize field.

    For example, if the Annotation feature has a FontSize value of 8, the following formula would be used to update the Annotation feature:

    new FontSize = ( LinkedCartoFeature.RefScale * 8) / AnnotationLayer.RefScale

  • The Area of Interest Features polygon feature class is used to set a boundary within which airspace polygon features will be processed. Airspace polygon features that wholly or partially overlap the area of interest (AOI) will be processed.

    注意:

    The tool will only honor Area of Interest Features parameter values that are currently selected on a feature layer. If no AOI is selected, the tool will run using all features in the Area of Interest Features parameter value.

  • 注意:

    このツールを実行すると、入力データが変更されます。 詳細と不要なデータの変更を回避するための方法については、「入力データを変更または更新するツール」をご参照ください。

パラメーター

ラベル説明データ タイプ
Map

The input map for this tool will update the domains for the Annotation Layers parameter value.

Map
Annotation Layers

The feature-linked annotation layers and the specified sublayers that will be updated.

  • Annotation Layers—The input feature-linked annotation layers.
  • Sublayers—The sublayers that determine which annotation features will be processed.
Value Table
Area of Interest Features
(オプション)

The AOI boundary within which features will be processed.

Feature Layer
Apply scaling
(オプション)

Specifies whether scaling will be applied to annotation features based on linked cartographic feature reference scale and annotation reference scale. The formula for scaling is (( LinkedFeature.ReferenceScale * value) / AnnotationLayer.ReferenceScale ).

  • Unchecked—No annotation scaling will be applied. This is the default.
  • Checked—Annotation scaling will be applied.
Boolean

派生した出力

ラベル説明データ タイプ
Output Annotation Layers

The output annotation layers.

Derived

arcpy.aviation.UpdateAviationAnno(in_map, in_anno_layers, {aoi_features}, {apply_scaling})
名前説明データ タイプ
in_map

The input value for this tool will update the domains for the in_anno_layers parameter value.

Map
in_anno_layers
[in_anno_layers,...]

The feature-linked annotation layers and the specified sublayers that will be updated.

  • Annotation Layers—The input feature-linked annotation layers.
  • Sublayers—The sublayers that determine which annotation features will be processed.
Value Table
aoi_features
(オプション)

The AOI boundary within which features will be processed.

Feature Layer
apply_scaling
(オプション)

Specifies whether scaling will be applied to annotation features based on linked cartographic feature reference scale and annotation reference scale. The formula for scaling is (( LinkedFeature.ReferenceScale * value) / AnnotationLayer.ReferenceScale ).

  • SCALEDNo annotation scaling will be applied. This is the default.
  • NOT_SCALEDAnnotation scaling will be applied.
Boolean

派生した出力

名前説明データ タイプ
out_anno_layers

The output annotation layers.

Derived

コードのサンプル

UpdateAviationAnno example (stand-alone script)

The following script demonstrates how to use the UpdateAviationAnno function.

# Name: UpdateAviationAnno_sample.py
# Description: ArcGIS processing tool that automates
# the resizing of annotation layers.

# Import system modules
import arcpy

# Check out extensions
arcpy.CheckOutExtension("Aeronautical")

# Set the environment
arcpy.env.workspace = r"D:\Data\AIS.gdb\Data"

# Set local variables
in_map = "Map"
in_anno_layers = "ADHP_C_A 'ADHP ENR;ADHP VIS';ATSRoute_C_A"
aoi_features = "AOI"
apply_scaling = "SCALED"

# Call the UpdateAviationAnno tool
arcpy.aviation.UpdateAviationAnno(in_map, in_anno_layers, aoi_features, apply_scaling)

# Check in extensions
arcpy.CheckInExtension("Aeronautical")

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 ArcGIS Aviation Charting
  • Advanced: 次のものが必要 ArcGIS Aviation Charting

関連トピック