Socket
Socket
Sign inDemoInstall

coordinates-conversion

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    coordinates-conversion

A library to convert coordinates from DMS to DD.


Version published
Maintainers
1
Install size
4.92 kB
Created

Readme

Source

Coordinates Converter

A utility library for helping convert coordinates from D°M'S" (degrees, minutes and seconds) format to DD (decimal degrees).

Example:

Let's say we have a coordinate in DMS format: 19°25'57.3"N 99°07'59.5"W. We can use the library to convert this format into decimal degrees.

First we import the library:

const Coordinates = require('coordinates-converter');

A coordinate can be constructed from a string if it follows this format:

const coordWithSymbols = new Coordinate('19°25\'57.3"N 99°07\'59.5"W'); 
// quotes or double quotes have to be escaped.

const coordWithSpaces = new Coordinate('19 25 57.3 N 99 07 59.5 W'); 

Currently, library only accepts orientations (N, S, E, W) proceeding the coordinate's numbers.

Once we have a coordinate constructed we can access it's properties:

coordWithSpaces.latitude; // DMS { degrees: 19, minutes: 25, seconds: 57.3, orientation: 'N' }
coordWithSpaces.longitude; // DMS { degrees: 99, minutes: 7, seconds: 59.5, orientation: 'W' }

Each member of the coordinate is a DMS object. Which have it's own properties:

coordWithSpaces.latitude.degrees; // 19
coordWithSpaces.latitude.minutes; // 25
coordWithSpaces.latitude.degrees; // 57.3
coordWithSpaces.latitude.orientation; // 'N'

To convert format we use function .toDd():

coordWithSpaces.toDd() // [ 19.432583, -99.133194 ]

Keywords

FAQs

Last updated on 12 Apr 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc