Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
grads-queryable
Advanced tools
This is a queryable instance of my grads software. The intension is to make flight path predictions easier for you (and for NOAA) by reducing the amount of weather data requests you'll need to make for ambitious (where bounding box for data is unknown) requests. It's focused around wind data, but could be used for other values if needed. (Maybe waves? Who knows. That'd be cool)
This is not flight path prediction software on its own - check out fnstraj2 for that.
var gradsQ = new GradsQ( lat, lon, alt, options )
gradsQ.query( timeOffset, lat, lon, alt )
npm i --save grads grads-queryable
var GradsQ = require('grads-queryable');
// Your launch or starting location
var gradsQ = new GradsQ( lat, lon, alt );
// Since the initializer needs to make some requests, you'll need to put a .ready()
gradsQ.ready(function() {
var flightPath = [];
// Linear vertical climb to 8000m
// Lets say you're starting on the ground
// Your max altitude is 8000m
// In each `moment` of flight, you ascend 5m
for ( var alt = 0; alt < 8000; alt + 60; ) {
// Lets say each `moment` represents 1 minute
// That means our climb rate is 1m/s.
var timeOffset = 1;
var myValues = gradsQ.query( timeOffset, lat, lon, alt );
// Calculate new location etc etc
flightPath.push({
alt: x,
lat: y,
lon: z
});
}
// Make a cool map with flightPath
// :D
});
FAQs
Queryable instance of grads data for predictors and stuff
The npm package grads-queryable receives a total of 0 weekly downloads. As such, grads-queryable popularity was classified as not popular.
We found that grads-queryable 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.