Skip to main content

Overview

@math.gl/sun is a tiny JavaScript library for calculating sun position for the given location and time.

Installation

npm install @math.gl/sun

Usage

import {getSunDirection} from '@math.gl/sun';
const latitude = 37.7749;
const longitude = -122.4194;
const sunDir = getSunDirection(Date.now(), latitude, longitude);

Attribution

This module is a fork of @mourner's SunCalc under BSD 2-clause license.