Browse Source

wxGUI: fix rendering in latlon when resolution is high

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@71163 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 7 years ago
parent
commit
0904ff9e1a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gui/wxpython/core/render.py

+ 2 - 2
gui/wxpython/core/render.py

@@ -1091,11 +1091,11 @@ class Map(object):
                         (region['w'])
                     continue
                 elif key == "e-w resol":
-                    grass_region += "e-w resol: %f; " % \
+                    grass_region += "e-w resol: %.10f; " % \
                         (region['ewres'])
                     continue
                 elif key == "n-s resol":
-                    grass_region += "n-s resol: %f; " % \
+                    grass_region += "n-s resol: %.10f; " % \
                         (region['nsres'])
                     continue
                 elif key == "cols":