For the complete documentation index, see llms.txt. This page is also available as Markdown.

GPS

GPS/GNSS interference indicators aggregated from aircraft-reported navigation accuracy (NACp).

List GPS interference hexes

get
/v1/gps/jam

Returns hexagonal cells of aggregated GPS/GNSS interference indicators — aircraft-reported navigation accuracy (NACp) — within a bounding box, or globally when no box is given. Accepts an optional date (YYYY-MM-DD); defaults to the latest data. Low reported accuracy indicates degraded performance, not necessarily jamming.

Authorizations
x-api-keystringRequired

API key for accessing protected endpoints

Query parameters
min_latnumber · min: -90 · max: 90Optional
max_latnumber · min: -90 · max: 90Optional
min_lngnumber · min: -180 · max: 180Optional
max_lngnumber · min: -180 · max: 180Optional
datestring · dateOptionalPattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$
Responses
200

Default Response

application/json
lastUpdatedstringRequired
get/v1/gps/jam
GET /v1/gps/jam HTTP/1.1
Host: localhost:3002
x-api-key: YOUR_API_KEY
Accept: */*
{
  "hexes": [
    {
      "h3Index": "text",
      "sampleCount": 1,
      "aircraftCount": 1,
      "npAvg": 1
    }
  ],
  "lastUpdated": "text"
}

Last updated

Was this helpful?