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

random-location

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

random-location

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

1.1.1
Source
npm
Version published
Weekly downloads
5.3K
-4.31%
Maintainers
3
Weekly downloads
 
Created
Source

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

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
var randomLocation = require('random-location')

The UMD build is also available on unpkg:

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

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

Developing

Verify tests and coverage:

$ npm run test
$ npm run cover

Publishing

$ npm run build
$ npm publish

Keywords

random

FAQs

Package last updated on 28 Sep 2019

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