views:

379

answers:

1

Hi all,

I am trying to develop a mobile application using J2ME to detect the device indoor. As GPS is impossible to detect the mobile device indoor. So i am looking into using location base with cell id. Can anyone gives me some guidance on the approach of this?

opencellid.org provides a free source for detecting the mobile using cell id. Base on their API, it requires the input of the IMSI. But i am unable to retrieve the IMSI as it requires the manufacturer/operator domain permissions to do so.

By the way, i am from Singapore, using Starhub as the service provider and testing my program on N97 mini. Not use it any of this information helps.

Any other way around it as in beside the idea of using cell id?? Any help will be greatly appreciated...

+1  A: 

There is no easy way to detect if someone is 'indoors'.

You could use gps to detect when someone is indoors by loss of signal, but you will still have no way to tell if they just don't have signal or if they are actually in doors.

Cell phone triangulation is pretty much useless in this situation as it just isn't accurate enough. Looking at my phone's google maps it cant even tell the street I am on, just a rough idea of where I am within 500 meters.

If the building has Wifi access-points throughout then these probably would be the best way of detecting when someone is indoors. Wifi access-points would work if a database of every wireless access point in a given building was complied.....

Have a look at http://www.skyhookwireless.com/ for more info!

Exile