Regions

简化且多边形化的预测版本,以 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": [...]
        }
      }
  ]
}