1.0.0 • Published 2 months ago

jakea v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

Jakea

Jakea is a Node.js module for calculating solar-related parameters based on geographic location and time.

Installation

You can install this module via npm: npm install jakea

Usage

const solarCalc = require('solarcalc');

const latitude = 37.7749; // Example latitude (San Francisco)
const longitude = -122.4194; // Example longitude (San Francisco)
const date = new Date(); // Current date
const zenith = 90.83; // Default zenith angle for solar elevation calculation

solarCalc.calculateSolarElevation(latitude, longitude, date, zenith)
    .then(solarElevation => {
        console.log('Solar Elevation:', solarElevation);
    })
    .catch(error => {
        console.error('Error:', error.message);
    });