mirror of
https://github.com/acamarata/moon-cycle.git
synced 2026-07-01 19:24:31 +00:00
24 lines
555 B
Markdown
24 lines
555 B
Markdown
[**moon-cycle v2.0.0**](../README.md)
|
||
|
||
***
|
||
|
||
[moon-cycle](../README.md) / YEAR\_IMAGES
|
||
|
||
# Variable: YEAR\_IMAGES
|
||
|
||
> `const` **YEAR\_IMAGES**: `8760` = `8760`
|
||
|
||
Defined in: [types.ts:77](https://github.com/acamarata/moon-cycle/blob/208f7ffba1c1bce684a1b90ff94e52538d2632d3/src/types.ts#L77)
|
||
|
||
Number of images in the yearly (`my`) dataset.
|
||
|
||
Equals 365 days × 24 hours. Filenames range from `"0001.webp"` to
|
||
`"8760.webp"`.
|
||
|
||
## Example
|
||
|
||
```ts
|
||
import { YEAR_IMAGES } from 'moon-cycle';
|
||
// Total hours in the yearly dataset
|
||
console.log(YEAR_IMAGES); // 8760
|
||
```
|