Is it possible to make Java ME application applying phone cell tower location to get a fingerprint to the location -
i know quite difficult know location cell tower because have know exact location of cell tower black box network operator. question fingerprint of location. , if @ location , store position x. have been @ location again , phone detect position x .
question :
- is possible .
- how accuracy .
- can program run on java mobile application .
- are there recommendations start new java me . want know langauge use , netbeans , eclipse or other , ....
- do have resource make life easier me
thank in advance support.
you can current cellid
criteria cr= new criteria(); cr.sethorizontalaccuracy(500); // instance of provider locationprovider lp= locationprovider.getinstance(cr); // request location, setting one-minute timeout location l = lp.getlocation(60); coordinates c = l.getqualifiedcoordinates(); if(c != null ) { // use coordinate information double lat = c.getlatitude(); double lon = c.getlongitude(); }
using xellid can coordinated opencelid database accuracy may vary 500 m 20 km
Comments
Post a Comment