1.0.0 • Published 6 years ago

geographic-coordinate-converter v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Geographic Coordinate Format Converter

A library to transform geospatial coordinates.

Installation

To install the stable version:

npm install --save geographic-coordinate-converter

This assumes you are using npm as your package manager.

Usage

Instance the converter from one of the following methods:

import { CoordinateConverter } from "./coordinate-converter"; 
		
CoordinateConverter.fromDecimal(array)
CoordinateConverter.fromDecimal(string)
CoordinateConverter.fromDegreeMinutes(string)
CoordinateConverter.fromDegreeMinutesSeconds(string)

Convert to the desired format:

.toDecimalArray();
.toDecimal();
.toDegreeMinutes()
.toDegreeMinutesSeconds()	

Examples

CoordinateConverter.fromDecimal([-36.01011, -2.34856])
	.toDegreeMinutes() //"36º 00.607' S 002º 20.914' W"
CoordinateConverter.fromDegreeMinutes("36º 00.607' S 002º 20.914' W")
	.toDegreeMinutesSeconds() //"36º 00' 36.4'' S 002º 20' 54.8'' W"
CoordinateConverter.fromDegreeMinutesSeconds("36º 00' 36.4'' S 002º 20' 54.8'' W")
	.toDecimal() //"-36.01011 -2.34856"
CoordinateConverter.fromDegreeMinutes("36º 00.607' S 002º 20.914' W")
	.toDecimalArray() //[-36.01012, -2.34857]		

License

MIT