Skip to content

Commit

Permalink
Added precision in coordinates saved to points-file (again)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9359 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Sep 19, 2008
1 parent 5403746 commit a46fabf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/georeferencer/qgspointdialog.cpp
Expand Up @@ -351,8 +351,8 @@ bool QgsPointDialog::generateWorldFile()
for ( unsigned int i = 0; i < mapCoords.size(); ++i )
{
points << ( QString( "%1\t%2\t%3\t%4" ).
arg( mapCoords[i].x() ).arg( mapCoords[i].y(), 0, 'f', 15 ).
arg( pixelCoords[i].x() ).arg( pixelCoords[i].y(), 0, 'f', 15 ) ) << endl;
arg( mapCoords[i].x(), 0, 'f', 15 ).arg( mapCoords[i].y(), 0, 'f', 15 ).
arg( pixelCoords[i].x(), 0, 'f', 15 ).arg( pixelCoords[i].y(), 0, 'f', 15 ) ) << endl;
}
}
return true;
Expand Down

0 comments on commit a46fabf

Please sign in to comment.