From d937713c424a6cb1a365a1ade214c97ab5f7f357 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 8 Mar 2025 15:59:45 +0100 Subject: .lat{ => itude}, .lon{ => gitude} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/redshift.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/redshift.c') diff --git a/src/redshift.c b/src/redshift.c index 7170a03..295b1d4 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -190,8 +190,8 @@ print_location(const struct location *location) The string following each number is an abreviation for north, source, east or west (N, S, E, W). */ printf(_("Location: %.2f %s, %.2f %s\n"), - fabs(location->lat), location->lat >= 0.0 ? north : south, - fabs(location->lon), location->lon >= 0.0 ? east : west); + fabs(location->latitude), location->latitude >= 0.0 ? north : south, + fabs(location->longitude), location->longitude >= 0.0 ? east : west); } /* Interpolate color setting structs given alpha. */ @@ -379,12 +379,12 @@ gamma_is_valid(const double gamma[3]) static int location_is_valid(const struct location *location) { - if (!WITHIN(MIN_LATITUDE, location->lat, MAX_LATITUDE)) { + if (!WITHIN(MIN_LATITUDE, location->latitude, MAX_LATITUDE)) { /* TRANSLATORS: Append degree symbols if possible. */ weprintf(_("Latitude must be between %.1f and %.1f.\n"), MIN_LATITUDE, MAX_LATITUDE); /* TODO \n */ return 0; } - if (!WITHIN(MIN_LONGITUDE, location->lon, MAX_LONGITUDE)) { + if (!WITHIN(MIN_LONGITUDE, location->longitude, MAX_LONGITUDE)) { /* TRANSLATORS: Append degree symbols if possible. */ weprintf(_("Longitude must be between %.1f and %.1f.\n"), MIN_LONGITUDE, MAX_LONGITUDE); /* TODO \n */ return 0; @@ -544,7 +544,7 @@ run_continual_mode(const struct location_provider *provider, LOCATION_STATE *loc } else { /* Current angular elevation of the sun */ double elevation; - if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + if (libred_solar_elevation(loc.latitude, loc.longitude, &elevation)) eprintf("libred_solar_elevation:"); period = get_period_from_elevation(scheme, elevation); @@ -653,8 +653,8 @@ run_continual_mode(const struct location_provider *provider, LOCATION_STATE *loc } if (new_available && - (!exact_eq(new_loc.lat, loc.lat) || - !exact_eq(new_loc.lon, loc.lon) || + (!exact_eq(new_loc.latitude, loc.latitude) || + !exact_eq(new_loc.longitude, loc.longitude) || new_available != location_available)) { loc = new_loc; print_location(&loc); @@ -876,7 +876,7 @@ main(int argc, char *argv[]) } else { /* Current angular elevation of the sun */ double elevation; - if (libred_solar_elevation(loc.lat, loc.lon, &elevation)) + if (libred_solar_elevation(loc.latitude, loc.longitude, &elevation)) eprintf("libred_solar_elevation:"); if (options.verbose) { /* TRANSLATORS: Append degree symbol if possible. */ -- cgit v1.2.3-70-g09d2