position_estimates
Creates, updates, deletes, gets or lists a position_estimates resource.
Overview
| Name | position_estimates |
| Type | Resource |
| Id | aws.iotwireless.position_estimates |
Fields
The following fields are returned by SELECT queries:
- get_position_estimate
| Name | Datatype | Description |
|---|---|---|
geo_json_payload | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_position_estimate | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_position_estimate
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
;