- URL:
- https://<root>/services/<service>/VideoServer/<layer>/coverage
- Methods:
GET- Version Introduced:
- 12.1
Description
The coverage resource outputs all telemetry information associated with a video layer. This data is pulled directly from the coverageTelemetry, coverageSensorPoints, coverageArea REST endpoints.
Request parameters
| Parameter | Details |
|---|---|
| The response format: The default value is Values: |
Response parameters
| Parameter | Details |
|---|---|
| The |
| The |
| The |
| The starting locations associated with client software drawing the output telemetry areas. |
| The frame outline locations associated with client software drawing the output telemetry. |
| The initial |
Example usage
The following is a sample GET request for the coverage operation:
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?coverage&f=pjsonJSON Request example
{
"area": {
"rings": [[
[
"<x-value>",
"<y-value>"
]
]],
"spatialReference": {"wkid": "<value>"}
},
"sensorPoints": {
"hasZ": "< true | false >",
"hasM": "< true | false >",
"spatialReference": {"wkid": "<value>"},
"points": [
[
"<x-value>",
"<y-value>",
"<z-value>",
"<m-value>"
]
]
},
"telemetry": {
"framCenter": {
"x": "<x-value>",
"y": "<y-value>",
"z": "<z-value>",
"spatialReference": {"wkid": "<value>"}
},
"frameOutline": {
"rings": [[
[
"<x-value>",
"<y-value>",
]
]],
"spatialReference": {"wkid": "<value>"}
},
"sensor": {
"x": "<x-value>",
"y": "<y-value>",
"z": "<z-value>",
"spatialReference": {"wkid": "<value>"}
}
}
}JSON Response example
{
"area": {
"rings": [[
[
-104.80019014750437,
41.144929147482358
]
]],
"spatialReference": {"wkid": 4326}
},
"sensorPoints": {
"hasZ": true,
"hasM": true,
"spatialReference": {"wkid": 4326},
"points": [
[
-104.80559675246738,
41.1438456602133,
2936.3714045929651,
0
]
]
},
"telemetry": {
"framCenter": {
"x": -104.78520336124824,
"y": 41.138221864820274,
"z": 1823.7265412909928,
"spatialReference": {"wkid": 4326}
},
"frameOutline": {
"rings": [[
[
-104.80019014750437,
41.144929147482358
]
]],
"spatialReference": {"wkid": 4326}
},
"sensor": {
"x": -104.80559675246738,
"y": 41.143845660213309,
"z": 2936.3714045929651,
"spatialReference": {"wkid": 4326}
}
}
}