Skip to content

Commit

Permalink
Fixed isIdnentity check . It was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett Potts committed Nov 23, 2019
1 parent eaa0b60 commit bef2ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support_data/ossimNitfIchipbTag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ bool ossimNitfIchipbTag::initFromGeometry(const ossimImageGeometry* geom)

bool ossimNitfIchipbTag::isIdentity()const
{
return (!(ossim::almostEqual(getOpCol11(), getFiCol11())
return ((ossim::almostEqual(getOpCol11(), getFiCol11())
&& ossim::almostEqual(getOpRow11(), getFiRow11())
&& ossim::almostEqual(getOpCol12(), getFiCol12())
&& ossim::almostEqual(getOpRow12(), getFiRow12())
Expand Down

0 comments on commit bef2ca0

Please sign in to comment.