diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-07 21:41:53 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-07 21:41:53 +0100 |
commit | 06a863cfb689d5a34301d5a60e5d7951d2767c74 (patch) | |
tree | 7ccd3806d4b8ea3d0dc985e70e4411a28d354b0b /src/redshift.c | |
parent | Remove unused code (diff) | |
download | redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.gz redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.bz2 redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.xz |
Use libred to calculate the solar elevation
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/redshift.c b/src/redshift.c index 1fb950d..b149754 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -18,7 +18,6 @@ * Copyright (c) 2025 Mattias Andrée <m@maandre.se> */ #include "common.h" -#include "solar.h" /* poll.h is not available on Windows but there is no Windows location provider * using polling. On Windows, we just define some stubs to make things compile. @@ -543,7 +542,9 @@ run_continual_mode(const struct location_provider *provider, transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); period = get_period_from_elevation(scheme, elevation); transition_prog = get_transition_progress_from_elevation(scheme, elevation); @@ -915,7 +916,9 @@ main(int argc, char *argv[]) transition_prog = get_transition_progress_from_time(scheme, time_offset); } else { /* Current angular elevation of the sun */ - double elevation = solar_elevation(now, loc.lat, loc.lon); + double elevation; + if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + eprintf("libred_solar_elevation:"); if (options.verbose) { /* TRANSLATORS: Append degree symbol if possible. */ printf(_("Solar elevation: %f\n"), elevation); |