GET api/EnvironmentWindDetail/{Code}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Code | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Environment_WindDetailNoiseName | Description | Type | Additional information |
---|---|---|---|
SensorID | string |
None. |
|
RecordTime | date |
None. |
|
WindSpeed | decimal number |
None. |
|
WindDirection | decimal number |
None. |
|
WindGustSpeed | decimal number |
None. |
|
WindGustDirection | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "SensorID": "sample string 1", "RecordTime": "2024-11-21T09:40:47.9658244+00:00", "WindSpeed": 3.1, "WindDirection": 4.1, "WindGustSpeed": 5.1, "WindGustDirection": 6.1 }, { "SensorID": "sample string 1", "RecordTime": "2024-11-21T09:40:47.9658244+00:00", "WindSpeed": 3.1, "WindDirection": 4.1, "WindGustSpeed": 5.1, "WindGustDirection": 6.1 } ]
application/xml, text/xml
Sample:
<ArrayOfEnvironment_WindDetailNoise xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dashboard.Models"> <Environment_WindDetailNoise> <RecordTime>2024-11-21T09:40:47.9658244+00:00</RecordTime> <SensorID>sample string 1</SensorID> <WindDirection>4.1</WindDirection> <WindGustDirection>6.1</WindGustDirection> <WindGustSpeed>5.1</WindGustSpeed> <WindSpeed>3.1</WindSpeed> </Environment_WindDetailNoise> <Environment_WindDetailNoise> <RecordTime>2024-11-21T09:40:47.9658244+00:00</RecordTime> <SensorID>sample string 1</SensorID> <WindDirection>4.1</WindDirection> <WindGustDirection>6.1</WindGustDirection> <WindGustSpeed>5.1</WindGustSpeed> <WindSpeed>3.1</WindSpeed> </Environment_WindDetailNoise> </ArrayOfEnvironment_WindDetailNoise>