From 036eab51d7a455876525545dffcbbce4c3dca5ac Mon Sep 17 00:00:00 2001 From: Daniel Mannarino Date: Thu, 7 Nov 2024 11:55:09 -0500 Subject: [PATCH] Fix copy/paste error --- batch/scripts/_tiff_crosses_dateline.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch/scripts/_tiff_crosses_dateline.sh b/batch/scripts/_tiff_crosses_dateline.sh index 32cd50af..f1340519 100755 --- a/batch/scripts/_tiff_crosses_dateline.sh +++ b/batch/scripts/_tiff_crosses_dateline.sh @@ -35,6 +35,6 @@ urx=$(jsonq "$gdalinfo" "['wgs84Extent']['coordinates'][0][2][0]") crossing_dateline=false test $(python -c "print(${ulx}>${lrx})") = True && crossing_dateline=true -test $(python -c "print(${ulx}>${lrx})") = True && crossing_dateline=true +test $(python -c "print(${llx}>${urx})") = True && crossing_dateline=true echo -n "${crossing_dateline}" \ No newline at end of file