Find Position with GSM

User Story

The user wants to determine the WGS-84 compliant coordinates defined by the GSM information in the POST body.

Request

The code block below demonstrates a POST request to determine the geocoordinates as specified by the GSM information in the POST body. You need to set the request content type in the HTTP headers.

Global
Azure
POST /v2/locate?apiKey={YOUR_API_KEY} HTTP/1.1
Host: positioning.hereapi.com
Content-Type: application/json
POST /v2/locate?apiKey={YOUR_API_KEY} HTTP/1.1
Host: az.positioning.hereapi.com
Content-Type: application/json

Note

This example uses a HERE API Key to authenticate your request. For the available authentication options, see the Identity & Access Management Developer Guide.

This POST request requires the following POST body.

{
  "gsm": [
    {
      "mcc": 262,
      "mnc": 1,
      "lac": 5126,
      "cid": 16504,
      "nmr": [
        { "bsic": 6, "bcch": 82 },
        { "bsic": 7, "bcch": 85 },
        { "bsic": 12, "bcch": 93 },
        { "bsic": 13, "bcch": 88 },
        { "bsic": 19, "bcch": 88 }
      ]
    }
  ]
}

Response

The response to the request contains:

  • lat: WGS-84 compliant latitude coordinate
  • lng: WGS-84 compliant longitude coordinate
  • accuracy: Radius of the uncertainty circle around the position in meters
{
  "location": {
    "lat": 52.5180764,
    "lng": 13.37624492,
    "accuracy": 300
  }
}

results matching ""

    No results matching ""