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

random-location

v1.1.3

Published

Random coordinates within a circle (or on a circumference) given a center point and radius.

Downloads

16,031

Readme

random-location

random-location gets you random coordinates within a circle (or on a circumference) given a center point and radius. We use it to stress test our geohash based services. It works anywhere JavaScript runs.

Build Coverage Version MIT License semantic-release

web example | react-native example

Installation

Using npm:

$ npm install --save random-location

Then use as you would anything else:

// Using ES6 modules
import randomLocation from 'random-location'

// Using CommonJS modules
const randomLocation = require('random-location')

The UMD build is also available on unpkg:

<script src="https://unpkg.com/random-location/dist/randomLocation.umd.js"></script>

API

randomLocation.randomCirclePoint(...)

Outputs a Point ( { latitude: ..., longitude: ... }) of random coordinates within a circle.

Function definition:

const randomCirclePoint = (centerPoint, radius, randomFn = Math.random) => { ... }

Where:

  • centerPoint required An object with a latitude and longitude fields.
  • radius required The maximum distance (meters) from centerPoint.
  • randomFn optional A random function. Output is >=0 and <=1. Allows usage of seeded random number generators (see seedrandom) - more predictability when testing.

randomLocation.randomCircumferencePoint(...)

Outputs a Point ( { latitude: ..., longitude: ... }) of random coordinates on a circle's circumference.

Function definition:

const randomCircumferencePoint= (centerPoint, radius, randomFn = Math.random) => { ... }

Where:

  • centerPoint required An object with a latitude and longitude fields.
  • radius required The distance (meters) from centerPoint.
  • randomFn optional A random function. Output is >=0 and <=1. Allows usage of seeded random number generators (see seedrandom) - more predictability when testing.

randomLocation.randomAnnulusPoint(...)

Outputs a Point ( { latitude: ..., longitude: ... }) of random coordinates in a region bounded by two concentric circles (annulus).

Function definition:

const randomCircumferencePoint= (centerPoint, radius, randomFn = Math.random) => { ... }

Where:

  • centerPoint required An object with a latitude and longitude fields.
  • innerRadius required The readius of the smaller circle.
  • outerRadius required The readius of the larger circle.
  • randomFn optional A random function. Output is >=0 and <=1. Allows usage of seeded random number generators (see seedrandom) - more predictability when testing.

Usage

Generating random coordinates within a circle

Lets say we'd like to get a random location that its distance from Twitter's HQ is at most 500 meters:

// Twitter HQ
const P = {
  latitude: 37.7768006,
  longitude: -122.4187928
}

const R = 500 // meters

const randomPoint = randomLocation.randomCirclePoint(P, R)

// randomPoint => { latitude: 37.77636619, longitude: -122.416575663 }

Generating random coordinates on a circle circumference

Lets say we'd like to get a random location that its distance from Twitter's HQ is exactly 700 meters:

// Twitter HQ
const P = {
  latitude: 37.7768006,
  longitude: -122.4187928
}

const R = 700 // meters

const randomPoint = randomLocation.randomCircumferencePoint(P, R)

// randomPoint => { latitude: 37.7828897, longitude: -122.4167713 }

Measure the distance between two points

// Eiffel Tower
const P1 = {
  latitude: 48.8583736,
  longitude: 2.2922926,
}

// Notre-Dame Cathedral
const P2 = {
  latitude: 48.8529717,
  longitude: 2.3477134,
}

// Prints True
console.log(Math.floor(randomLocation.distance(P1, P2)) === 4098)

Hacking

Clone. Install. Hack. Open a PR.

License

MIT.