Ok, I see two potential approaches I could take.
filter.approximate
andfilter.accuracy
From a cursory look at my history, those cell tower pings are showing accuracy of 0, so I would guess I cannot use this approach as it would filter out my GPS pings which are 1.3-7, etc.
<entry key='filter.accuracy'>0.1</entry>
Is filter.approximate
a boolean, and it omits all "cell and wifi locations that are coming from geolocation provider"? So:
<entry key='filter.approximate'>true</entry>
Would this be the correct approach to filter the WiFi/Cell locations? I imagine that's a server wide setting too, not something that could be set per device?
The filter.approximate
won't work here. It only works when Cell/WiFi location resolution was done on the server side. So you have to use filter.accuracy
.
I see...
Considering that the cell pings are showing "0" I would guess 1-3 would be considered less accurate. Am I understanding that correctly? Wouldn't setting the following filter out all pings, or am I thinking about this backwards?
Sorry to be redundant.
<entry key='filter.accuracy'>0.1</entry>
Cell locations shouldn't have zero accuracy.
Ah, that's perfect. I'll check into that. Thank you.