ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS for Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Managing airport signs and annotation

  • Requirements for managing airport signs
  • Creating annotation feature class for storing airport sign annotations
  • Creating new annotation for an airport sign feature

The Manage Airport Signs tool allows you to create or edit airport sign data and annotation. The tool meets the FAA's 18C specification (AC 150/5300-18C) for airport sign data storage through an easy-to-use interface. This interface shows a preview and provides integration with annotation creation and updates.

The functionality to view these signs in 3D is also included with the ArcGIS for Aviation solution. In the 3D Support folder in the install directory, there is a rule package that will allow you to render these signs in 3D using either the geoprocessing tools available in ArcScene or the procedural symbology inside ArcGIS Pro. See the documentation regarding using a rule package in the respective technology for more information.

Requirements for managing airport signs

To work with the Manage Airport Signs tool on the Aviation Airports toolbar, the following two feature classes must exist in the Airports database:

  • AirportSign feature class—An existing point feature class within the Airports database.
  • AirportSign_A feature class—This feature class must be created within the Airports database with a projected coordinate system applied.

Creating annotation feature class for storing airport sign annotations

  1. Create a new annotation feature class with the name AirportSign_A.
  2. Link to the AirportSign feature class.
  3. Set a Reference Scale of 1:1000.
  4. Ensure the new annotation feature class is using the Maplex Label Engine.

    注:

    Once the annotation class is created, set the rest of the parameters in the annotation class properties.

  5. Create two annotation classes, and label them Front and Back.
  6. Change the label field:
    1. For the back annotation class: AirportSignMsgBack
    2. For the front annotation class: AirportSignMsgFront
  7. Set the default font to SimHei, size 8.
  8. To enable the use of leader lines between the sign annotation and associated Airport Sign point click Leader and choose from the options.
  9. Uncheck Accent bar and reduce Gap to 0.00

    注:

    If you have created sign annotation without leaders configured before the 10.4.1 release, all annotation features must be deleted and recreated to properly display the leader lines.

  10. Set Placement Properties to determine initial annotation placement.
    1. Under Placement Properties, set the Position to South for the Front annotation class, and North for the Back annotation class.
    2. Un-check Stack label.
    3. Enter a Label Offset value of 50 points.
    4. Click Properties > Label Position > Label Offset
    5. Check the box to Measure Offset from the exact symbol outline.

    注:

    Symbol text alignment is automatically set by the Manage Airport Signs tool with Vertical Alignment to Bottom and Horizontal Alignment to Center. These will override any settings present in this annotation class.

  11. Add an SQL query to each annotation class to ensure the AirportSignMsg fields are not null or don't contain an empty string.

    注:

    SQL uses two single quotation marks, with no space between them, to select an empty string.

    1. For the Back annotation class: AIRPORTSIGNMSGBACK IS NOT NULL AND AIRPORTSIGNMSGBACK <> ''
    2. For the Front annotation class: AIRPORTSIGNMSGFRONT IS NOT NULL AND AIRPORTSIGNMSGFRONT <> ''
  12. Add the label expression to the Front and Back classes.
    1. Open Expression.
    2. Check the Advanced checkbox and paste the expression replacing the function already generated.

      注:

      In this function, ensure Front is using the AirportSignMsgFront field and Back is using the AirportSignMsgBack field.

  13. Click Next on the next two dialog boxes.
  14. Click Finish to create the annotation feature class.

    The annotation feature class to store the airport sign annotations is created in the geodatabase.

Function FindLabel ( [AIRPORTSIGNMSGBACK] )	'For the Front annotation class, change to AIRPORTSIGNMSGFRONT
  FindLabel  = GetFormattedString ( [AIRPORTSIGNMSGBACK] ) 'For the Front annotation class, change to AIRPORTSIGNMSGFRONT
End Function

Function GetFormattedString(Text)
    Set myRegEx = New RegExp
    myRegEx.Global = True
    myRegEx.IgnoreCase = True
    myRegEx.Pattern = "\[(.*?)\]([^\[]*)"
    Set myMatches = myRegEx.Execute(Text)
    If myMatches.Count > 0 Then
        For Each myMatch In myMatches
          GetFormattedString = GetFormattedString & GetString(myMatch)
        Next
    Else
        GetFormattedString = "Error"
    End If
