From 6ac5e96260903e9a0d1f0f061df6021b8fe1071c Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Thu, 20 Mar 2025 10:20:08 -0400 Subject: [PATCH] Fix logic bug in astro. --- examples/astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/astro b/examples/astro index a672f52f..09745288 100755 --- a/examples/astro +++ b/examples/astro @@ -33,7 +33,7 @@ EOF remind -g "-i\$Latitude=\"$latitude\"" "-i\$Longitude=\"$longitude\"" -q -@2 - "$@" <<'EOF' SET $AddBlankLines 0 FSET angle_to_direction(x) \ -IIF(x > 348 && x <= 11, "North", \ +IIF(x > 348 || x <= 11, "North", \ x > 11 && x <= 34, "North North-East", \ x > 34 && x <= 56, "North-East", \ x > 56 && x <= 79, "East North-East", \