POST api/componentgeotiffdaily/identify_list_geotiff
lấy thông tin danh sách dữ liệu pm25 từ mô hình wrf-chem hoặc mem với tọa độ {x, y}, thời gian yêu cầu lấy dữ liệu (ngày || giờ) cho trước, số ngày trước và sau thời gian yêu cầu
Request Information
URI Parameters
None.
Body Parameters
GeoTiffIdentifyParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| x | decimal number |
None. |
|
| y | decimal number |
None. |
|
| groupcomponent_id | string |
None. |
|
| predays |
số ngày trước đó so với date_request |
integer |
None. |
| nextdays |
số ngày sau đó so với date_request |
integer |
None. |
| date_request |
ngày yêu cầu để lấy dữ liệu: yyyy-mm-dd |
string |
None. |
| lang_id |
vi || en |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"x": 1.1,
"y": 2.1,
"groupcomponent_id": "sample string 3",
"predays": 4,
"nextdays": 5,
"date_request": "sample string 6",
"lang_id": "sample string 7"
}
application/xml, text/xml
Sample:
<GeoTiffIdentifyParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Apom_API.Models"> <date_request>sample string 6</date_request> <lang_id>sample string 7</lang_id> <groupcomponent_id>sample string 3</groupcomponent_id> <nextdays>5</nextdays> <predays>4</predays> <x>1.1</x> <y>2.1</y> </GeoTiffIdentifyParameters>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
[
{},
{}
]
application/xml, text/xml
Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <anyType /> <anyType /> </ArrayOfanyType>