Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
dstoup edited this page Oct 2, 2013 · 29 revisions

Welcome to the vgl wiki!

Develop VGL

Build and Install

Download the data first from here: https://github.com/OpenGeoscience/geoweb-data.git

git clone https://github.com/OpenGeoscience/geoweb-data.git

VGL source has minimum dependencies but testing requires additional libraries and datasets. In order to build VGL on your system, follow the steps below:

git clone https://github.com/OpenGeoscience/vgl.git vgl-src mkdir vgl-build
cd vgl-build
cmake -DBUILD_TESTING:BOOL=ON ../vgl-src
ccmake .

Now set VGL_DATA_DIR to path_to_geoweb-data/documents

make

The build process creates a deploy directory for you, specified by VGL_DEPLOY_DIR. Move into that directory and start the python http sever

cd ${VGL_DEPLOY_DIR} python -m SimpleHTTPServer

You should now be able to run the tests.

http://localhost:8000/testing/drawCountries.html

Please contact us at opengeoscience-users@public.kitware.com or opengeoscience-developers@public.kitware.com

Clone this wiki locally