Skip to content

oyve/weather-formulas

Repository files navigation

License: GPL v3 Node.js CI

weather-formulas

A library of atmospheric and weather-related calculations.

  • Includes test code for all formulas.
  • Supports custom valuation sets where applicable.
  • Supports both ES Module (ESM) and CommonJS (CJS).

Table of Contents

Features

Temperature

  • Dew Point: Calculate the dew point using the Magnus formula or Arden Buck equation.
  • Wind Chill: Estimate the perceived temperature based on wind speed and air temperature.
  • (Australian) Apparent Temperature: Calculate the apparent temperature considering humidity and wind.
  • Heat Index: Measure the perceived temperature based on air temperature and humidity.
  • Humidex: Calculate the humidex, a Canadian measure of perceived temperature.
  • Potential Temperature: Calculate the temperature an air parcel would have if brought to a standard pressure.
  • Virtual Temperature: Calculate the temperature accounting for water vapor in the air.
  • Lapse Rate: Calculate the rate of temperature change with altitude.
  • Dynamic lapse rate: Calculate the lapse rate dynamically based on readings.
  • Weighted Average Temperature: Calculate the weighted average temperature based on altitude differences.
  • Adjust Temperature by Lapse Rate: Adjust temperature based on a fixed lapse rate.

Humidity

Pressure

  • Pressure Altitude: Calculate the altitude based on observed pressure.
  • Density Altitude: Calculate the altitude adjusted for temperature and air density.
  • Barometric Formula: Calculate pressure at a given altitude using the barometric formula.
  • Adjust Pressure To Sea Level:
    • Simple formula: A quick approximation for standard conditions.
    • Advanced formula: A more accurate calculation using the barometric formula.
    • By dynamic lapse rate: Adjust pressure using a dynamically calculated lapse rate.
    • By historical data: Adjust pressure using historical readings.

Install

Install the library using npm:

$ npm install weather-formulas

How to Use

ES Modules (ESM)

If your project is configured to use ES Modules (e.g., "type": "module" in package.json), you can use the import syntax to load the package:

import { temperature, humidity, pressure } from 'weather-formulas';

// Example usage
const RH = humidity.relativeHumidity(298.15, 293.15); // 25°C and 20°C in Kelvin
console.log(`Relative Humidity: ${RH}%`);

CommonJS (CJS)

If your project uses CommonJS (e.g., no "type": "module" in package.json), you can use the require syntax to load the package:

const { temperature, humidity, pressure } = require('weather-formulas');

// Example usage
const RH = humidity.relativeHumidity(298.15, 293.15); // 25°C and 20°C in Kelvin
console.log(`Relative Humidity: ${RH}%`);

Advanced Examples

Use a provided valuation set:

const valuationSet = temperature.DEW_POINT_VALUATIONS.DAVID_BOLTON;
const actual = temperature.dewPointMagnusFormula(298.15, 60, valuationSet); // 25°C and 60% humidity
console.log(`Dew Point: ${actual} K`);

Use a custom valuation set:

const valuationSet = { a: 6, b: 17, c: 250, d: 234.5 };
const actual = temperature.dewPointArdenBuckEquation(298.15, 60, valuationSet); // 25°C and 60% humidity
console.log(`Dew Point: ${actual} K`);

Inspect code/tests for all possibilities.

Contribute

Please feel free to contribute by creating a Pull Request including test code, or by suggesting other formulas.

License

This project is licensed under the GPL v3 License.

Support

For support, please open an issue in the GitHub repository.

Disclaimer

Always verify calculations before using in production as edge cases due to floating point errors may exist for large numbers, and which may not be covered by tests today. Please report any issues.