LocationService / Client / batch_evaluate_geofences

batch_evaluate_geofences#

LocationService.Client.batch_evaluate_geofences(**kwargs)#

Evaluates device positions against the geofence geometries from a given geofence collection.

This operation always returns an empty response because geofences are asynchronously evaluated. The evaluation determines if the device has entered or exited a geofenced area, and then publishes one of the following events to Amazon EventBridge:

  • ENTER if Amazon Location determines that the tracked device has entered a geofenced area.

  • EXIT if Amazon Location determines that the tracked device has exited a geofenced area.

Note

The last geofence that a device was observed within is tracked for 30 days after the most recent device position update.

Note

Geofence evaluation uses the given device position. It does not account for the optional Accuracy of a DevicePositionUpdate.

Note

The DeviceID is used as a string to represent the device. You do not need to have a Tracker associated with the DeviceID.

See also: AWS API Documentation

Request Syntax

response = client.batch_evaluate_geofences(
    CollectionName='string',
    DevicePositionUpdates=[
        {
            'Accuracy': {
                'Horizontal': 123.0
            },
            'DeviceId': 'string',
            'Position': [
                123.0,
            ],
            'PositionProperties': {
                'string': 'string'
            },
            'SampleTime': datetime(2015, 1, 1)
        },
    ]
)
Parameters:
  • CollectionName (string) –

    [REQUIRED]

    The geofence collection used in evaluating the position of devices against its geofences.

  • DevicePositionUpdates (list) –

    [REQUIRED]

    Contains device details for each device to be evaluated against the given geofence collection.

    • (dict) –

      Contains the position update details for a device.

      • Accuracy (dict) –

        The accuracy of the device position.

        • Horizontal (float) – [REQUIRED]

          Estimated maximum distance, in meters, between the measured position and the true position of a device, along the Earth’s surface.

      • DeviceId (string) – [REQUIRED]

        The device associated to the position update.

      • Position (list) – [REQUIRED]

        The latest device position defined in WGS 84 format: [X or longitude, Y or latitude].

        • (float) –

      • PositionProperties (dict) –

        Associates one of more properties with the position update. A property is a key-value pair stored with the position update and added to any geofence event the update may trigger.

        Format: "key" : "value"

        • (string) –

          • (string) –

      • SampleTime (datetime) – [REQUIRED]

        The timestamp at which the device’s position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

Return type:

dict

Returns:

Response Syntax

{
    'Errors': [
        {
            'DeviceId': 'string',
            'Error': {
                'Code': 'AccessDeniedError'|'ConflictError'|'InternalServerError'|'ResourceNotFoundError'|'ThrottlingError'|'ValidationError',
                'Message': 'string'
            },
            'SampleTime': datetime(2015, 1, 1)
        },
    ]
}

Response Structure

  • (dict) –

    • Errors (list) –

      Contains error details for each device that failed to evaluate its position against the given geofence collection.

      • (dict) –

        Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.

        • DeviceId (string) –

          The device associated with the position evaluation error.

        • Error (dict) –

          Contains details associated to the batch error.

          • Code (string) –

            The error code associated with the batch request error.

          • Message (string) –

            A message with the reason for the batch request error.

        • SampleTime (datetime) –

          Specifies a timestamp for when the error occurred in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

Exceptions