Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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.
The npm package @behaver/celestial-coordinate receives a total of 13 weekly downloads. As such, @behaver/celestial-coordinate popularity was classified as not popular.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.