
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-geopoint
Advanced tools
JavaScript coordinate conversion library between Decimal Degree and Deg-Min-Sec.
#node-geopoint
JavaScript coordinate conversion library between Decimal Degree and Deg-Min-Sec.
This library expects latitude and longitude in EPSG:4326 (WGS84). To convert between different projections check out Proj4js.
npm install node-geopoint
const geo = require('node-geopoint')
const lat = 58.74554729994484
const lng = 24.72504500749274
const res = geo(lat, lng)
console.log(res.lat.deg) // 58° 44' 43.97"
console.log(res.lng.deg) // 24° 43' 30.16"
const geo = require('node-geopoint')
const lat = '58° 44\' 43.97"'
const lng = '24° 43\' 30.16"'
const res = geo(lat, lng)
console.log(res.lat.dec) // 58.74554722222222
console.log(res.lng.dec) // 24.725044444444443
FAQs
JavaScript coordinate conversion library between Decimal Degree and Deg-Min-Sec.
We found that node-geopoint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.