Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timothygu/utm
Bidirectional UTM-WGS84 converter for JavaScript.
https://github.com/timothygu/utm
javascript latitude utm wgs84
Last synced: 11 days ago
JSON representation
Bidirectional UTM-WGS84 converter for JavaScript.
- Host: GitHub
- URL: https://github.com/timothygu/utm
- Owner: TimothyGu
- License: mit
- Created: 2015-10-25T15:36:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-10-27T10:40:06.000Z (about 2 years ago)
- Last Synced: 2024-10-29T19:58:25.255Z (2 months ago)
- Topics: javascript, latitude, utm, wgs84
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 45
- Watchers: 5
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# utm
Bidirectional UTM-WGS84 converter for JavaScript.
[![npm version](https://img.shields.io/npm/v/utm.svg)](https://www.npmjs.org/package/utm)
[![Travis](https://img.shields.io/travis/TimothyGu/utm.svg)](https://travis-ci.org/TimothyGu/utm)Translated directly from [Tobias Bieniek's implementation in Python](https://github.com/Turbo87/utm).
## Usage
```js
var utm = require('utm')
```### `utm.toLatLon(easting, northing, zoneNum, zoneLetter, northern, strict = true)`
Convert from UTM-WGS84 to latitude/longitude coordinates. One and only one of
`zoneLetter` and `northern` must be specified. `strict` option specifies
whether easting and northing are checked against their respective ranges.Returns `{ latitude, longitude }`.
### `utm.fromLatLon(latitude, longitude[, zoneNum])`
Convert from latitude/longitude coordinates to UTM-WGS84. `zoneNum` can be set
to force a specific zone number.Returns `{ easting, northing, zoneNum, zoneLetter }`.