v1

latestOpenAPI 3.0.22026-07-132450182.6 KB
Flight Restrictions

Retrieve flight restrictions applicable within given area.

Retrieve Flight Restrictions located within given area. Request body parameters are:

post/us/v1/restrictions/polygon-query

Headers

x-api-keystring

Request body

polyobject required

Example request

{
  "poly": {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -155.426425,
          19.545118
        ],
        [
          -155.59946,
          19.440516
        ],
        [
          -155.348422,
          19.335847
        ],
        [
          -155.426425,
          19.545118
        ]
      ]
    ]
  }
}

Response

A GeoJSON FeatureCollection, one Feature for each restriction.

foundobject required

Example response

{
  "found": {
    "found": {
      "type": "FeatureCollection",
      "features": [
        {
          "type": "Feature",
          "geometry": {
            "type": "GeometryCollection",
            "geometries": [
              {
                "type": "Polygon",
                "heightInformation": {
                  "upperLevel": "1500",
                  "uomUpperLevel": "FT",
                  "lowerLevel": "0",
                  "uomLowerLevel": "FT"
                },
                "coordinates": [
                  [
                    [
                      -155.295,
                      19.424444
                    ],
                    [
                      -155.258333,
                      19.428611
                    ],
                    [
                      -155.274167,
                      19.343611
                    ],
                    [
                      -155.366111,
                      19.368889
                    ],
                    [
                      -155.295,
                      19.424444
                    ]
                  ]
                ]
              },
              {
                "type": "Polygon",
                "heightInformation": {
                  "upperLevel": "1500",
                  "uomUpperLevel": "FT",
                  "lowerLevel": "0",
                  "uomLowerLevel": "FT"
                },
                "coordinates": [
                  [
                    [
                      -155.471389,
                      19.687222
                    ],
                    [
                      -155.395833,
                      19.677778
                    ],
                    [
                      -155.546389,
                      19.421667
                    ],
                    [
                      -155.661944,
                      19.465
                    ],
                    [
                      -155.471389,
                      19.687222
                    ]
                  ]
                ]
              }
            ]
          },
          "properties": {
            "notam_number": "2/1356",
            "startDateTime": "2022-09-21T22:30:00.000Z",
            "endDateTime": "2022-12-20T23:59:00.000Z",
            "text": "HI..AIRSPACE KILAUEA, HI..TEMPORARY FLIGHTRESTRICTIONS WI AN AREA DEFINED AS192528N1551742W (ITO211024.0) TO192543N1551530W (ITO208022.4) TO192037N1551627W (ITO202027.1) TO192208N1552158W (ITO213029.1) TOPOINT OF ORIGIN. SFC-1500FT AGL VOLCANIC ACT.PURSUANT TO 14 CFR SECTION 91.137(A)(1) TEMPORARY FLIGHTRESTRICTIONS ARE IN EFFECT. ONLY RELIEF ACFT OPS UNDERDIRECTION OF HAWAII VOLCANOES NATIONAL PARK SERVICE ARE AUTHIN THE AIRSPACE. HAWAII VOLCANOES NATIONAL PARK SERVICE TEL808-985-6170 IS IN CHARGE OF ON SCENE EMERG RESPONSE ACT.HONOLULU /ZHN/ ARTCC TEL 808-840-6201 IS THE FAA CDNFACILITY."
          }
        },
        {
          "type": "Feature",
          "geometry": {
            "type": "GeometryCollection",
            "geometries": [
              {
                "type": "Polygon",
                "heightInformation": {
                  "upperLevel": "1500",
                  "uomUpperLevel": "FT",
                  "lowerLevel": "0",
                  "uomLowerLevel": "FT"
                },
                "coordinates": [
                  [
                    [
                      -155.295,
                      19.424444
                    ],
                    [
                      -155.258333,
                      19.428611
                    ],
                    [
                      -155.274167,
                      19.343611
                    ],
                    [
                      -155.366111,
                      19.368889
                    ],
                    [
                      -155.295,
                      19.424444
                    ]
                  ]
                ]
              },
              {
                "type": "Polygon",
                "heightInformation": {
                  "upperLevel": "1500",
                  "uomUpperLevel": "FT",
                  "lowerLevel": "0",
                  "uomLowerLevel": "FT"
                },
                "coordinates": [
                  [
                    [
                      -155.471389,
                      19.687222
                    ],
                    [
                      -155.395833,
                      19.677778
                    ],
                    [
                      -155.546389,
                      19.421667
                    ],
                    [
                      -155.661944,
                      19.465
                    ],
                    [
                      -155.471389,
                      19.687222
                    ]
                  ]
                ]
              }
            ]
          },
          "properties": {
            "notam_number": "2/9210",
            "startDateTime": "2022-12-02T05:00:00.000Z",
            "endDateTime": "2022-12-08T23:59:00.000Z",
            "text": "HI..AIRSPACE MAUNA LOA, HI..TEMPORARY FLIGHTRESTRICTIONS WI AN AREA DEFINED AS194114N1552817W (KOA082032.5) TO194040N1552345W (KOA083036.8) TO192518N1553247W (KOA111033.3) TO192754N1553943W (KOA114026.4) TO POINT OF ORIGINSFC-1500FT AGL VOLCANIC ACTIVITY. PURSUANT TO 14 CFR SECTION91.137(A)(1) TEMPORARY FLIGHT RESTRICTIONS ARE IN EFFECT. ONLYRELIEF AIRCRAFT OPERATIONS UNDER DIRECTION OF HAWAII VOLCANOESNATIONAL PARK ARE AUTHORIZED IN THE AIRSPACE. HAWAII VOLCANOESNATIONAL PARK TELEPHONE 808-985-6170 IS IN CHARGE OF ON SCENEEMERGENCY RESPONSE ACTIVITY. HONOLULU /ZHN/ ARTCC TELEPHONE808-840-6201 IS THE FAA COORDINATION FACILITY."
          }
        }
      ]
    }
  }
}