npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

geo-core

v1.1.4

Published

Toolkit that includes fast look up of locations by latitude and longitude pairs.

Downloads

4

Readme

geo-core

Toolkit that includes fast look up of locations by latitude and longitude pairs.

npm install geo-core --save

Requiring

var Geolocation = require('geo-core')

Constructing

Create an instance of the Geolocation class. When constructing, will require a JSON file that contains all cities with a population of 5000 or above.

var GeoManager = new Geolocation();

Options

GeoLocation also takes options to override defaults for any reason.

var GeoManager = new Geolocation({
  radiansConversion: Math.PI / 2,
  radius: 3959,
  units: 'miles',
  minimumLocations: 3
});

| Property | Type | Description | Default | | -------- | ---- | ----------- | ------- | | radiansConversion | Float | List of messages to display | π / 180 | | radius | Integer | Radius of the spherical object, defaults to Earth. | 3959 | | units | String | Unit of measurement corresponding to the radius | 'miles' | | minimumLocations | Integer | Minimum number of nearby locations returned. | 3 |

API

A GeoManager instance exposes the following functions:

findNearbyLocations(Object, Function)

Returns an array of Geolocation Objects closest to the supplied Origin Location Object

GeoManager.findNearbyLocations({
  lat: '35.73265',
  lon: '-78.85029'
}, function(locations) {
  // ... Array of geolocation objects.
});

Geolocation Friendly Objects

Origin Location Object

| Property | Type | Description | | -------- | ---- | ----------- | | lon | String (Float) | Longitude coordinate associated with the origin position. | | lat | String (Float) | Latitude coordinate associated with the origin position. |

Geolocation Object

| Property | Type | Description | | -------- | ---- | ----------- | | city | String | City associated with the location. | | division | String | Division / Province / State associated with the location. | | country | String | Country associated with the location. | | population | Integer | Total population of the location. | | longitude | Float | Longitude coordinate associated with the location. | | latitude | Float | Latitude coordinate associated with the location. | | distance | Float | Distance away from the origin to the location. | | units | String | Unit of measure associated with the distance |

geocore has no dependencies other than the cities5000.txt.

Special Thanks

  • Austin Kelleher
  • Phil Gates-Idem
  • Mark Smith-Guerrero