Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
npm install geoutil --save
Get the distance in meters
between two points. Technical
details.
var pointA = [ 60.39826, 5.32907 ];
var pointB = [ 60.62869, 6.41474 ];
geoutil.pointDistance(pointA, pointB);
// 64781.55866944858
Get total distance in meters
for polyline. Technical
details.
var line = [
[ 61.498792, 8.636448 ],
[ 61.500270, 8.652638 ],
[ 61.499957, 8.660266 ],
[ 61.501822, 8.672846 ],
[ 61.503748, 8.696228 ]
];
geoutil.lineDistance(line);
// 532.126784613296
Get total area in meters
^2 for polygon. Technical
details.
var polygon = [[
[ 61.498792, 8.636448 ]
[ 61.500270, 8.652638 ]
[ 61.499957, 8.660266 ]
[ 61.501822, 8.672846 ]
[ 61.503748, 8.696228 ]
[ 61.498792, 8.636448 ]
]];
geoutil.polygonArea(poly);
// 40.43198051882604
If you are computing distances on GeoJSON data be sure to set the inverse
option (last parameter on lineDistance()
and pointDistance()
) to true
.
FAQs
Geographic formulas and geospatial transformations
We found that geoutil 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.