End Function

Function GetString(myMatch)

lSignType = CLng(myMatch.SubMatches(0))

Text = myMatch.SubMatches(1)

sBackground = "<BGD red='255' green='0' blue='0'>"
sTextColor = "<clr red='0' green='0' blue='0'>"
sFont = "name = 'SimHei'>"
sFontAirportSign = "name = 'Esri Airport Sign' size='9.5'>"

Select Case lSignType
    Case 0:		'Direction sign
        sBackground = "<BGD red='255' green='255' blue='0' left='2' right='2'>"
        sTextColor = "<clr red='0' green='0' blue='0'>"
	Case 2:
        sBackground = "<BGD red='255' green='255' blue='255' left='2' right='2'>"
        sTextColor = "<clr red='0' green='0' blue='0'>"
    Case 3:		'Location sign
        sBackground = "<BGD red='0' green='0' blue='0' left='2' right='2'>"  'Add inside bracket to create yellow border inside signs: outline_red='255' outline_green='255' outline_blue='0' outline_width='0.5' outline_margin='2'
        sTextColor = "<clr red='255' green='255' blue='0'>"
    Case 4:		'Mandatory sign
        sBackground = "<BGD red='255' green='0' blue='0' left='2' right='2'>"
        sTextColor = "<clr red='255' green='255' blue='255'>"
	Case 5:		'No Entry sign
		sBackground = "<BGD red='255' green='255' blue='255' width='-1' halo='.6'>"
		sTextColor = "<clr red='255' green='0' blue='0'>"
		sFont = sFontAirportSign		
		Text = "O"			'You can use the letter N for a no entry sign with text stating No Entry
	Case 6:		'Runway Critical sign
		sBackground = "<BGD red='255' green='255' blue='0' width='0' Valign='Bottom'>"
		sTextColor = "<clr red='0' green='0' blue='0'>"
		sFont = sFontAirportSign
		Text = "IIII"		'Add the number of Is for as many repetitions as you need to see in the symbol
    Case 7:		'Runway Distance Remaining sign
        sBackground = "<BGD red='0' green='0' blue='0' left='2' right='2'>"
        sTextColor = "<clr red='255' green='255' blue='255'>"
	Case 8:		'Runway Safety Area Boundary sign
		sBackground = "<BGD red='255' green='255' blue='0' width='0' Valign='Bottom'>"
		sTextColor = "<clr red='0' green='0' blue='0'>"
		sFont = sFontAirportSign
		Text = "RRRR"		'Add the number of Rs for as many repetitions as you need to see in the symbol
	Case 9:		'Taxiway End sign
		sBackground = "<BGD red='255' green='255' blue='0' width='0' Valign='Bottom'>"
		sTextColor = "<clr red='0' green='0' blue='0'>"
		sFont = sFontAirportSign
		Text = "T"
    Case 10:	'Terminal sign
        sBackground = "<BGD red='0' green='0' blue='255' left='2' right='2'>"
        sTextColor = "<clr red='255' green='255' blue='255'>"
	Case 11:	'Vehicle Stop sign
 sBackground = "<BGD red='255' green='255' blue='255' width='-1' halo='.4'>"
        sTextColor = "<clr red='255' green='0' blue='0'>"
        sFont = sFontAirportSign
		              Text = "S"
	Case 12:	'Vehicle Yield sign
        sBackground = "<BGD red='255' green='255' blue='255' width='-1' halo='.9'>"
        sTextColor = "<clr red='168' green='0' blue='0'>"
		sFont = sFontAirportSign
		Text = "Y"
    Case Else
        sBackground = "<BGD red='255' green='255' blue='0' left='2' right='2'>"
        sTextColor = "<clr red='0' green='0' blue='0'>"
End Select
Text = Replace(Text, "&#000D;", vbNewLine)
If (IsNull(Text) Or IsEmpty(Text) Or Text = "") Then
    Text = " "
End If
GetString = sBackground & "<fnt " & sFont & sTextColor & Text & "</clr></fnt></BGD>"
End Function

Custom Tags

