Regions

予測を簡略化してポリゴン化したバージョン。GeoJSON マルチポリゴン形式で飛行機雲回避領域を表します。

航跡回避領域は、各飛行高度で 1 ~ 4 の重大度レベルで評価されます。1 は軽度のリスク、4 は極度の航跡リスクを表します。

データ形式

地域は FeatureCollection を含む GeoJSON 形式です。

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