Vine 6.1でGRASS 6.4.3をインストールした。QGISはうまくいっていない。
• 公式サイト
http://grass.osgeo.org/
• インストールの仕方
http://grasswiki.osgeo.org/wiki/Compile_and_Install#Download_GRASS_GIS_source_code
関係ライブラリのインストール
apt-get install libtiff-devel fftw-devel fftw3-devel libXmu-devel
2.5.8geos のインストール
cd ~/local/src
wget http://download.osgeo.org/geos/geos-3.3.8.tar.bz2
tar jxf geos-3.3.8.tar.bz2
cd geos-3.3.8
./configure
make
sudo make install
geos の make には 10 分ほどかかる
参考:http://www.officeyano.net/geos.htm
2.5.9gdal のインストール
cd ~/local/src
wget http://download.osgeo.org/gdal/gdal-1.9.2.tar.gz
tar zxf gdal-1.9.2.tar.gz
cd gdal-1.9.2
./configure
make
sudo make install
make には 12 分かかった。
参考:http://forum.worldwindcentral.com/showthread.php?t=21409
2.5.10 Proj4
cd ~/local/src
wget http://download.osgeo.org/proj/proj-4.8.0.tar.gz
tar zxf proj-4.8.0.tar.gz
cd proj-4.8.0
./configure
make
sudo make install
参考:http://www.officeyano.net/proj.htm
GRASS本体のインストール
cd ~/local/src
wget http://grass.osgeo.org/grass64/source/grass-6.4.3RC3.tar.gz
tar zxf grass-6.4.3RC3.tar.gz
cd grass-6.4.3RC3
./configure
make
sudo make install
GRASS GIS – Home
http://grass.osgeo.org/
関連