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 :

  1. is possible .
  2. how accuracy .
  3. can program run on java mobile application .
  4. are there recommendations start new java me . want know langauge use , netbeans , eclipse or other , ....
  5. 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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -