Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

SMAVIA is a popular VMS system developed by Dallmeier. Navtech is an official Dallmeier partner and supports a Dallmeier Integration Plugin for the Witness software system. This plugin manages a connection to the Dallmeier SMAVIA recording server and toggles recording and bookmarks on SMAVIA cameras when Witness detects an alarm.
This document describes the process of setting up this integration.

Technical Overview

When Witness processes targets into tracks, it passes all this information to Witness Canary. Witness Canary then converts this information into a suitable data format to send to external systems.


The data is transmitted as the events occur, leading to near-real time reporting.

The CAT-10 Plugin

Witness Canary supports integration with many different types of external systems through the use of plugins. These are stand-alone software libraries which are dynamically loaded by Canary and contain code which knows how to convert the Witness data into the required format for the external system. Navtech Radar can easily develop bespoke plugins to interface with a specific type of equipment or application. The Asterix CAT-10 plugin has been developed to provide integration to a common standard using in Airport system communication.

The Asterix plugin file is entitled Witness.Plugin.CAT10.dll and must be present in the Witness Plugin folder which is inside the main application folder. 

The plugin can be selected during setup and will automatically be installed in the correct location.

Configuring the CAT-10 Plugin

When the plugin is installed and Canary starts, the plugin configuration settings are saved to the PluginConfiguration.xml file. This file is located in the Witness main application folder. To change the settings this file should be opened in a text editor, such as Notepad, however we would recommend an editor which is XML aware, such as Notepad++.

Once the file is open, locate the CAT10 section, as illustrated below:

Example of CAT-10 Plugin Configuration
<?xml version="1.0" encoding="utf-8"?>
<Config>
  <Plugins>
    <CAT10>
      <PluginConfig>
        <TimerTick>500</TimerTick>
        <SystemIdentificationCode>1</SystemIdentificationCode>
        <UdpServer RemoteIPAddress="239.192.86.0" Enabled="True" Port="8600" />
        <SendCAT10>True</SendCAT10>
        <ListenCAT10>True</ListenCAT10>
        <CAT10SourcePositions>
			<SourcePositions>
				<Sic>23</Sic>
				<Sac>0</Sac>
				<X>10</X>
				<Y>49</Y>
				</SourcePositions>
		</CAT10SourcePositions>
        <HeartbeatInterval>0</HeartbeatInterval>
		<BufferTracks>False</BufferTracks>
      </PluginConfig>
    </CAT10>
  </Plugins>
</Config>

Once you have made changes to the plugin configuration file then you must restart the Canary application / service for the new settings to be applied. No other modules need to be restarted.

The setting options are as follows:

TimerTick

Timer used to control sending status messages and cleaning up buffers in milliseconds. A CAT-10 status message is sent on this timer if Sending CAT10 is enabled.

SystemIdentificationCode

Unique number identifying the Witness system in an Asterix network. SIC Must be smaller or equal to 255. Witness cannot share a SIC with another system.

UdpServer

  • Enabled - Should always be set to true
  • RemoteIPAddress - The IP address used for clients to access the UDP data. Only Multicast IPs (starting in range 224 to 239) are supported.
  • Port - The port used for the UDP communications.

SendCAT10

  • True - Sends all confirmed tracks in Witness as CAT-10 messages to the UdpServer address.
  • False - Tracks are not sent out.

ListenCAT10

  • True - Listens to CAT-10 messages on the udpserver address and port and inserts tracks detected as friendly tracks into Witness.
  • False - Does not listen to CAT-10 messages.

One or both of ListenCAT10 or SendCAT10 should be true.

CAT10SourcePositions

Source positions are used to configure displacements of origins between systems.

  • List of displacement locations based on system SIC and SAC for other systems.
  • SIC: System Identification Code - uniquely identifies each systems within the airport.
  • SAC: should normally be 0 for other systems in the same airport.
  • X: System origin is located east from witness origin by X meters.
  • Y: System origin is located north from witness origin by Y meters.

This does not need to be configured for systems who's origin coincides with Witness origin.

Examples

Example 1: A multilateration detection system has it's origin set at the airport control tower. Witness is configured with origion the control tower as well.

In this case, we do not need a SourcePosition record for the system.


Example 2: A single detector also sends CAT-10 messages relative to its own location - 150 meters north and 200 meters west from the control tower. This detector is assigned SIC153.

For this detector we will need a CAT10SourcePositions record of:

			<SourcePositions>
				<Sic>153</Sic>
				<Sac>0</Sac>
				<X>-200</X>
				<Y>150</Y>
			</SourcePositions>
 

External System tracks should be within Witness radar coverage to appear in Sentinel.


HeartbeatInterval

  • Period, in seconds, between each heartbeat being sent to every connected client. Default is 10 seconds.

BufferTracks

  • Buffer tracks to send in batches on TimerTicks

Related information



  • No labels