GRASS and windows console: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
m (Hellik moved page GRASS and bat-files in windows console to GRASS and windows console: extend MS windows related examples)
(extend examples)
Line 1: Line 1:
''This page shows an example how to run several GRASS modules in a windows batch-file in the winGRASS windows console''
''This page shows extended examples how to run GRASS modules in the winGRASS windows console''


==Windows batch files in GRASS==
==Windows batch files in GRASS==

Revision as of 18:13, 24 August 2018

This page shows extended examples how to run GRASS modules in the winGRASS windows console

Windows batch files in GRASS

In order to ease the workflow of analysis, several GRASS modules can be invoked at once by an batch file (*.bat) in the winGRASS windows console.

Python grass modules (e.g. v.db.addcolumn) have to be invoked by call in the batch-file.

@ECHO ON
g.region -p
v.in.region output=myreg
call v.db.addtable map=myreg
call v.db.addcolumn map=myreg columns="col1 double"
v.to.db map=myreg option=area columns=col1

Running batch files without starting up GRASS:

"%ProgramFiles?%\QGIS 2.18\bin\Grass72.bat" --exec MyScript.bat D:/myGrassData/MyLoc/MyMapset