Positioning

API Reference
Positioning Control Reference


This API provides access to the device's physical position and movement information.

Note
Enabling and disabling the positioning system is a privileged operation available only through the Positioning Control API.

IPC interfaces binding

All the functions of this API are provided by the positioningService application service.

Here's a code sample binding to Positioning services:

bindings:
{
   clientExe.clientComponent.le_pos -> positioningService.le_pos
}

Fix On Demand

The le_pos_Get2DLocation() function gets the last updated latitude, longitude and the horizontal accuracy values:

  • latitude is in degrees, positive North.
  • longitude is in degrees, positive East.
  • horizontal accuracy is in metres.

The latitude and longitude are given in degrees with 6 decimal places like:

  • Latitude +48858300 = 48.858300 degrees North
  • Longitude +2294400 = 2.294400 degrees East

The le_pos_Get3DLocation() function gets the last updated latitude, longitude, altitude and their associated accuracy values.

  • altitude is in metres, above Mean Sea Level, with 3 decimal places (3047 = 3.047 metres).
  • horizontal and vertical accuracies are in metres.

The le_pos_GetTime() function gets the time of last updated position:

  • Hours into the day [range 0..23].
  • Minutes into the hour [range 0..59].
  • Seconds into the minute [range 0..59].
  • Milliseconds into the second [range 0..999].

The le_pos_GetDate() function gets the date of last updated position:

  • Year A.D. [e.g. 2014].
  • Month into the year [range 1...12].
  • Days into the month [range 1...31].

The le_pos_GetMotion() function gets the last updated horizontal and vertical speed values and the associated accuracy values:

  • horizontal speed is in m/sec.
  • vertical speed is in m/sec, positive up.

The le_pos_GetHeading() function gets the last updated heading value in degrees (where 0 is True North) and its associated accuracy value. Heading is the direction that the vehicle/person is facing.

The le_pos_GetDirection() function gets the last updated direction value in degrees (where 0 is True North) and its associated accuracy value. Direction of movement is the direction that the vehicle/person is actually moving.

A sample code can be seen in the following page:

Navigation

To be notified when the device is in motion, you must register an handler function to get the new position's data. The le_pos_AddMovementHandler() API registers that handler. The horizontal and vertical change is measured in metres so only movement over the threshhold will trigger notification (0 means we don't care about changes).

The handler will give a reference to the position sample object that has triggered the notification. You can then access parameters using accessor functions, and release the object when done with it.

The accessor functions are:

le_pos_sample_Release() releases the object.

You can uninstall the handler function by calling the le_pos_RemoveMovementHandler() API.

Note
The le_pos_RemoveMovementHandler() API does not delete the Position Object. The caller has to delete it by calling the le_pos_sample_Release() function.

A sample code can be seen in the following page:

Positioning configuration tree

The configuration database path for Positioning is:

/
    positioning/
        acquisitionRate<int> == 5
  • 'acquisitionRate' is the fix acquisition rate in seconds.
Note
If there is no configuration for 'acquisitionRate', it will be automatically set to 5 seconds.