Skip to content

Instantly share code, notes, and snippets.

@MilosPaunovic
Last active May 23, 2021 19:54
Show Gist options
  • Save MilosPaunovic/557c9aca287b7cbafa665c40a2bb2bca to your computer and use it in GitHub Desktop.
Save MilosPaunovic/557c9aca287b7cbafa665c40a2bb2bca to your computer and use it in GitHub Desktop.
Rounding geographic coordinate to more usable value
const roundCoordinate = (coordinate) => {
//https://gis.stackexchange.com/a/109178
return parseFloat(coordinate.toPrecision(7));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment