diff --git a/src/map/angularunits.h b/src/map/angularunits.h index d605c341..41002d76 100644 --- a/src/map/angularunits.h +++ b/src/map/angularunits.h @@ -11,7 +11,12 @@ public: AngularUnits(int code); bool operator==(const AngularUnits &other) const - {return (_code == other._code && _f == other._f);} + { + if (_code == 9110) + return (other._code == 9110); + else + return (_f == other._f); + } bool isNull() const {return std::isnan(_f);} bool isValid() const {return !std::isnan(_f);}