diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-24 22:58:14 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-24 22:58:14 +0100 |
commit | 12d7f9b45303fb458cb21a3e0e430af96c781d8b (patch) | |
tree | 2b9c674f474d8ab4d6b35c657d4c005b4089192d /libgeome_get_from_time.c | |
download | libgeome-12d7f9b45303fb458cb21a3e0e430af96c781d8b.tar.gz libgeome-12d7f9b45303fb458cb21a3e0e430af96c781d8b.tar.bz2 libgeome-12d7f9b45303fb458cb21a3e0e430af96c781d8b.tar.xz |
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libgeome_get_from_time.c')
-rw-r--r-- | libgeome_get_from_time.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libgeome_get_from_time.c b/libgeome_get_from_time.c new file mode 100644 index 0000000..b512a34 --- /dev/null +++ b/libgeome_get_from_time.c @@ -0,0 +1,38 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +int +libgeome_get_from_time(struct libgeome_context *ctx, struct libgeome_data *out) +{ + time_t utc, local, uoff; + struct tm tm; + + utc = time(NULL); + if (utc < 0) { + ctx->print_error(ctx, "time: %s\n", strerror(errno)); + return -1; + } + if (!localtime_r(&utc, &tm)) { + ctx->print_error(ctx, "localtime_r: %s\n", strerror(errno)); + return -1; + } + + local = (time_t)(tm.tm_hour * 60 * 60); + local += (time_t)(tm.tm_min * 60); + local += (time_t)tm.tm_sec; + utc %= (time_t)(24 * 60 * 60); + uoff = local - utc; + + out->requested_data &= LIBGEOME_DATUM_LONGITUDE; + if (out->requested_data) { + out->longitude = (double)uoff / (24 * 60 * 60 / 360); + out->longitude = fmod(out->longitude, 360); + if (out->longitude < -180) + out->longitude += 360; + else if (out->longitude > 180) + out->longitude -= 360; + } + + return 0; +} |