航空taf数据业务数据检索,根据报文时间范围、报文类型、机场代码、字段检索(报文类型、机场代码可选)
<h5>简要描述</h5>
<ul>
<li>航空taf数据业务数据检索,根据报文时间范围、报文类型、机场代码、字段检索(报文类型、机场代码可选)</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://data-serve.ecoweather.cn/aviationTafMessage/queryAviationTafMessage</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">startTime</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>报文开始时间</td>
</tr>
<tr>
<td style="text-align: left;">endTime</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>报文结束时间</td>
</tr>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>类型</td>
</tr>
<tr>
<td style="text-align: left;">airportCode</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>机场代码</td>
</tr>
<tr>
<td style="text-align: left;">fields</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">List<string></td>
<td>字段集</td>
</tr>
</tbody>
</table>
<h5>参数示例</h5>
<pre><code>{
"startTime":"2020-08-11 12:08:00",
"endTime":"2020-08-11 13:02:00",
"fields":["air_code","wind_angle","clouds","weather_code","gusting"],
"type":"TAF",
"airportCode":"ZLYA"
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
"success": true,
"code": 20000,
"message": "成功",
"data": {
"fieldsList": [
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
},
{
"air_code": "ZLYA",
"wind_angle": 80,
"gusting": 0,
"clouds": "SCT030",
"weather_code": ""
}
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">fieldsList</td>
<td style="text-align: left;">List<Map<String,Object>></td>
<td>符合条件的字段集信息</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>撰写人:闫雪敏
数据库表结构参考:<a href="https://www.showdoc.com.cn/ytq?page_id=5208929715645388">https://www.showdoc.com.cn/ytq?page_id=5208929715645388</a></li>
</ul>