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

ParameterDetails

f

The response format: The default value is html.

Values: html | json | pjson

Response parameters

ParameterDetails

framCenter

The x, y, z, and spatialReference of the center of the frame used for starting telemetry.

frameOutline

The esriGeometry that defines the starting outline of the telemetry to be exposed in client software.

sensor

The x, y, z, and spatialReference of the sensor location used for starting telemetry.

Example usage

The following is a sample GET request for the telemetry operation:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?type=telemetry&f=pjson

JSON Request example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "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

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
  "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}
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.