1.0.1 • Published 8 years ago

random-latitude v1.0.1

Weekly downloads
61
License
MIT
Repository
github
Last release
8 years ago

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

Related

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.