The Manage Airport Signs tool uses custom tags within the lxp to display airport signs as they would look in the real world. Using the tags to change the look of signs gives display flexibility that is unique to airports and their needs.

  • sBackground = "<BGD: tags to control the background for the sign.
    • red - red rgb value for sign fill
    • blue - blur rgb value for sign fill
    • green - green rgb value for sign fill
    • left - left margin spacing between sign box and text
    • right - right margin spacing between sign box and text
    • halo - point size of the halo surrounding the sign symbol (only applies to No Entry, Stop and Yield sign types)
    • width - by default the annotation sign box has a black outline. Setting this to -1 removes outline completely. Setting this to 0 leaves an outline.
    • Valign - controls vertical alignment of the symbol within the sign box (only applies to Runway Critical, Runway Safety Area and Taxiway End sign types)
    • outline_red - red rgb value for outline within the sign border (specifically applies to Location sign type)
    • outline_green - green rgb value for outline within the sign border (specifically applies to Location sign type)
    • outline_blue - blue rgb value for outline within the sign border (specifically applies to Location sign type)
    • outline_width - controls thickness of the outline within the sign border (specifically applies to Location sign type)
    • outline_margin - controls location of outline within the sign border, whether closer to center of sign or closer to edges of the sign (specifically applies to Location sign type)
  • sFont = sFontAirportSign: overrides the default font for the annotation with the Esri Aiport Sign font (only applies to No Entry, Runway Critical, Runway Safety Area, Taxiway End, Vehicle Stop, and Vehicle Yield sign types).

Managing settings

Displays the Annotation Feature Class settings. These may be changed to point to the correct Annotation Feature Class, and the correct attribute classes for the front and back of the signs. This only needs to be set once, so it may be minimized to allow room to configure other settings.

Manage Airport Signs settings

  • Annotation feature class—The AirportSign_A feature class within the Airports database that will store the AirportSign annotation.
  • Front Annotation Class—Used to display the Front message of the sign.
  • Back Annotation Class—Used to display the Back message of the sign.

Managing AirportSign feature class attributes

The values in the fields are populated from the respective attribute fields in the AirportSign feature class. These values can be updated in the tool dialog box and saved in the geodatabase.

AirportSign feature classes

  • Direction—AirportSignDirection field.
  • Height Value—AirportSignHeightValue field.
  • Purpose Code—AirportSignPurposeCode field.
  • Type Code—AirportSignTypeCode field.

Managing sign previews (Front and Back)

The Front and Back previews provide a visual of how the sign will look in the annotation as well as the encoding that will be written into the database fields.

Manage Airport Signs dialog box

  • Panels— A description of the AirportSignMsgBack and AirportSignMsgFront fields.
  • Sign Type—Drop-down list containing approved types of signs.
  • Text—The text messaging shown on the sign.
  • Add Arrow—Allows for arrow text to be entered.
    注:

    It may be helpful to be familiar with the FAA's 18C specifications for AirportSign features to fully understand the types of signs to be created and the encoded values written to the AirportSignMsgFront and AirportSignMsgBack attributes. Adding more than one entry to each panel allows you to create complex signs containing more than one type of sign and associated messaging.

Creating new annotation for an airport sign feature

  1. 启动 ArcMap。
  2. Add the AirportSign and AirportSign_A feature classes.
  3. Ensure the data frame is using the Maplex Label Engine.
  4. On the main menu, click Customize > Toolbars > Aviation Airports.
  5. Select a single AirportSign point feature using the Edit tool Edit Toolon the Aviation Editing toolbar.
  6. Start editing the AirportSign point feature class.

    注:

    You can use the editing tools to create a new AirportSign point feature and select the new feature.

  7. Click the Manage Airport Signs button Manage Airport Signs on the Aviation Airports toolbar.

    The Manage Airport Signs window appears; it is dockable and remains active while working within the map.

  8. Click the Settings button to expand the section and ensure the selections are correct for the Annotation Feature Class, Front Annotation Class and Back Annotation Class options.

    注:

    Click the button again to minimize the section.

  9. If necessary click Direction to change the value for direction of the selected airport sign.
  10. If necessary click Height Value to change the value for the height of the selected airport sign.
  11. Optionally click the Purpose Code drop-down to select or change the purpose code of the selected airport sign point.
  12. Optionally click the Type Code drop-down to select or change the type code of the selected airport sign point.
  13. Click the Sign Type drop-down and select an option from the list.
  14. 注:

    Add Arrow is enabled only when you choose [0] Direction sign-Black text on a yellow background in the drop-down.

  15. Enter the annotation text in the Text field.
  16. 单击添加。
  17. Sign type and text is added in the Panels and the Preview is updated with the graphic of the annotation.
  18. Repeat steps 14 and 15 to add additional Panels items to the sign annotation.
  19. If necessary highlight an item in the Panels and use the Up and Down arrows to re-order.
  20. Click Remove to delete any single Panels item.
  21. Repeat steps 14 through18 to generate a preview of the back panel annotation.
  22. If the front and back panel previews are satisfactory, click Create Annotation.

    Annotations for airport sign are created in the AirportSign_A feature class and displayed on the map. Also, the attributes AirportSignMsgBack and AirportSignMsgfront in the AirportSign feature class are populated.

    注:

    If the annotation is not updated in your map, refresh map view. The updated annotation will be drawn.

  23. Use Edit Annotation tool from the Aviation Annotation toolbar to make placement changes if needed.
  24. Use the tools on the Aviation Editing toolbar to save edits and end the edit session.

