npm.io
1.0.1 • Published 10 years ago

random-latitude

Licence
MIT
Version
1.0.1
Deps
3
Vulns
0
Weekly
0
Stars
1

random-latitude

Generate a random latitude.

MIT License

build:? coverage:?

Install

$ npm install --save random-latitude 

Usage

var randomLatitude = require('random-latitude');

// API
// - randomLatitude();
// - randomLatitude(options);

// options:
// - min  : default -90
// - max  : default 90
// - fixed: default 5

randomLatitude();
// => 57.99514

By default includes 5 fixed digits after decimal, can specify otherwise.

randomLatitude({ fixed: 7 })
// => -29.6443133

By default includes entire range of allowed longitudes, can specify a min and/or max to bound it:

randomLatitude({min: 38.7, max: 38.9});
// => -38.82358

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.

Keywords