Skip to content

Commit

Permalink
Show rotation in degrees in georef status bar
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13696 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jun 9, 2010
1 parent c4cb755 commit 52bb934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 52bb934

Please sign in to comment.