You are not logged in.
Pages: 1
VAPOR is the Visualization and Analysis Platform for Ocean, Atmosphere, and Solar Researchers.
It serves to render 3D data cubes nicely.
I have been trying and ran into some problems, but I am not sure if it is me...
Cheers,
Blind
Offline
Please read this forum's Sticky.
Offline
Sure. Sorry.
The web page is at
http://www.vapor.ucar.eduIt uses expat, qt and netcfd. Bindings to IDL (http://www.ittvis.com/index.asp) can be compiled as well for easier data import.
Cheers,
Blind
Offline
I have been trying and ran into some problems, but I am not sure if it is me...
Post the error messages you got.
Offline
Sorry,
am not at work right now and thus don't have access to the error message.
However, I got into contact with the author, and one issue was known, the other one was due to an incorrect version of the QT lib.
I guess I will have to sed some files in the PKGBUILD. I will let you know tomorrow.
Blind
Offline
Ok, I did it myself.
For anyone interested:
pkgname=vapor
pkgver=1.0.1
pkgrel=1
pkgdesc="VAPOR is the Visualization and Analysis Platform for Ocean, Atmosphere, and Solar Researchers."
url="http://www.vapor.ucar.edu"
depends=(expat qt netcdf)
source=(ftp://ftp.ucar.edu/vapor/source/$pkgname-$pkgver-src.tar.gz)
md5sums=('bd8e299ad1c7f09fb3e1176c3dbbde9a')
build() {
cd $startdir/src/Vapor-$pkgver
# setting up (see options.mk for more)
mv options.mk options.mk.backup
echo -n "INSTALL_PREFIX_DIR=" >> options.mk && echo $startdir/pkg/usr >> options.mk
echo "RELEASE=1" >> options.mk
echo "DEBUG=0" >> options.mk
echo "QTDIR=/opt/qt" >> options.mk
# Bindings for Volumizer from SGI
echo "BUILD_VOLUMIZER=0" >> options.mk
# Bindings for IDL from ITTVIS
echo "BUILD_IDL_WRAPPERS=1" >> options.mk
echo "IDL_INC_PATH=/opt/rsi/idl/external/include" >> options.mk
echo "BUILD_GUI=1" >> options.mk
echo "-include $(TOP)/site.mk" >> options.mk
# some bug fixes
sed -i 's/uname -p/uname -m/' make/config/arch.mk
sed -i 's/gmake/make/' make/config/Linux.mk
sed -i 's//usr/bin/install//bin/install/g' make/config/Linux.mk
sed -i 's/<includehints>//' apps/vaporgui/guis/ui/dvr.ui
sed -i 's/<includehint>colorpickerframe.h</includehint>//' apps/vaporgui/guis/ui/dvr.ui
sed -i 's/<includehint>tfframe.h</includehint>//' apps/vaporgui/guis/ui/dvr.ui
sed -i 's/</includehints>//' apps/vaporgui/guis/ui/dvr.ui
# make
make
# install
make install
# remove unnecessary stuff
rm -rf $startdir/pkg/usr/examples
}I think putting it in AUR is not a good thing, because you really need to manually change options. Nevertheless it is a nice program.
Cheers,
Blind
Offline
Just added a new version to the AUR.
Cheers.
Offline
Pages: 1