
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
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-queryablevar 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
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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.