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.
geojson-elevation
Advanced tools
Add juicy elevation data to your fresh GeoJSON.
npm install --save geojson-elevation
The module exports a single function, addElevation
:
addElevation(geojson, elevationProvider, cb)
Where
geojson
is the GeoJSON object to add elevation data toelevationProvider
is an object with the method getElevation(latLng, cb)
- typically,
you pass a TileSet
instance from node-hgtcb
is a callback that is called when the elevation data has been added (or an error occurs),
the callback should take to args: err
(undefined if the operation succeeds) and geojson
, which
is the GeoJSON instance that was passed to the functionExample:
var addElevation = require('geojson-elevation').addElevation,
TileSet = require('node-hgt').TileSet;
addElevation(geojson, new TileSet('./data'), function(err) {
if (!err) {
console.log(JSON.stringify(geojson));
} else {
console.log(err);
}
});
FAQs
Add elevation data to GeoJSON objects
The npm package geojson-elevation receives a total of 1 weekly downloads. As such, geojson-elevation popularity was classified as not popular.
We found that geojson-elevation 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.