-
Notifications
You must be signed in to change notification settings - Fork 0
Datafeed API (VATGER)
Nikolas Görlitz edited this page May 10, 2023
·
1 revision
The following routes are specific to VATSIM Germany in that the filter methods used only apply to ATC positions that are in Germany, or pilots flying over Germany.
Returns all controllers of the datafeed which match the following conditions:
- Callsign starts with "ED" or "ET"
- Frequency not equal to "199.998"
Response:
{
data: Array<DatafeedModelController>,
length: number,
failed: boolean
}
Returns all pilots of the datafeed which match the following conditions:
- Longitude & Latitude lie within a specified polygon roughly matching Germany
Response:
{
data: Array<DatafeedModelPilot>,
length: number,
failed: boolean
}
Returns all ATIS stations of the datafeed which match the following conditions:
- Callsign starts with "ED" or "ET"
- Frequency not equal to "199.998"
Response:
{
data: Array<DatafeedModelAtis>,
length: number,
failed: boolean
}