- URL:
- https://<root>/services/<service>/VideoServer/<layer>/coverage?type=sensorPoints
- Methods:
GET- Version Introduced:
- 12.1
Description
The sensor resource outputs all sensor points associated with a video layer's telemetry in JSON format.
Request parameters
| Parameter | Details |
|---|---|
| The response format: The default value is Values: |
Response parameters
| Parameter | Details |
|---|---|
| Outputs whether or not a Z value is recognized by the layer's telemetry. Value: |
| Outputs whether or not a M value is recognized by the layer's telemetry. Value: |
| The |
| A list of the points as |
Example usage
The following is a sample GET request for the sensor operation:
https://organization.example.com/<context>/rest/services/<serviceName>/VideoServer/<layer>?type=sensorPoints&f=pjsonJSON Request example
{
"hasZ": "<true | false>",
"hasM": "<true | false>",
"spatialReference": {"wkid": 4326},
"points": [
[
"<x-value>",
"<y-value>",
"<z-value>",
"<m-value>"
]
]
}JSON Response example
{
"hasZ": "true",
"hasM": "true",
"spatialReference": {"wkid": 4326},
"points": [
[
-104.77232495545053,
41.123569459246269,
2961.2710765239945,
82132
]
]
}