npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nasa-delta-t

v1.0.3

Published

Polynomial expressions for delta-T provided by NASA.

Downloads

10

Readme

nasa-delta-t

Polynomial expressions for delta-T provided by NASA.

About

When you calculate the positions of the sun and moon, you need TD (Terrestrial Dynamical TIme). However, we all live in UT (Universal Time), hence needs the parameter, so called "delta-T" (ΔT). While NASA provide look-up tables for deducted ΔTs, they also provide simplified arithmetic expressions to make our lives easier. This module simply intends to provide these expressions as nodeJS functions.

Install

For NodeJS:

npm install nasa-delta-t

For browsers, simply download dist/nasa-delta-t.min.js and use it.

Usage

For NodeJS:

const NasaDeltaT = require('nasa-delta-t');
const { getDeltaT } = NasaDeltaT;

const deltaT = getDeltaT(2009, 1); // Satoshi Nakamoto mined the genesis block of Bitcoin
console.log(deltaT);

> 66.28986420312503

For browsers:

<script src="nasa-delta-t.min.js"></script>

<script>
var deltaT = NasaDeltaT.getDeltaT(2009, 1);
console.log(deltaT);
</script>

> 66.28986420312503

API

getDecimalYear(year, month)

For the given year and month, returns decimalYear.
Giving a negative year, denotes the year is B.C.

Satoshi Nakamoto mined the genesis block for the first Bitcoin network
on January 2009 which makes the decimalYear:

> 2009.0416666666667

getFunctionFromDecimalYear(decimalYear)

For the given decimalYear, returns the corresponding function.

getFunctionFromDecimalYear(2009.0416666666667)
> getAD2005toAD2050

getDeltaTFromDecimalYear(decimalYear)

For the given decimalYear, returns deltaT.

getFunctionFromDecimalYear(2009.0416666666667)
> 66.28986420312503

getDeltaT(year, month)

getDeltaT(2009, 1)
> 66.28986420312503

getBeforeBC500(decimalYear)

For the given decimalYear, returns deltaT.
Before the year -500.

getBC500toAD500(decimalYear)

For the given decimalYear, returns deltaT.
Between years -500 and +500.

getAD500toAD1600(decimalYear)

For the given decimalYear, returns deltaT.
Between years +500 and +1600.

getAD1600toAD1700(decimalYear)

For the given decimalYear, returns deltaT.
Between years +1600 and +1700.

getAD1700toAD1800(decimalYear)

For the given decimalYear, returns deltaT.
Between years +1700 and +1800.

getAD1800toAD1860(decimalYear)

For the given decimalYear, returns deltaT.
Between years +1800 and +1860.

getAD1860toAD1900(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1860 and 1900.

getAD1900toAD1920(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1900 and 1920.

getAD1920toAD1941(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1920 and 1941.

getAD1941toAD1961(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1941 and 1961.

getAD1961toAD1986(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1961 and 1986.

getAD1986toAD2005(decimalYear)

For the given decimalYear, returns deltaT.
Between years 1986 and 2005.

getAD2005toAD2050(decimalYear)

For the given decimalYear, returns deltaT.
Between years 2005 and 2050.

getAD2050toAD2150(decimalYear)

For the given decimalYear, returns deltaT.
Between years 2050 and 2150.

getAfterAD2150(decimalYear)

For the given decimalYear, returns deltaT.
After 2150.

Installed NPM Packages

In case you're wondering, here are the installed NPM packages. Only for dev purposes.

yarn add --dev eslint eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node @babel/core @babel/cli @babel/preset-env @babel/register browserify babelify uglifyify licensify tape

References

License

MIT License
Copyright (c) 2019 Hiroki Minagawa

See LICENSE for details.