Skip to main content

position_estimates

Creates, updates, deletes, gets or lists a position_estimates resource.

Overview

Nameposition_estimates
TypeResource
Idaws.iotwireless.position_estimates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
geo_json_payloadstring (byte)The position information of the resource, displayed as a JSON payload. The payload is of type blob and uses the GeoJSON format, which a format that's used to encode geographic data structures. A sample payload contains the timestamp information, the WGS84 coordinates of the location, and the accuracy and confidence level. For more information and examples, see Resolve device location (console).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_position_estimateselectregionGet estimated position information as a payload in GeoJSON format. The payload measurement data is resolved using solvers that are provided by third-party vendors.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Get estimated position information as a payload in GeoJSON format. The payload measurement data is resolved using solvers that are provided by third-party vendors.

SELECT
geo_json_payload
FROM aws.iotwireless.position_estimates
WHERE region = '{{ region }}' -- required
;