From 561d8362a94d605c1c4aaab3b2b6a0107a26b2cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 14 Dec 2020 22:04:50 +0100 Subject: [PATCH] Fixed projection comparison --- src/map/polarstereographic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/polarstereographic.cpp b/src/map/polarstereographic.cpp index e65933a4..289f7b9f 100644 --- a/src/map/polarstereographic.cpp +++ b/src/map/polarstereographic.cpp @@ -199,5 +199,5 @@ bool PolarStereographic::operator==(const CT &ct) const && _originLongitude == other->_originLongitude && _falseEasting == other->_falseEasting && _falseNorthing == other->_falseNorthing && _two_a == other->_two_a - && _es == other->_es); + && _es == other->_es && _southernHemisphere == other->_southernHemisphere); }