Hi to everybody,
I am trying to get NMR (network measurement result) with the handset. I asked myself if it would be possible with python.
Anybody can help me?
Thanks in advance!
Sebastian.
Hi to everybody,
I am trying to get NMR (network measurement result) with the handset. I asked myself if it would be possible with python.
Anybody can help me?
Thanks in advance!
Sebastian.
hi someone know if i can get signal strength information with python??but not only from the base station that provide the service i need information about the base stations aroun the mobile for a location project...
thanks
You can use Sysagent extension :
Links :Code:from sysagent import * from esysagent import * status = network_status() # For Checking network Status if status == ESANetworkStrengthNone: text="Network strength none" elif status == ESANetworkStrengthLow: text="Network strength low" elif status == ESANetworkStrengthMedium: text="Network strength medium" elif status == ESANetworkStrengthHigh: text="Network strength high" elif status == ESANetworkStrengthUnknown: text="Network strength unknown" app.body.add(u'%s\n'%text) # Prints network Status
Sysagent
esysagent
Best Regards,
Croozeus
Last edited by croozeus; 2008-08-25 at 20:11. Reason: Added links
Pankaj Nathani
www.croozeus.com
thanks...but with this extension i can get information from the base stations neighborhood?? because i need at least 3.
Last edited by alexis_ypy; 2008-08-25 at 21:05.
Pankaj Nathani
www.croozeus.com
ok, but do you know a way to get this information from the phone (signal strength from the base stations neighborhood), maybe with sysinfo or with another code...??
The only way to get network information is according to my previous post.
You can use the example I have provided to check whether it is the information that you need or not.
Best Regards,
Croozeus
Pankaj Nathani
www.croozeus.com
The value is from that base station which the phone is connected to. It's not necessarily the strongest, there is logic following changes in signal strenghts and deciding when to switch and to which one.
As far as I recall pys60 manual, it is NOT possible to get those values from any other base station, except the one you're connected to. I know it can be done with C++, but I'm not sure, if those APIs are public.
Besides, the values you get from sysagent are so vague, they might as well be average of all surrounding base stations.. Doesn't help much, when trying to locate device position without GPS
Sorry,
--jouni