Show rotation in degrees in georef status bar

git-svn-id: http://svn.osgeo.org/qgis/trunk@13696 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2010-06-09 08:06:26 +00:00
parent 06e8ef68b5
commit 6b8c37b5ce

View File

@ -1481,7 +1481,7 @@ void QgsGeorefPluginGui::updateTransformParamLabel()
labelString += " ";
labelString += tr( "Translation (%1, %2)" ).arg( origin.x() ).arg( origin.y() ); labelString += " ";
labelString += tr( "Scale (%1, %2)" ).arg( scaleX ).arg( scaleY ); labelString += " ";
labelString += tr( "Rotation: %1" ).arg( rotation );
labelString += tr( "Rotation: %1" ).arg( rotation * 180 / M_PI );
}
double meanError = 0;