|
@@ -959,17 +959,15 @@ class GMFrame(wx.Frame):
|
|
|
def OnMapCalculator(self, event):
|
|
|
"""!Init map calculator for interactive creation of mapcalc statements
|
|
|
"""
|
|
|
- win = mapcalculator.MapCalcFrame(parent = self, title = _('2D raster calculator'))
|
|
|
+ win = mapcalculator.MapCalcFrame(parent = self, title = _('GRASS GIS Map Calculator'))
|
|
|
win.CentreOnScreen()
|
|
|
win.Show()
|
|
|
|
|
|
- def Disp3DMapCalculator(self, event):
|
|
|
- """
|
|
|
- Init map calculator for interactive creation of mapcalc statements
|
|
|
+ def OnMapCalculator3D(self, event):
|
|
|
+ """!Init map calculator for interactive creation of mapcalc statements
|
|
|
"""
|
|
|
-
|
|
|
- mapcalculator.MapCalcFrame(parent = self, title = _('3D raster calculator'),
|
|
|
- rast3d = True)
|
|
|
+ win = mapcalculator.MapCalcFrame(parent = self, title = _('GRASS GIS Map Calculator (3D raster)'),
|
|
|
+ rast3d = True)
|
|
|
win.CentreOnScreen()
|
|
|
win.Show()
|
|
|
|