Skip to main content

Pixel Mowing

Aggregated Pixel Mowing

The aggregated pixel mowing (REST) API is the visualization service endpoint that returns the imagery of a FOI (feature of interest) and the number of mowing events detected in each FOI pixel.

REST API

Basic info

  • visualization service base URL: https://am-pilot.sinergise.com/visualization
  • pixel mowing endpoint /markers/agg-pixel-mowing
  • HTTP method: GET

Parameters

ParameterTypeDescription
inferenceId*stringInference ID of pixel mowing marker.
markerId*stringMarker ID for which to display the imagery of the FOI and the number of mowing events detected in each FOI pixel.

* indicates a mandatory parameter

Response

Responses can include one of the following status codes, in addition to content data.

Status CodeContent Type
200 OKimage/svg+xml
401 Unauthorizedapplication/json
403 Forbiddenapplication/json
404 Not Foundapplication/json
500 Internal Server Errortext/plain

Example

Below cURL command demonstrates the usage of the endpoint request.

curl --request GET \
--url https://am-pilot.sinergise.com/visualization/markers/agg-pixel-mowing?inferenceId=DEMO.INFERENCE.461&markerId=DEMO.MARKER.461-6184252001 \
--header 'Authorization: Bearer <authorization-token>'

Event Pixel Mowing

The event pixel mowing (REST) API is a visualization service endpoint that returns the imagery of the FOI and the FOI pixel for the requested mowing event.

REST API

Basic info

  • visualization service base URL: https://am-pilot.sinergise.com/visualization
  • pixel mowing endpoint /markers/event-pixel-mowing
  • HTTP method: GET

Parameters

ParameterTypeDescription
inferenceId*stringInference ID of pixel mowing marker.
markerId*stringMarker ID for which to display the imagery of the FOI and the FOI pixel for the requested mowing event.
eventIndex*stringMowing event index for which to display the imagery of the FOI and the FOI pixel.

* indicates a mandatory parameter

Response

For information about the response codes, see Response.

Example

Below cURL command demonstrates the usage of the endpoint request.

curl --request GET \
--url https://am-pilot.sinergise.com/visualization/markers/event-pixel-mowing?inferenceId=DEMO.INFERENCE.461&markerId=DEMO.MARKER.461-6184252001&eventIndex=0 \
--header 'Authorization: Bearer <authorization-token>'