New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

geocode-wifi

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geocode-wifi

Geocode wifi access points to a latitute and longitude

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

geocode-wifi

Returns a latitude and a longitude given an array of wifi access points.

Build status

js-standard-style

Installation

npm install geocode-wifi

Usage

This module needs network access in order to communicate with Google so it can triangulate the provided access points.

var geocodeWifi = require('geocode-wifi')

var towers = [
  { mac: '0e:1d:41:0c:22:d4', ssid: 'NodeConf', signal: -72 },
  { mac: '01:1c:ef:0c:21:2a', ssid: 'NSA Lobby', signal: -2 },
  { mac: 'e0:53:41:92:00:bb', ssid: 'Microsoft Taco', signal: -89 }
]

geocodeWifi(towers, function (err, location) {
  if (err) throw err
  console.log(location) // => { lat: 38.0690894, lng: -122.8069356, accuracy: 42 }
})

Geocode-wifi have special support for the node-wifiscanner module. This means you can parse the output of node-wifiscanner directly into geocode-wifi:

var geocodeWifi = require('geocode-wifi')
var wifiScanner = require('node-wifiscanner')

wifiScanner.scan(function (err, towers) {
  if (err) throw err

  geocodeWifi(towers, function (err, location) {
    if (err) throw err

    console.log(location) // => { lat: 38.0690894, lng: -122.8069356, accuracy: 42 }
  })
})

License

MIT

Keywords

FAQs

Package last updated on 07 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc