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.
@behaver/celestial-coordinate
Advanced tools
CelestialCoordinate 是一个基于 NodeJS 开发的天文学坐标计算工具,主要可被用于天体天球坐标的转换和处理。
其中包含的天球坐标组件分别有:
点击上述链接,可查看它们的详细文档。
通过 npm 安装,在你的 node 项目目录下执行:
npm install @behaver/celestial-coordinate
安装完成后,调用即可:
const { CelestialCoordinate } = require('@behaver/celestial-coordinate');
const { JDateRepository } = require('@behaver/jdate');
const { CelestialCoordinate } = require('@behaver/celestial-coordinate');
// 构建天球坐标实例
let CC = new CelestialCoordinate({
withNutation: true,
withAnnualAberration: true,
});
// 生成黄道坐标对象
let ECC = CC.create('ecc', {
time: new JDateRepository(2446896),
longitude: 125.88,
latitude: 32.45,
});
// 转换至赤道坐标对象
let EQC = CC.transform(ECC).to('eqc');
// 输出赤道经度度数
console.log(EQC.longitude.getDegrees());
options
天球坐标参数项对象
constructor(options)
构造函数
create(sys, opts)
生成天球坐标对象:
transform(coord, options)
转换天球坐标:
The ISC license.
FAQs
The package for handling celestial coordinate.
We found that @behaver/celestial-coordinate 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.