1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-28 05:34:47 +01:00

Fixed projection comparison

This commit is contained in:
Martin Tůma 2020-12-14 22:04:50 +01:00
parent 7f9fde76e9
commit 561d8362a9

View File

@ -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);
}