diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-08 15:59:45 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-08 15:59:45 +0100 |
commit | d937713c424a6cb1a365a1ade214c97ab5f7f357 (patch) | |
tree | 3af203319480c426c599be5e2c3f83bdb13f24eb /src/redshift.c | |
parent | minor misc improvements (diff) | |
download | redshift-ng-d937713c424a6cb1a365a1ade214c97ab5f7f357.tar.gz redshift-ng-d937713c424a6cb1a365a1ade214c97ab5f7f357.tar.bz2 redshift-ng-d937713c424a6cb1a365a1ade214c97ab5f7f357.tar.xz |
.lat{ => itude}, .lon{ => gitude}
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 16 |
1 files changed, 8 insertions, 8 deletions
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. */ |