Active Topics

 



Notices


Reply
Thread Tools
Posts: 213 | Thanked: 5 times | Joined on May 2007 @ Montreal, Canada
#1
Greetings:


Has anyone tried to install Loki apps from SkyHook Wireless on their N800.

With the help of Wifi HotSpots this application can pinpoint exactly where you are.

Also has channels for Events happening around you.

Looks really cool.

take a look at the link:http://www.skyhookwireless.com/

Regards Robert
 
Posts: 11 | Thanked: 1 time | Joined on Sep 2007
#2
Not found anything myself. It would be great .... any suggestions?
 
Posts: 60 | Thanked: 7 times | Joined on Jan 2008
#3
The website says support for Linux devices is "Coming Soon".

It seems to me that this can only work it the various hotspots participate by supplying their location to SkyHook. That's fine for Starbucks, McDonalds, etc. but more often than not the AP in range belongs to a private individual or business, and is susceptible to being moved, renamed, etc.
Beside that, I don't think I want SkyHook or anybody else tracking where I am all the time, and sending me "targeted" SPAM.
It's bad enough the cell phones are headed that way without volunteering another device, IMHO

Walt
 
Posts: 11 | Thanked: 1 time | Joined on Sep 2007
#4
How it works, is that they war drive areas such as London, New York etc and grab the MAC, strength and physical location of all the Wi-Fi routers as they go.

When you request your location, your system scans the local MAC addresses in your area which allows them to pinpoint your location. The system is also self-healing as when you send the info & strengths etc, they can see which machines have arrived and disappeared.

All in all, it's an incredible idea, mostly in how much driving they have to do etc.

You only have to use Skyhook when you want to, it's your choice. A bit like using Google, you can use it, but they will give you adverts if they so desire.

As a site developer for local services, I find this quite a revolutionary way of getting the location to a device. GPS is far too slow and battery intensive at the moment, triangulation by mobile phone co's is all well and good, but slow coming. I was studying this 6 years ago!

I like the idea and having it on my N800 would be a bonus. And already starting to re-code my sites to fit with this.
 
Posts: 7 | Thanked: 1 time | Joined on Nov 2007 @ NoVA
#5
Skyhook stuff is good. Not only do they do their own collection of SSID/MAC/GPS data, but users can also choose to submit their location data. That is, using the Loki tool, you can update your location into their database. Using this user-generated data, I was astonished to see that Skyhook got me to within about 30' of my actual location via WiFi geo-location. Very cool stuff.

This is the same technology Google is using in Google Maps Mobile and on the iPhone, so it's definitely ready for prime time.

Can't wait to see what the ITT community can do with this.

Matthew
 
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#6
Coincidentally, I've had a post sitting in my maemopeople blog for a while about this:

http://www.maemopeople.org/index.php..._triangulation

If you go through Skyhook's licence agreement and SDK download, you find they've got a Maemo 3.1 (i.e. OS2007) version.
__________________
Andrew Flegg -- mailto:andrew@bleb.org | http://www.bleb.org
Now known as
Jaffa
 
Posts: 139 | Thanked: 24 times | Joined on Sep 2005
#7
Originally Posted by aflegg View Post
If you go through Skyhook's licence agreement and SDK download, you find they've got a Maemo 3.1 (i.e. OS2007) version.
Andrew did mention licensing in the post, but just so no-one gets the wrong idea: distributing software made with the SDK is only legal after distributor has bought a license from Skyhook.
 
Posts: 11 | Thanked: 1 time | Joined on Sep 2007
#8
There was a big release of more SDK code yesterday. Would be great if the browser could get a plug-in rather than having to licence software into particular applications. Still, would be quite cool if maemo-mapper could use this
 
anidel's Avatar
Posts: 1,743 | Thanked: 1,231 times | Joined on Jul 2006 @ Twickenham, UK
#9
I got the SDK as well and wanted to see if I can put up something that can resemble a geo-reminder based on user-defined locations.
We'll see what I can do in the spare time.
 
Posts: 66 | Thanked: 145 times | Joined on Jan 2008
#10
How about using the wigle.net wifi database which is free(ish)? The coverage
isn't too bad - not sure how up to date it is or if it "heals". A simple script
can use their web API to lookup the position of surrounding accesspoints - works
for me. See below (you will need your own registered wigle USER and PASS, also
wget and wireless-tools packages):

Code:
#!/bin/sh

USER=my_username
PASS=my_password
COOKIES=/tmp/wiglecookies
CACHEROOT=/tmp/wiglecache.

for n in `iwlist wlan0 scan | awk '/Address/ {print $5;}'`; do
  # '/Signal level/ {print id " " $3;}'
  CACHEFILE=${CACHEROOT}$n;
  echo check netid $n

  if [ ! -e ${CACHEFILE} ]; then
    echo looking up $n
    if [ ! -e ${COOKIES} ]; then
      wget --save-cookies=${COOKIES} --no-check-certificate  \
 'https://wigle.net/gps/gps/GPSDB/login?credential_0='${USER}'&credential_1='${PASS}'&noexpire=1' 
2>/dev/null
    fi

    POS=`wget --load-cookies=${COOKIES} --no-check-certificate \
'https://wigle.net/gpsopen/gps/GPSDB/confirmquery?netid='${n} -O- 2>/dev/null| 
awk 'BEGIN {FS="[&?=]";} /Get Map/ { print $4 "," $6; }'`

    if [ -n "${POS}" ]; then 
      echo -n "${POS}" > ${CACHEFILE}
    fi
  fi

  if [ -e ${CACHEFILE} ]; then
    echo $n: `cat ${CACHEFILE}`;
  else
    echo $n: not found;
  fi

done

should spit out latitude and longitude if found:

00:12:17:77:77:77: 22.2014776,15.14542959
 

The Following 3 Users Say Thank You to tme For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 00:19.