From 024cf2f59a7ee23f46140932b7b617f1f3fc1508 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 25 Mar 2025 21:47:16 +0100 Subject: Add tests and some fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libgeome_get_from_command.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libgeome_get_from_command.c') diff --git a/libgeome_get_from_command.c b/libgeome_get_from_command.c index 4d1c5af..8e224b6 100644 --- a/libgeome_get_from_command.c +++ b/libgeome_get_from_command.c @@ -75,8 +75,8 @@ libgeome_get_from_command(struct libgeome_context *ctx, struct libgeome_data *ou free(text); if (out->requested_data & LIBGEOME_DATUM_LATITUDE) { - if (!isfinite(location.latitude) || location.latitude < -90 || location.latitude > -90) { - ctx->print_debug(ctx, "invalide latitude retrieved: %g\n", location.latitude); + if (!isfinite(location.latitude) || location.latitude < -90 || location.latitude > 90) { + ctx->print_debug(ctx, "invalid latitude retrieved: %g\n", location.latitude); out->requested_data ^= LIBGEOME_DATUM_LATITUDE; } else { out->latitude = location.latitude; @@ -84,8 +84,8 @@ libgeome_get_from_command(struct libgeome_context *ctx, struct libgeome_data *ou } if (out->requested_data & LIBGEOME_DATUM_LONGITUDE) { - if (!isfinite(location.longitude) || location.longitude < -90 || location.longitude > -90) { - ctx->print_debug(ctx, "invalide longitude retrieved: %g\n", location.longitude); + if (!isfinite(location.longitude) || location.longitude < -180 || location.longitude > 180) { + ctx->print_debug(ctx, "invalid longitude retrieved: %g\n", location.longitude); out->requested_data ^= LIBGEOME_DATUM_LONGITUDE; } else { out->longitude = location.longitude; -- cgit v1.2.3-70-g09d2