Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

thrustcurve-db

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thrustcurve-db

ThrustCurve.org model rocket motor and thrust curve data as a single JSON file

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
decreased by-59.37%
Maintainers
1
Weekly downloads
 
Created
Source

thrustcurve-db

ThrustCurve.org model rocket motor data as a single JSON file.

This module is a rebundling of the model rocket motor data found at John Coker's thrustcurve.org website ("TC"). It is available here in JSON format, or as an ESM or CommonJS module.

Data is pulled from the TC /api/v1/search response API. For brevity, not all fields are included in the dataset here, however they can be added if requested. (Just file an issue).

There is one additional field, samples, which is the actual thrust data as provided by the TC "/api/vi/download" endpoint. This is normalized to always have [0, 0] as the first data point. In cases where more than one sample file is available for a motor, the first "cert"(ified) data file is used. Otherwise it will be whichever data file the API returns first.

See also, the included TypeScript definition.

Installation

npm i thrustcurve-db
yarn add thrustcurve-db

Usage

Import with ESM or CommonJS:

import MOTORS from "thrustcurve-db"; // ESM
const MOTORS = require("thrustcurve-db"); // CommonJS

Note: At present this requires you run node with the --experimental-json-modules flag

Fetch from JSDelivr CDN:

const MOTORS = await fetch(
  "https://cdn.jsdelivr.net/npm/thrustcurve-db@latest/thrustcurve-db.json"
).then(res => res.json());

Example

// Find all J motors currently in production
MOTORS.filter(m => m.availability === "regular" && m.impulseClass === "J");

Issues & Contributions

The data provided here is sourced from thrustcurve.org. Omissions and errors in rocket data should be directed there. Any systematic problems or suggestions for how the data here is presented may be reported here.

Keywords

FAQs

Package last updated on 27 Feb 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc