文件名称:planetary:计算太阳系中的行星位置
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-08 08:58:40
JavaScript
行星 行星计算给定日期的行星排列,从地球(地心说)看。 安装 安装节点,如果你还没有: NPM 安装行星: npm install planetary 例子 var planetary = require ( 'planetary' ) ; var now = new Date ( ) ; var maxSeparation = 8 ; // maximum degrees of separation of planets. Default is 5. var alignments = planetary . alignments ( now , maxSeparation ) ; 结果是给定日期的行星排列数组。 每个对齐本身都是一个数组,列出了对齐中的行星。 来源 源自
【文件预览】:
planetary-master
----.gitignore(518B)
----package.json(418B)
----Makefile(205B)
----LICENSE(1KB)
----Readme.md(678B)
----lib()
--------index.js(6KB)
----test()
--------index.js(552B)