Opened 18 years ago

Closed 18 years ago

#1275 closed defect (fixed)

ossimNitfBlockaTag converting location strings incorrectly

Reported by: dburken Owned by: dburken
Priority: highest Milestone:
Component: Loaders Version: 1.6.5
Severity: major Keywords:
Cc:

Description

In method ossimNitfBlockaTag::converLocStringToPt there is a cut and paste error!

This:
      lonStream << lon.substr(0, 4) << " " << lat.substr(4, 2)
                << " " << lat.substr(6);
Should be:
      lonStream << lon.substr(0, 4) << " " << lon.substr(4, 2)
                << " " << lon.substr(6);

Changed...

File:
ossim/src/ossim/support_data/ossimNitfBlockaTag.cpp

Change History (1)

comment:1 by dburken, 18 years ago

bug_file_loc: http://bugzilla.remotesensing.org/show_bug.cgi?id=1275
Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.