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

ParameterDetails

f

The response format: The default value is html.

Values: html | json | pjson

Response parameters

ParameterDetails

area

The esriGeometry locations associated with the output telemetry areas.

spatialReference

The spatialReference associated with a layer's telemetry.

sensorPoints

The sensorPoints locations associated with the output telemetry areas.

telemetry

The starting locations associated with client software drawing the output telemetry areas.

frameOutline

The frame outline locations associated with client software drawing the output telemetry.

sensor

The initial sensor location associated with client software drawing the output telemetry.

Example usage

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

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?coverage&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
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
{
  "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

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
{
  "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}
    }
  }
}

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