POST api/componentgeotiffdaily/identify_geotiff

lấy thông tin dữ liệu (pm25, nhiệt độ, độ ẩm) từ mô hình wrf-chem hoặc mem với mã groupcomponent_id, tọa độ {x, y} và thời gian yêu cầu lấy dữ liệu (ngày || giờ) cho trước

Request Information

URI Parameters

None.

Body Parameters

GeoTiffIdentifyParameters
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GeoTiffIdentifyParameters'.

Response Information

Resource Description

Collection of Object

None.

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>