The output from the REST API when doing multicell locationing changes from day to day even when the inputs are the same. Why is this the case and is it possible to keep the location being returned the same? I am using postman to send and receive the cellular location info.
On October 17, my cell information and output for the Ground Fix API was
Input:
{
"lte": [
{
"mcc": 302,
"mnc": 610,
"eci": 197711621,
"tac": 55005
}
,
{
"mcc": 302,
"mnc": 610,
"eci": 141566989,
"tac": 55005
}
,
{
"mcc": 302,
"mnc": 720,
"eci": 8937225,
"tac": 30175
}
,
{
"mcc": 302,
"mnc": 490,
"eci": 102476822,
"tac": 35004
}
]
}
Output:
{
"lat": 43.86699231,
"lon": -79.38158322,
"uncertainty": 433,
"fulfilledWith": "MCELL"
} This was very accurate and very close to where I was.Input:
{
"lte": [
{
"mcc": 302,
"mnc": 610,
"eci": 197711621,
"tac": 55005
}
,
{
"mcc": 302,
"mnc": 610,
"eci": 141566989,
"tac": 55005
}
,
{
"mcc": 302,
"mnc": 720,
"eci": 8937225,
"tac": 30175
}
,
{
"mcc": 302,
"mnc": 490,
"eci": 102476822,
"tac": 35004
}
]
}
Output:
{
"lat": 43.8689033,
"lon": -79.3758543,
"uncertainty": 568.202,
"fulfilledWith": "MCELL"
} This was not at all accurate. I was not in the circle.