Get Hazard
DeprecatedPOST
/v1/hazardLast modified: 6 months ago
Scope: hazar:read
DEPRECATED
Hazard and risk is an important part of the UAS ecosystem. The FAA publishes well established guidelines on how operations should behave with respect to population and other ground-based risk. This set of API resources will help developers quantify these hazards and their associated risk with a geographic boundary.
Request
Header Params
Content-Type
enum<string>
required
Allowed value:
application/json;charset=UTF-8
Example:
application/json;charset=UTF-8
Authorization
string
required
Authorization bearer accessToken
generated in Authorization step
Example:
{{access-token}}
Body Params application/json
geometry
object
required
coordinates
array [array]
required
type
string
required
Example
{
"geometry": {
"coordinates": [
[
[
-83.3381652832031,
42.2015642571405
],
[
-83.2059860229492,
42.2015642571405
],
[
-83.2059860229492,
42.274514451885
],
[
-83.3381652832031,
42.274514451885
],
[
-83.3381652832031,
42.2015642571405
]
]
],
"type": "Polygon"
}
}
Request samples
Responses
Success(200)
500(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"data": [
{
"geometry": {
"coordinates": [
[
[
-83.2320785522461,
42.3341843859394
],
[
-83.2262420654297,
42.3341843859394
],
[
-83.2262420654297,
42.3364684929947
],
[
-83.2320785522461,
42.3364684929947
],
[
-83.2320785522461,
42.3341843859394
]
]
],
"type": "Polygon"
},
"properties": {
"Category": "Critical Infrastructure",
"CategoryType": "Child Care Center",
"Name": "RIVERSIDE ACADEMY EARLY CHILDHOOD CENTER",
"Risk": 1
},
"type": "Feature"
}
],
"message": "success",
"statusCode": 200
}
Last modified: 6 months ago