Generate a random coordinates, which are latitude and longitude, comma separated.
Random coordinates within a circle (or on a circumference) given a center point and radius.
Generate random coordinates.
Scale of Cartesian Coordinates
Collection of basic layout algorithms for graphology.
Generate random numbers from various distributions.
The primary entrypoint to the Firebase JS SDK
TypeScript definitions for d3-random
Fastest random ID and random string generation for Node.js
URL and cookie safe UIDs
Find self-intersections in geojson polygon (possibly with interior rings)
Use the random function in CSS
An alias package for `crypto.randomBytes` in Node.js and/or browsers
Generate a cryptographically strong random string
Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.
Random utility functions for ethers.
A Pulumi package to safely use randomness in Pulumi programs.
a point geometry with transforms
TypeScript definitions for d3-polygon
return all coordinates from a geojson object
A small implementation of `crypto.getRandomValues` for React Native. This is useful to polyfill for libraries like [uuid](https://www.npmjs.com/package/uuid) that depend on it.
A Javascript function for reading a variety of coordinate formats and converting to decimal numbers. Builds on other efforts by returning the verbatim coordinates and the decimal coordinates all in one object.
Generate a random integer
Statistical routines and probability distributions.
This gem allows to generate a random coordinate and to validate its position in a given area (e. g. avoid lake, sea, etc.). This is useful for obtaining locations by reverse geocoding.
Generates a valid RANDOM US city, state, zipcode and coordinate pair.
TimezoneTeleporter anonymizes users' GPS coordinates by generating random coordinates in the same time zone. These new coordinates may be used then safely by 3rd party systems to process the users' location, without disclosing their actual physical position, providing more privacy, and anonymity to users.
Temporally Ordered IDs. Generate universally unique identifiers (UUID) that sort lexically in time order. Torid exists to solve the problem of generating UUIDs that when ordered lexically, they are also ordered temporally. I needed a way to generate ids for events that are entering a system with the following criteria: 1. Fast ID generation 2. No central coordinating server/system 3. No local storage 4. Library code, that is multiple apps on the same machine can use the same code and they will not generate duplicate ids 5. Eventually stored in a UUID field in a database. So 128bit ids are totally fine. The IDs that Torid generates are 128bit IDs made up of 2, 64bit parts. * 64bit microsecond level UNIX timestamp * 64bit hash of the system hostname, process id and a random value.