v1

latestOpenAPI 3.0.3Apache 2.02026-07-175678720.5 KB
tracker

Unique Object Count with locations for a given Place. The data from multiple sensors are processed to estimate an approximate number of Objects / Persons and their locations in a given place

get/tracker/unique-object-count-with-locations

Query parameters

placestring required
timestampstring date-time
timeWindowInMsinteger
amrTimestampWindowInMsinteger
amrWithoutRtlsMinTimestampThresholdInMsinteger
amrRouteMinTimestampThresholdInMsinteger
amrRouteMaxTimestampThresholdInMsinteger

Response

Successful Operation.

placestring required
timestampstring date-time required

Example response

{
  "place": "city=abc/building=def/Warehouse=xyz",
  "timestamp": "2022-08-25T00:00:00.000Z",
  "objectCounts": [
    {
      "type": "Person",
      "count": 1
    },
    {
      "type": "AMR",
      "count": 1
    }
  ],
  "locationsOfObjects": [
    {
      "id": "1",
      "locations": [
        [
          1,
          1
        ]
      ],
      "type": "Person"
    },
    {
      "id": "Transporter 1",
      "locations": [
        [
          5,
          10
        ]
      ],
      "type": "AMR"
    }
  ],
  "events": [
    {
      "objectId": "1",
      "objectType": "AMR",
      "currentRoute": [
        [
          10,
          11
        ]
      ],
      "newRoute": [
        [
          10,
          11
        ]
      ],
      "blockages": [
        {
          "center": "POINT(2.5 3.2)",
          "radius": 5
        }
      ]
    }
  ]
}