Editing airport sign data

  1. 启动 ArcMap。
  2. Add the AirportSign and AirportSign_A feature classes.
  3. Start editing on the AirportSign point feature class.
  4. Ensure the AirportSign feature to edit is selected.
  5. On the main menu, click Customize > Toolbars > Aviation Airports.
  6. Click the Manage Airport Signs button Manage Airport Signs on the Aviation Airports toolbar.

    The Manage Airport Signs window appears; it is dockable and remains active while working within the map.

  7. Click the Settings button and ensure correct settings for the Annotation Feature Class, Front Annotation Class and Back Annotation Class options.

    注:

    Click the button again to minimize the section.

  8. If necessary, click Direction to change the value for the direction of the selected airport sign.
  9. If necessary, click Height Value to change the value for the height of the selected airport sign.
  10. Optionally click the Purpose Code drop-down arrow to choose or change the purpose code of the selected airport sign point.
  11. Optionally click the Type Code drop-down arrow to choose or change the type code of the selected airport sign point.
  12. For each of the front and back panels, click the Sign Type drop-down arrow and choose a sign type.
  13. If necessary, enter a description in the Text text box.
  14. Click Update to save changes.
  15. Click Remove to delete an item from the list.

    The changes will show in the Preview.

  16. Click Apply.

    Changes will be written to the attribute table.

  17. Refresh the map display to see the annotation changes.
  18. Use the tools on the Aviation Editing toolbar to save edits and end the edit session.

Adding new data to airport sign

  1. 启动 ArcMap。
  2. Add the AirportSign and AirportSign_A feature classes.
  3. On the main menu, click Customize > Toolbars > Aviation Airports.
  4. Start editing on the AirportSign point feature class.
  5. Select a single AirportSign point feature using the Edit tool on the Aviation Editing toolbar.
  6. 注:
    You can use the editing tools to create a new AirportSign point feature, and select the new feature.
  7. Click the Manage Airport Signs button Manage Airport Signs on the Aviation Airports toolbar.

    The Manage Airport Signs dialog box appears; it is dockable and remains active while working within the map.

  8. Click the Settings and ensure correct settings for the Annotation Feature Class, Front Annotation Class and Back Annotation Class options.

    注:

    Click the button again to minimize the section.

  9. If necessary, click Direction to change the value for the direction of the selected airport sign.
  10. If necessary, click Height Value to change the value for the height of the selected airport sign.
  11. Optionally click the Purpose Code drop-down arrow to choose or change the purpose code of the selected airport sign point.
  12. Optionally click the Type Code drop-down arrow to choose or change the type code of the selected airport sign point.
  13. For each of the front and back panels, click Sign Type drop-down arrow and choose a sign type.
  14. If necessary enter a description in Text text box.
  15. 单击添加。
  16. If necessary, highlight the Panels entry and use the Up and Down arrows to reorder.

    The changes will update in Preview.

  17. Click Apply.

    The new data is written to the attribute table.

  18. Use the tools on the Aviation Editing toolbar to save edits and end the edit session.

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS 平台

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • Esri 博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2020 Esri. | 隐私政策 | 法律声明