This is an old revision of the document!


sddcolors.xml

The sddcolors.xml file is used define a RGB color for each of the color codes used to draw elements on the SDD (radar display).

The colors are defined per FIR definition and allow you to define a look and feel as close as possible to the real life SDD for each FIR.

Root Element<colors>
AttributeRemarks
track_unconcernedStandard color
track_concerned color for aircraft with station set as NEXT
track_assumed color for aircraft assumed by station
track_released color for aircraft released by station
track_ground color for aircraft where dep/arr state has not been detected
track_ground_arr color for arriving aircraft
track_ground_dep color for departing aircraft

*The track_unconcerned and track_ground* colours *must* be defined for labels to be displayed.

Root Elementcolors
Elementcolor
AttributeFormatRemarks
idstringcolor name, used as color identification in the maps.
rbyteRGB color code (0-255)
gbyteRGB color code (0-255)
bbyteRGB color code (0-255)
abyteRGB opacity code (0-255)
brtstringValue of Brightness group
textstringtext to display for this color in the color editor

Example

<colors>
    <color id="track_pointout" r="255" g="255" b="0"   brt="tracks" text="track - point out" />
    <color id="track_rof"      r="87"  g="224" b="79"  brt="tracks" text="track - ROF indication" />
    <color id="qdm"            r="255" g="105" b="220" brt="tracks" text="QDM" />
    <color id="sep"            r="255" g="105" b="220" brt="tracks" text="SEP tool" />
</colors>

Back