@echo off
SETLOCAL
::
:: Reference:
:: http://grasswiki.osgeo.org/wiki/Working_with_GRASS_without_starting_it_explicitly
::
echo.
echo. Eclipse 4.5 (Mars) 32-bit for GRASS Development
:: User Home
set "HOME=%HOMEDRIVE%\%HOMEPATH%"
:: GRASS Database
set "GISDBASE=%HOME%\grassdata"
set "LOCATION_NAME=nc_spm_08_grass7"
set "MAPSET=user1"
::set "MAPSET=PERMANENT"
::set "GUI=wxpython"
set "GUI=text"
:: Set Debug Message Level
:: 0 - silence
:: 1 - message is printed once or few times per module
:: 3 - each row (raster) or line (vector)
:: 5 - each cell (raster) or point (vector)
set "MESSAGE_LEVEL=^1"
set "MINGW_HOME=C:\OSGeo4W"
set "MSYS_HOME=C:\OSGeo4W\apps\msys"
:: Python Interpreter and Libraries
set "PYTHONHOME=C:\OSGeo4W\apps\Python27"
set "PYTHONPATH=C:\OSGeo4W\apps\grass\grass-7.1.svn\etc\python;C:\OSGeo4W\apps\grass\grass-7.1.svn\gui\wxpython"
:: Build tools and utilities
set "TOOLS=C:\OSGeo4W\bin;C:\OSGeo4W\apps\msys\bin;C:\OSGeo4W\apps\Python27"
:: GISBASE needs to be set to the top-level directory
:: of the GRASS installation.
set "GISBASE=C:\OSGeo4W\src\grass7_trunk\dist.i686-pc-mingw32"
:: GISRC needs to contain the absolute path to a file containing
:: settings for GISDBASE, LOCATION_NAME and MAPSET.
set "GISRC=%HOME%\gisrc"
:: Create GISRC file
:: Examples:
:: ./demolocation/grassrc.tmpl
:: ./dist.i686-pc-mingw32/demolocation/.grassrc71
echo GISDBASE: %GISDBASE%>> %GISRC%
echo LOCATION_NAME: %LOCATION_NAME%> %GISRC%
echo MAPSET: %MAPSET%>> %GISRC%
echo GUI: %GUI%>> %GISRC%
echo DEBUG: %MESSAGE_LEVEL%>> %GISRC%
::type %GISRC%
set "PROJ=C:\OSGeo4W\share\proj"
set "GLIB=%GISBASE%\lib"
set "GBIN=%GISBASE%\bin"
set "GSCRIPTS=%GISBASE%\scripts"
:: PATH needs to include %GISBASE%\bin and %GISBASE%\scripts and %GISBASE%\libs.
set PATH=%PATH%;%TOOLS%;%GBIN%;%GLIB%;%GSCRIPTS%;%PROJ%
echo.
echo. HOME : %HOME%
echo. GISBASE : %GISBASE%
echo. GISRC : %GISRC%
echo. GISDBASE : %GISDBASE%
echo. LOCATION_NAME : %LOCATION_NAME%
echo. MAPSET : %MAPSET%
echo. PYTHONPATH : %PYTHONPATH%
echo. PYTHONHOME : %PYTHONHOME%
C:\eclipse-4.5-mars-32bit\eclipse.exe
ENDLOCAL