Skip to content

Commit

Permalink
Increased precision in BA report KML.
Browse files Browse the repository at this point in the history
I need more digits to see what radius those GCPs were being placed.
  • Loading branch information
Zack Moratto committed Aug 24, 2010
1 parent 6791353 commit 9007b01
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/vw/BundleAdjustment/BundleAdjustReport.cc
Expand Up @@ -78,14 +78,16 @@ namespace ba {
desc << "&lt;h2&gt;Ground Control Point&lt;/h2&gt;";
desc << "&lt;b&gt;Lon:&lt;/b&gt; " << llr.x() << " deg&lt;br&gt;";
desc << "&lt;b&gt;Lat:&lt;/b&gt; " << llr.y() << " deg&lt;br&gt;";
desc << "&lt;b&gt;Rad:&lt;/b&gt; " << llr.z() << " m&lt;br&gt;";
desc << "&lt;b&gt;Rad:&lt;/b&gt; " << std::setprecision(12)
<< llr.z() << " m&lt;br&gt;";

// Images viewing
desc << "&lt;h3&gt;Viewed by:&lt;/h3&gt;&lt;ol&gt;";
for ( ControlPoint::const_iterator measure = (*iter).begin();
measure != (*iter).end(); ++measure ) {
desc << "&lt;li&gt;" << "[" << (*measure).image_id() << "] "
<< (*measure).serial() << "&lt;/li&gt;";
<< (*measure).serial() << " ( " << measure->position()[0] << ", "
<< measure->position()[1] << " ) " << "&lt;/li&gt;";
}
desc << "&lt;/ol&gt;";

Expand Down

0 comments on commit 9007b01

Please sign in to comment.