From ffb720a7c8fe4f14a5700c088796ded8528d09dd Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sat, 30 May 2026 17:48:45 -0400 Subject: [PATCH] docs: refresh TypeDoc API output (T-E8-03 QA-A verify) --- .github/wiki/api/functions/formatTime.md | 2 +- .github/wiki/api/functions/init.md | 2 +- .github/wiki/api/functions/spa.md | 2 +- .github/wiki/api/functions/spaFormatted.md | 2 +- .../wiki/api/interfaces/SpaFormattedResult.md | 22 +++++++++---------- .github/wiki/api/interfaces/SpaOptions.md | 22 +++++++++---------- .github/wiki/api/interfaces/SpaResult.md | 22 +++++++++---------- .../wiki/api/type-aliases/SpaFunctionCode.md | 2 +- .github/wiki/api/variables/SPA_ALL.md | 2 +- .github/wiki/api/variables/SPA_ZA.md | 2 +- .github/wiki/api/variables/SPA_ZA_INC.md | 2 +- .github/wiki/api/variables/SPA_ZA_RTS.md | 2 +- 12 files changed, 42 insertions(+), 42 deletions(-) diff --git a/.github/wiki/api/functions/formatTime.md b/.github/wiki/api/functions/formatTime.md index ae400a9..ef7ed0f 100644 --- a/.github/wiki/api/functions/formatTime.md +++ b/.github/wiki/api/functions/formatTime.md @@ -8,7 +8,7 @@ > **formatTime**(`hours`): `string` -Defined in: [index.ts:113](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/index.ts#L113) +Defined in: [index.ts:113](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/index.ts#L113) Purpose: Convert fractional hours to an HH:MM:SS string. Inputs: hours, fractional hours (e.g. 6.5 for "06:30:00"); values ≥24 wrap diff --git a/.github/wiki/api/functions/init.md b/.github/wiki/api/functions/init.md index d8faa48..3317e46 100644 --- a/.github/wiki/api/functions/init.md +++ b/.github/wiki/api/functions/init.md @@ -8,7 +8,7 @@ > **init**(): `Promise`\<`void`\> -Defined in: [index.ts:60](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/index.ts#L60) +Defined in: [index.ts:60](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/index.ts#L60) Purpose: Pre-initialize the WASM module before the first spa() call. Inputs: none diff --git a/.github/wiki/api/functions/spa.md b/.github/wiki/api/functions/spa.md index efc4414..da6e875 100644 --- a/.github/wiki/api/functions/spa.md +++ b/.github/wiki/api/functions/spa.md @@ -8,7 +8,7 @@ > **spa**(`date`, `latitude`, `longitude`, `options?`): `Promise`\<[`SpaResult`](../interfaces/SpaResult.md)\> -Defined in: [index.ts:204](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/index.ts#L204) +Defined in: [index.ts:204](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/index.ts#L204) Purpose: Compute solar position using the NREL SPA algorithm via WASM. Inputs: date, latitude (-90..90), longitude (-180..180), optional SpaOptions diff --git a/.github/wiki/api/functions/spaFormatted.md b/.github/wiki/api/functions/spaFormatted.md index 37419ee..1a3e469 100644 --- a/.github/wiki/api/functions/spaFormatted.md +++ b/.github/wiki/api/functions/spaFormatted.md @@ -8,7 +8,7 @@ > **spaFormatted**(`date`, `latitude`, `longitude`, `options?`): `Promise`\<[`SpaFormattedResult`](../interfaces/SpaFormattedResult.md)\> -Defined in: [index.ts:290](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/index.ts#L290) +Defined in: [index.ts:290](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/index.ts#L290) Purpose: Compute solar position with time fields formatted as HH:MM:SS strings. Inputs: same as spa(): date, latitude, longitude, options diff --git a/.github/wiki/api/interfaces/SpaFormattedResult.md b/.github/wiki/api/interfaces/SpaFormattedResult.md index f8e375b..051da72 100644 --- a/.github/wiki/api/interfaces/SpaFormattedResult.md +++ b/.github/wiki/api/interfaces/SpaFormattedResult.md @@ -6,7 +6,7 @@ # Interface: SpaFormattedResult -Defined in: [types.ts:65](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L65) +Defined in: [types.ts:65](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L65) ## Extends @@ -18,7 +18,7 @@ Defined in: [types.ts:65](https://github.com/acamarata/solar-spa/blob/aa0161a824 > **azimuth**: `number` -Defined in: [types.ts:48](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L48) +Defined in: [types.ts:48](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L48) Topocentric azimuth angle, eastward from north (navigational convention), in degrees. @@ -32,7 +32,7 @@ Topocentric azimuth angle, eastward from north (navigational convention), in deg > **azimuth\_astro**: `number` -Defined in: [types.ts:46](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L46) +Defined in: [types.ts:46](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L46) Topocentric azimuth angle, westward from south (astronomical convention), in degrees. @@ -46,7 +46,7 @@ Topocentric azimuth angle, westward from south (astronomical convention), in deg > **eot**: `number` -Defined in: [types.ts:60](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L60) +Defined in: [types.ts:60](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L60) Equation of time in minutes. @@ -60,7 +60,7 @@ Equation of time in minutes. > **error\_code**: `number` -Defined in: [types.ts:62](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L62) +Defined in: [types.ts:62](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L62) SPA error code. Always 0 on a successful return (non-zero throws). @@ -74,7 +74,7 @@ SPA error code. Always 0 on a successful return (non-zero throws). > **incidence**: `number` -Defined in: [types.ts:50](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L50) +Defined in: [types.ts:50](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L50) Surface incidence angle in degrees. @@ -88,7 +88,7 @@ Surface incidence angle in degrees. > **sun\_transit\_alt**: `number` -Defined in: [types.ts:58](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L58) +Defined in: [types.ts:58](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L58) Sun transit altitude in degrees. @@ -102,7 +102,7 @@ Sun transit altitude in degrees. > **sunrise**: `string` -Defined in: [types.ts:67](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L67) +Defined in: [types.ts:67](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L67) Local sunrise time as HH:MM:SS string. "N/A" during polar day/night. @@ -112,7 +112,7 @@ Local sunrise time as HH:MM:SS string. "N/A" during polar day/night. > **sunset**: `string` -Defined in: [types.ts:69](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L69) +Defined in: [types.ts:69](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L69) Local sunset time as HH:MM:SS string. "N/A" during polar day/night. @@ -122,7 +122,7 @@ Local sunset time as HH:MM:SS string. "N/A" during polar day/night. > **suntransit**: `string` -Defined in: [types.ts:71](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L71) +Defined in: [types.ts:71](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L71) Local sun transit time as HH:MM:SS string. "N/A" during polar day/night. @@ -132,7 +132,7 @@ Local sun transit time as HH:MM:SS string. "N/A" during polar day/night. > **zenith**: `number` -Defined in: [types.ts:44](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L44) +Defined in: [types.ts:44](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L44) Topocentric zenith angle in degrees. diff --git a/.github/wiki/api/interfaces/SpaOptions.md b/.github/wiki/api/interfaces/SpaOptions.md index 2e46c3e..71e8eb1 100644 --- a/.github/wiki/api/interfaces/SpaOptions.md +++ b/.github/wiki/api/interfaces/SpaOptions.md @@ -6,7 +6,7 @@ # Interface: SpaOptions -Defined in: [types.ts:16](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L16) +Defined in: [types.ts:16](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L16) ## Properties @@ -14,7 +14,7 @@ Defined in: [types.ts:16](https://github.com/acamarata/solar-spa/blob/aa0161a824 > `optional` **atmos\_refract?**: `number` -Defined in: [types.ts:37](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L37) +Defined in: [types.ts:37](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L37) Atmospheric refraction at sunrise/sunset in degrees. Default: 0.5667. @@ -24,7 +24,7 @@ Atmospheric refraction at sunrise/sunset in degrees. Default: 0.5667. > `optional` **azm\_rotation?**: `number` -Defined in: [types.ts:35](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L35) +Defined in: [types.ts:35](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L35) Surface azimuth rotation in degrees from south. Default: 0. @@ -34,7 +34,7 @@ Surface azimuth rotation in degrees from south. Default: 0. > `optional` **delta\_t?**: `number` -Defined in: [types.ts:31](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L31) +Defined in: [types.ts:31](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L31) TT-UTC difference in seconds. Default: 67. @@ -44,7 +44,7 @@ TT-UTC difference in seconds. Default: 67. > `optional` **delta\_ut1?**: `number` -Defined in: [types.ts:29](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L29) +Defined in: [types.ts:29](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L29) UT1-UTC correction in seconds. Default: 0. @@ -54,7 +54,7 @@ UT1-UTC correction in seconds. Default: 0. > `optional` **elevation?**: `number` -Defined in: [types.ts:23](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L23) +Defined in: [types.ts:23](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L23) Observer elevation in meters above sea level. Default: 0. @@ -64,7 +64,7 @@ Observer elevation in meters above sea level. Default: 0. > `optional` **function?**: [`SpaFunctionCode`](../type-aliases/SpaFunctionCode.md) -Defined in: [types.ts:39](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L39) +Defined in: [types.ts:39](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L39) SPA function code. Default: SPA_ALL (3). @@ -74,7 +74,7 @@ SPA function code. Default: SPA_ALL (3). > `optional` **pressure?**: `number` -Defined in: [types.ts:25](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L25) +Defined in: [types.ts:25](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L25) Atmospheric pressure in millibars. Default: 1013.25. @@ -84,7 +84,7 @@ Atmospheric pressure in millibars. Default: 1013.25. > `optional` **slope?**: `number` -Defined in: [types.ts:33](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L33) +Defined in: [types.ts:33](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L33) Surface slope in degrees from horizontal. Default: 0. @@ -94,7 +94,7 @@ Surface slope in degrees from horizontal. Default: 0. > `optional` **temperature?**: `number` -Defined in: [types.ts:27](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L27) +Defined in: [types.ts:27](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L27) Temperature in degrees Celsius. Default: 15. @@ -104,7 +104,7 @@ Temperature in degrees Celsius. Default: 15. > `optional` **timezone?**: `number` -Defined in: [types.ts:21](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L21) +Defined in: [types.ts:21](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L21) Hours from UTC. If omitted, derived from the Date object's local offset. For historical dates or DST transitions, pass an explicit value. diff --git a/.github/wiki/api/interfaces/SpaResult.md b/.github/wiki/api/interfaces/SpaResult.md index 58264e9..80a9d3a 100644 --- a/.github/wiki/api/interfaces/SpaResult.md +++ b/.github/wiki/api/interfaces/SpaResult.md @@ -6,7 +6,7 @@ # Interface: SpaResult -Defined in: [types.ts:42](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L42) +Defined in: [types.ts:42](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L42) ## Properties @@ -14,7 +14,7 @@ Defined in: [types.ts:42](https://github.com/acamarata/solar-spa/blob/aa0161a824 > **azimuth**: `number` -Defined in: [types.ts:48](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L48) +Defined in: [types.ts:48](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L48) Topocentric azimuth angle, eastward from north (navigational convention), in degrees. @@ -24,7 +24,7 @@ Topocentric azimuth angle, eastward from north (navigational convention), in deg > **azimuth\_astro**: `number` -Defined in: [types.ts:46](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L46) +Defined in: [types.ts:46](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L46) Topocentric azimuth angle, westward from south (astronomical convention), in degrees. @@ -34,7 +34,7 @@ Topocentric azimuth angle, westward from south (astronomical convention), in deg > **eot**: `number` -Defined in: [types.ts:60](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L60) +Defined in: [types.ts:60](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L60) Equation of time in minutes. @@ -44,7 +44,7 @@ Equation of time in minutes. > **error\_code**: `number` -Defined in: [types.ts:62](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L62) +Defined in: [types.ts:62](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L62) SPA error code. Always 0 on a successful return (non-zero throws). @@ -54,7 +54,7 @@ SPA error code. Always 0 on a successful return (non-zero throws). > **incidence**: `number` -Defined in: [types.ts:50](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L50) +Defined in: [types.ts:50](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L50) Surface incidence angle in degrees. @@ -64,7 +64,7 @@ Surface incidence angle in degrees. > **sun\_transit\_alt**: `number` -Defined in: [types.ts:58](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L58) +Defined in: [types.ts:58](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L58) Sun transit altitude in degrees. @@ -74,7 +74,7 @@ Sun transit altitude in degrees. > **sunrise**: `number` -Defined in: [types.ts:52](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L52) +Defined in: [types.ts:52](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L52) Local sunrise time as fractional hours. @@ -84,7 +84,7 @@ Local sunrise time as fractional hours. > **sunset**: `number` -Defined in: [types.ts:54](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L54) +Defined in: [types.ts:54](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L54) Local sunset time as fractional hours. @@ -94,7 +94,7 @@ Local sunset time as fractional hours. > **suntransit**: `number` -Defined in: [types.ts:56](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L56) +Defined in: [types.ts:56](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L56) Local sun transit time (solar noon) as fractional hours. @@ -104,6 +104,6 @@ Local sun transit time (solar noon) as fractional hours. > **zenith**: `number` -Defined in: [types.ts:44](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L44) +Defined in: [types.ts:44](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L44) Topocentric zenith angle in degrees. diff --git a/.github/wiki/api/type-aliases/SpaFunctionCode.md b/.github/wiki/api/type-aliases/SpaFunctionCode.md index b6a9cb3..60615b7 100644 --- a/.github/wiki/api/type-aliases/SpaFunctionCode.md +++ b/.github/wiki/api/type-aliases/SpaFunctionCode.md @@ -8,4 +8,4 @@ > **SpaFunctionCode** = *typeof* [`SPA_ZA`](../variables/SPA_ZA.md) \| *typeof* [`SPA_ZA_INC`](../variables/SPA_ZA_INC.md) \| *typeof* [`SPA_ZA_RTS`](../variables/SPA_ZA_RTS.md) \| *typeof* [`SPA_ALL`](../variables/SPA_ALL.md) -Defined in: [types.ts:10](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L10) +Defined in: [types.ts:10](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L10) diff --git a/.github/wiki/api/variables/SPA_ALL.md b/.github/wiki/api/variables/SPA_ALL.md index 2710a26..aab8ef5 100644 --- a/.github/wiki/api/variables/SPA_ALL.md +++ b/.github/wiki/api/variables/SPA_ALL.md @@ -8,6 +8,6 @@ > `const` **SPA\_ALL**: `3` -Defined in: [types.ts:8](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L8) +Defined in: [types.ts:8](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L8) Compute all outputs: zenith, azimuth, incidence, and rise/transit/set. diff --git a/.github/wiki/api/variables/SPA_ZA.md b/.github/wiki/api/variables/SPA_ZA.md index ea821d8..c4325ac 100644 --- a/.github/wiki/api/variables/SPA_ZA.md +++ b/.github/wiki/api/variables/SPA_ZA.md @@ -8,6 +8,6 @@ > `const` **SPA\_ZA**: `0` -Defined in: [types.ts:2](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L2) +Defined in: [types.ts:2](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L2) Compute zenith and azimuth only. diff --git a/.github/wiki/api/variables/SPA_ZA_INC.md b/.github/wiki/api/variables/SPA_ZA_INC.md index 06fb719..138e20f 100644 --- a/.github/wiki/api/variables/SPA_ZA_INC.md +++ b/.github/wiki/api/variables/SPA_ZA_INC.md @@ -8,6 +8,6 @@ > `const` **SPA\_ZA\_INC**: `1` -Defined in: [types.ts:4](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L4) +Defined in: [types.ts:4](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L4) Compute zenith, azimuth, and incidence angle. diff --git a/.github/wiki/api/variables/SPA_ZA_RTS.md b/.github/wiki/api/variables/SPA_ZA_RTS.md index b0a97d3..fcc535a 100644 --- a/.github/wiki/api/variables/SPA_ZA_RTS.md +++ b/.github/wiki/api/variables/SPA_ZA_RTS.md @@ -8,6 +8,6 @@ > `const` **SPA\_ZA\_RTS**: `2` -Defined in: [types.ts:6](https://github.com/acamarata/solar-spa/blob/aa0161a82431adb93846e39b5278ac65de379dec/src/types.ts#L6) +Defined in: [types.ts:6](https://github.com/acamarata/solar-spa/blob/3c848806ab852464d76baf7e3fc0ca58f5e42fd9/src/types.ts#L6) Compute zenith, azimuth, and rise/transit/set times.