# utm-converter

> A converter between geographic coordinates in WGS84 and Universal Transverse Mercator (UTM) coordinates.

Latest version **0.1.1** (published 2016-03-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install utm-converter
pnpm add utm-converter
yarn add utm-converter
bun add utm-converter
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2016-03-04 |
| First published | 2016-03-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Aram Kocharyan |
| Maintainers | aramk |

## Links

- npm: https://www.npmjs.com/package/utm-converter
- Repository: https://github.com/urbanetic/utm-converter
- Homepage: https://github.com/urbanetic/utm-converter#readme
- Issues: https://github.com/urbanetic/utm-converter/issues
- npm.io page: https://npm.io/package/utm-converter

## Recent versions

- 0.1.1 (latest) — 2016-03-04

## README

UTM Converter
=================

A converter between geographic coordinates in WGS84 and Universal Transverse Mercator (UTM) coordinates.

## Usage

```
var converter = new UtmConverter();
var wgsCoord = [145.240917, -37.830436];
var utmResult = converter.toUtm({coord: wgsCoord});
// {"coord":{"x":345196.1971905405,"y":5811540.431764047},"zone":55,"isSouthern":true}

var wgsResult = converter.toWgs(utmResult);
// {"coord":{"longitude":145.24091699999727,"latitude":-37.83043599999867}}
```

## License

Released under the MIT license. Original library by [Chuck Taylor](http://home.hiwaay.net/~taylorc/toolbox/geography/geoutm.html).

---
_Source: https://npm.io/package/utm-converter · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
