- URL:
- https://<root>/services/<service>/VideoServer/<layer>/coverage?type=telemetry
- Methods:
GET- Version Introduced:
- 12.1
Description
The telemetry resource outputs the starting telemetry information for the beginning of a video layer's stream in JSON format.
Request parameters
| Parameter | Details |
|---|---|
| The response format: The default value is Values: |
Response parameters
| Parameter | Details |
|---|---|
| The |
| The esriGeometry that defines the starting outline of the telemetry to be exposed in client software. |
| The |
Example usage
The following is a sample GET request for the telemetry operation:
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?type=telemetry&f=pjsonJSON Request example
{
"framCenter": {
"x": "<x value>",
"y": "<y value",
"z": "<z value>",
"spatialReference": {"wkid": 4326}
},
"frameOutline": {
"<geometry>",
"spatialReference": {"wkid": 4326}
},
"sensor": {
"x": "<x value>",
"y": "<y value",
"z": "<z value>",
"spatialReference": {"wkid": 4326}
}
}JSON Response example
{
"framCenter": {
"x": -104.78520336124824,
"y": 41.138221864820274,
"z": 1823.7265412909928,
"spatialReference": {"wkid": 4326}
},
"frameOutline": {
"rings": [[
[
-104.80019014750437,
41.144929147482358
],
[
-104.7794799772393,
41.185177700248332
],
[
-104.74492993756391,
41.155417497899393
],
[
-104.74468448186767,
41.154029867113074
],
[
-104.7550079904028,
41.134461086014014
],
[
-104.75764359739073,
41.131229881568636
],
[
-104.76110502596667,
41.130944480318121
],
[
-104.7887404046579,
41.1289830193938
],
[
-104.78881955603191,
41.129028734963093
],
[
-104.79644107626061,
41.13875407761482
],
[
-104.80019014750437,
41.144929147482358
]
]],
"spatialReference": {"wkid": 4326}
},
"sensor": {
"x": -104.80559675246738,
"y": 41.143845660213309,
"z": 2936.3714045929651,
"spatialReference": {"wkid": 4326}
}
}