Aviation Weather Center · Example Payload

Aviationweather Tcf Example

AviationWeatherGovernmentNOAANWSMETARTAFPIREPSIGMETAIRMETOpen DataPublic APIs

Aviationweather Tcf Example is an example object payload from Aviation Weather Center, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationsummaryrequestresponse

Example Payload

Raw ↑
{
  "operation": "GET /api/data/tcf",
  "summary": "TFM Convective Forecast (GeoJSON)",
  "request": {
    "method": "GET",
    "url": "https://aviationweather.gov/api/data/tcf?format=geojson"
  },
  "response": {
    "status": 200,
    "contentType": "application/geo+json",
    "body": {
      "type": "FeatureCollection",
      "features": [
        {
          "type": "Feature",
          "properties": {
            "fcstHr": 2,
            "validTime": 1704380400,
            "issueTime": 1704378600,
            "coverage": "MED",
            "tops": 35000,
            "dir": "E",
            "spd": 30,
            "lineWidth": null
          },
          "geometry": {
            "type": "Polygon",
            "coordinates": [[[-92.0,32.0],[-91.0,32.0],[-91.0,33.0],[-92.0,33.0],[-92.0,32.0]]]
          }
        }
      ]
    }
  }
}