This is an old revision of the document!


atc.xml

A position is an individual controller connected to IVAO. Theoretically a position will be able to activate a number of sectors simultaneously which will be individually visible online.

The atc.xml file is located in the fir directory

XML structure

Fields may be added in future

Elementatc
ValueFormatDescription
id string ATC position id
long string position identification (long format) - used in labels, flight lists, ….
short string position identification (short format) - used in labels, flight lists, …. (cfr. label owner tag)
freq frequency Frequency of the position (for legacy support)
avbl true/false ATC position available for login (boolean: true/false)
callsign string radio callsign of the ATC position, used in ATIS etc,…
name string Display name used in the launcher, (defaults to callsign if not present)
label string label definition to be used for this specific ATC position (default=“default”)
theme string SDD theme for this specific ATC position (default=“default”)
preset string map preset to load
atis string DEPARTURE (for departure ATIS), ARRIVAL (for arrival ATIS), BOTH (default value, combined departure and arrival ATIS), MINIMAL (no actual ATIS, callsign and voice server only (for ACC sectors etc.)

The avbl attribute indicates if the ATC position is available for login in this FIR. Positions which are not available (false) are used to define position identifications for foreign/neighbouring ATC positions.

Positions which control airspace (everything except GND/DEL) need to be assigned one or more sectors, in the open <atc> tag.

Elementsector
ValueFormatDescription
id string sector ID
active true/false whether or not this sector is visible as active
fir string the FIR ID in the sectors definition

Example

<atc id="EBBU_W_CTR" long="WH" short="W" freq="131.100" avbl="true" callsign="Brussels Control" label="canac2" theme="canac2" preset="w-acc">
  <sector id="WHS"	active="true"	fir="EBBU" />
  <sector id="MKOK"	active="true"	fir="EBBU" />
  <sector id="APP"	active="false"	fir="EBBU" />
</atc>
<atc id="EBBR_GND" long="GND" short="G" freq="121.875" avbl="true" callsign="Brussels Ground" label="canac2" theme="twr" preset="ebbr"/>
<atc id="EGTT_CTR" long="TT" short="TT" avbl="false" callsign="London Control"/>

Back