區域

簡化版預報,以多邊形表示,並以 GeoJSON 多重多邊形格式呈現凝結尾跡迴避區域。

每趟航班的飛行高度都會有凝結尾雲迴避區域的嚴重程度評分,範圍從 1 到 4;1 代表輕微風險,4 代表極高凝結尾雲風險。

資料格式

區域採用 GeoJSON 格式,內含 FeatureCollection

{
  "type": "FeatureCollection",
  "features": [
      {
        "type": "Feature",
        "properties": {
            "time": "<ISO 8601 datetime>",
            "flightLevel": <int>,
            "threshold": <int>,
            "forecast_reference_time": "<ISO 8601 datetime>"
        },
        "geometry": {
          "type": "MultiPolygon",
          "coordinates": [...]
        }
      }
  ]
}