-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b386e2
commit c753770
Showing
8 changed files
with
1,073 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# utm-utils | ||
Utility Functions for Working with Universal Transverse Mercator | ||
Super Light-Weight Utility Functions for Working with Universal Transverse Mercator | ||
|
||
# Usage | ||
## Check if EPSG Code Refers to UTM | ||
```javascript | ||
const isUTM = require('utm-utils/isUTM'); | ||
|
||
const result = isUTM(32619) | ||
//true | ||
``` | ||
|
||
# Get Hemisphere for UTM | ||
```javascript | ||
const getHemisphere = require('utm-utils/getHemisphere.js'); | ||
|
||
const hemisphere = getHemisphere('32617') | ||
// N | ||
``` | ||
|
||
# Get Zone for EPSG Code | ||
```javascript | ||
const getZone = require('utm-utils/getZone.js'); | ||
|
||
const zone = getHemisphere('32617') | ||
// 17 | ||
``` | ||
|
||
# Support | ||
Email the package author at [email protected] or post an issue at https://github.com/danieljdufour/utm-utils/issues |
Oops, something went wrong.