v1

latestOpenAPI 3.0.22026-07-132450182.6 KB
Flight Restrictions

Retrieve flight restrictions applicable within given distance of location.

Retrieve Flight Restrictions applicable within given distance of a point. Request body parameters are:

  • latitude: WGS84 latitude coordinate of your selected point, in decimal degrees
  • longitude: WGS84 longitude coordinate of your selected point, in decimal degrees
  • distance: distance in meters (max allowed value is 25000)
post/us/v1/restrictions/distance-query

Headers

x-api-keystring

Request body

Example request

{
  "longitude": -105.416,
  "latitude": 35.753,
  "distance": 5000
}

Response

A GeoJSON FeatureCollection, one Feature for each restriction.

foundobject required

Example response

{
  "found": {
    "type": "FeatureCollection",
    "features": [
      {
        "type": "Feature",
        "geometry": {
          "type": "GeometryCollection",
          "geometries": [
            {
              "type": "Polygon",
              "heightInformation": {
                "upperLevel": "17500",
                "uomUpperLevel": "FT",
                "lowerLevel": "0",
                "uomLowerLevel": "FT"
              },
              "coordinates": [
                [
                  [
                    -105.679167,
                    36.016667
                  ],
                  [
                    -105.479167,
                    35.95
                  ],
                  [
                    -105.35,
                    35.870833
                  ],
                  [
                    -105.104167,
                    35.795833
                  ],
                  [
                    -105.183333,
                    35.666667
                  ],
                  [
                    -105.158333,
                    35.4375
                  ],
                  [
                    -105.666667,
                    35.508333
                  ],
                  [
                    -105.679167,
                    36.016667
                  ]
                ]
              ]
            }
          ]
        },
        "properties": {
          "notam_number": "2/4399",
          "startDateTime": "2022-05-16T06:00:00.000Z",
          "endDateTime": "2022-06-17T03:00:00.000Z",
          "text": "NM..AIRSPACE LAS VEGAS, NM..TEMPORARY FLIGHTRESTRICTIONS WI AN AREA BOUNDED BY360100N1054045W (FTI296034.1) TO355700N1052845W (FTI303024.3) TO355215N1052100W (FTI308016.5) TO354745N1050615W (FTI357008.4) TO354000N1051100W (FTI270002.4) TO352615N1050930W (FTI172013.2) TO353030N1054000W (FTI238027.5) TO POINT OF ORIGINSFC-17500FT. TO PROVIDE A SAFE ENVIRONMENT FOR FIRE FIGHTINGACFT OPS. PURSUANT TO 14 CFR SECTION 91.137(A)(2) TEMPORARYFLIGHT RESTRICTIONS ARE IN EFFECT. SANTA FE DISPATCH CENTERTEL 505-438-5600 OR FREQ 118.250/SOUTHERN ZONE HERMITSPEAK/CALF CANYON FIRE IS IN CHARGE OF THE OPS. ALBUQUERQUE/ZAB/ ARTCC TEL 505-856-4591 IS THE FAA CDN FACILITY."
        }
      },
      {
        "type": "Feature",
        "geometry": {
          "type": "GeometryCollection",
          "geometries": [
            {
              "type": "Polygon",
              "heightInformation": {
                "upperLevel": "17500",
                "uomUpperLevel": "FT",
                "lowerLevel": "0",
                "uomLowerLevel": "FT"
              },
              "coordinates": [
                [
                  [
                    -105.504167,
                    36.516667
                  ],
                  [
                    -105.229167,
                    36.529167
                  ],
                  [
                    -105.2375,
                    36.4625
                  ],
                  [
                    -104.929167,
                    36.370833
                  ],
                  [
                    -105.104167,
                    35.795833
                  ],
                  [
                    -105.35,
                    35.870833
                  ],
                  [
                    -105.479167,
                    35.95
                  ],
                  [
                    -105.679167,
                    36.016667
                  ],
                  [
                    -105.504167,
                    36.516667
                  ]
                ]
              ]
            }
          ]
        },
        "properties": {
          "notam_number": "2/4451",
          "startDateTime": "2022-05-16T06:00:00.000Z",
          "endDateTime": "2022-06-17T03:00:00.000Z",
          "text": "NM..AIRSPACE 34NM N LAS VEGAS, NM..TEMPORARY FLIGHTRESTRICTIONS WI AN AREA DEFINED AS363100N1053015W (CIM260030.6) TO363145N1051345W (CIM264017.4) TO362745N1051415W (CIM251017.8) TO362215N1045545W (CIM188007.7) TO354745N1050615W (FTI357008.4) TO355215N1052100W (FTI308016.5) TO355700N1052845W (FTI303024.3) TO360100N1054045W (FTI296034.1) TO POINT OF ORIGIN SFC-17500FT TOPROVIDE A SAFE ENVIRONMENT FOR FIRE FIGHTING ACFT OPS. PURSUANT TO14 CFR SECTION 91.137(A)(2) TEMPORARY FLIGHT RESTRICTIONS ARE INEFFECT. SANTA FE DISPATCH CENTER TEL 505-438-5600 OR FREQ125.875/CENTRAL ZONE HERMITS PEAK/CALF CANYON FIRE IS IN CHARGE OFTHE OPS. ALBUQUERQUE /ZAB/ ARTCC TEL 505-856-4591 IS THE FAA CDNFAC."
        }
      }
    ]
  }
}