🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

nearby-cities

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

nearby-cities

Give me your coordinates and I'll tell you where the nearest cities are. Works offline.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

nearby-cities

Give me your coordinates and I'll tell you where the nearest cities are. Works offline.

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install nearby-cities --save

Usage

const nearbyCities = require("nearby-cities")
const query = {latitude: 34.4362755, longitude: -119.705086}
const cities = nearbyCities(query)

assert.equal(cities[0].name, 'Mission Canyon')
assert.equal(cities[1].name, 'Santa Barbara')
assert.equal(cities[2].name, 'Montecito')
assert.equal(cities[3].name, 'Summerland')
assert.equal(cities[4].name, 'Goleta')

console.log(cities[0])

/*
{
  name: "Mission Canyon",
  country: "US",
  featureClass: "P",
  featureCode: "PPL",
  adminCode: "CA",
  population: 2381,
  lat: 34.45083,
  lon: -119.71291
}
*/

Tests

npm install
npm test

Dependencies

  • all-the-cities: All the 138,398 cities of the world with a population of at least 1000 inhabitants, in a big JSON array
  • kdbush: a spatial index for 2D points
  • geokdbush: a geographic extension for kdbush

Dev Dependencies

  • mocha: simple, flexible, fun test framework
  • standard-format: attempts to reformat javascript to comply with feross/standard style

License

MIT

Generated by package-json-to-readme

Keywords

geolocation

FAQs

Package last updated on 07 May 2017

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