# jakea

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

Latest version **1.0.0** (published 2024-03-19) · ISC license · 0 weekly downloads

## Install

```sh
npm install jakea
pnpm add jakea
yarn add jakea
bun add jakea
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2024-03-19 |
| First published | 2024-03-19 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 2.8 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| Maintainers | jakea5183 |

## Links

- npm: https://www.npmjs.com/package/jakea
- Repository: https://github.com/jakea5183/jakea
- Homepage: https://github.com/jakea5183/jakea#readme
- Issues: https://github.com/jakea5183/jakea/issues
- npm.io page: https://npm.io/package/jakea

## Dependencies (8)

- [axios](https://npm.io/package/axios.md) ^0.24.0
- [moment](https://npm.io/package/moment.md) ^2.29.1
- [glushkivan](https://npm.io/package/glushkivan.md) 1.0.0
- [ls-v1-func](https://npm.io/package/ls-v1-func.md) 1.0.0
- [spleef-mod](https://npm.io/package/spleef-mod.md) 1.0.0
- [selivanovpetr](https://npm.io/package/selivanovpetr.md) 1.0.0
- [sharonhall-config](https://npm.io/package/sharonhall-config.md) 1.0.0
- [elizabethmiller-v2](https://npm.io/package/elizabethmiller-v2.md) 1.0.0

## Recent versions

- 1.0.0 (latest) — 2024-03-19

## README

# 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
```javascript
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);
    });
```

---
_Source: https://npm.io/package/jakea · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
