URL:
https://<root>/services/<service>/VideoServer/<layer>/coverage?type=sensorPoints
Methods:
GET
Version Introduced:
12.1

Description

The sensorPoints resource outputs all sensor points associated with a video layer's telemetry in JSON format.

Request parameters

ParameterDetails

f

The response format: The default value is html.

Values: html | json | pjson

Response parameters

ParameterDetails

hasZ

Outputs whether or not a Z value is recognized by the layer's telemetry.

Value: true | false

hasM

Outputs whether or not a M value is recognized by the layer's telemetry.

Value: true | false

spatialReference

The spatialReference associated with a layer's telemetry. By default, this is typically 4326.

points

A list of the points as x, y, z, m values which covers the points hit by the sensor in the video layer's telemetry.

Example usage

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

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

JSON Request example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "hasZ": "<true | false>",
    "hasM": "<true | false>",
    "spatialReference": {"wkid": 4326},
    "points": [
    [
      "<x-value>",
      "<y-value>",
      "<z-value>",
      "<m-value>"
    ]
  ]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "hasZ": "true",
    "hasM": "true",
    "spatialReference": {"wkid": 4326},
    "points": [
    [
      -104.77232495545053,
      41.123569459246269,
      2961.2710765239945,
      82132
    ]
  ]
}

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