Frequently Asked Questions - VisionSystemsInc/voxel_globe GitHub Wiki
General
- What is VoxelGlobe?
- VoxelGlobe is a suite of VSI algorithms wrapped in a web server and deployed using dockers to easily use anywhere. All pages are accessible by an HTML 5 compliant web browser, with the latest Firefox being the focus of support. There are two parts to VoxelGlobe, the server where the algorithms run, and the client interface, running in the web browser
Server
-
How do I start up the VoxelGlobe Server?
-
How do I manage all the pieces of the VoxelGlobe server?
- There are many moving piece to VoxelGlobe that get very complicated very quickly. To hide all these detail and make things easy, there is a command called
just
in the root of the git repo, typically run by./just
since it won't be in your path
- There are many moving piece to VoxelGlobe that get very complicated very quickly. To hide all these detail and make things easy, there is a command called
-
How can I run "just" without the
./
? How can I get tab completion working onjust
?-
There is a convenient
.just
script that will addjust
to your path and add tab completion. "Just"source .just
-
or
. .just
Note: All documentation will assume you don't have just in your path, and will read
./just
instead ofjust
for all just command. If you source.just
you can freely start ignoring the./
notation. -
-
What all can
just
do?- Run
./just help
to get a short list of help available. Also see here for a listing
- Run
-
How to I checkout the latest/a specific version of VoxelGlobe?
- Please see here
-
Why are all the static files returning 404 when using runserver?
- Runserver no longer serves static files UNLESS debug is turned on. To turn on Debug, add
export VIP_DEBUG=1
to yourlocal_vip.env
file
- Runserver no longer serves static files UNLESS debug is turned on. To turn on Debug, add
Client
-
How do I use VoxelGlobe?
- Please refer to the comprehensive tutorials for help.
-
The cesium globe isn't loading, and even https://get.webgl.org/ isn't loading webgl suceessfully
-
Other Symptoms - Start firefox from command line. If you see messages like
GLContext is disabled due to a previous crash.|[10][GFX1-]: GLContext is disabled due to a previous crash.[GFX1-]: GLContext is disabled due to a previous crash.
- Solution: Enter
about:config
in your url bar, and changegfx.crash-guard.status.glcontext
from 3 to 2, reload page and it should be working
-