From 06a863cfb689d5a34301d5a60e5d7951d2767c74 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 7 Mar 2025 21:41:53 +0100 Subject: Use libred to calculate the solar elevation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/redshift.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/redshift.c') 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 */ #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); -- cgit v1.2.3-70-g09d2