Size: 226
Comment:
|
Size: 1892
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
* updateDisplay is a nifty tool that is used to visually inspect images, bigmaps, and shapefiles from [[lithos.e|lithos]], [[register|register]], and [[autoregister|autoregister]] | * updateDisplay is a nifty tool that is used to visually inspect images, bigmaps, and shape models. from [[lithos]], [[register|register]], and [[autoregister]] * It is part of the "spc_tools" suite. It uses the standard, unmodified output from SPC, encloses it within a GUI built in javascript. It allows accurate positional analysis. === Set Up === * The spc_tools needs to be installed in the web server's root directory. It should be called "static". * You need to make a "data" directory in the web server's root directory. You must have write permissions to that directory. If multiple people are running spc_tools, then you may need to create a subdirectory within data, such as ep, tc, dl, jw. * Put the updateDisplay script in the directory above your working directory. Then type the following into the working directory: {{{ cd Bennu nohup ../updateDisplay-eep & tail -f nohup }}} The file updateDisplay-eep should look like this. It is usually best to name the updateDisplay with your initials to help deconflict your process from other people's processes when running on the same server. {{{ #!/bin/bash #path="/Library/Server/Web/Data/Sites/Default/data/" #path="/Library/Server/Web/Data/Sites/Default/data/ep/" path="/Library/WebServer/Documents/data" while [ 1 ] do convert LMRK_DISPLAY1.pgm landmarks.jpg /bin/mv -f $path/landmarks.jpg $path/old-landmarks.jpg /bin/mv -f landmarks.jpg $path/landmarks.jpg convert LMRK_DISPLAY1.pgm autoregister.jpg /bin/mv -f $path/autoregister.jpg $path/old-autoregister.jpg /bin/mv -f autoregister.jpg $path/autoregister.jpg convert TEMPFILE.pgm $path/register.jpg convert TEMPFILE.ppm $path/registerC.jpg cp 1.jpg $path/1.jpg sleep 5 done }}} |
updateDisplay
Description
updateDisplay is a nifty tool that is used to visually inspect images, bigmaps, and shape models. from lithos, register, and autoregister
- It is part of the "spc_tools" suite. It uses the standard, unmodified output from SPC, encloses it within a GUI built in javascript. It allows accurate positional analysis.
Set Up
- The spc_tools needs to be installed in the web server's root directory. It should be called "static".
- You need to make a "data" directory in the web server's root directory. You must have write permissions to that directory. If multiple people are running spc_tools, then you may need to create a subdirectory within data, such as ep, tc, dl, jw.
- Put the updateDisplay script in the directory above your working directory. Then type the following into the working directory:
cd Bennu nohup ../updateDisplay-eep & tail -f nohup
The file updateDisplay-eep should look like this. It is usually best to name the updateDisplay with your initials to help deconflict your process from other people's processes when running on the same server.
#path="/Library/Server/Web/Data/Sites/Default/data/" #path="/Library/Server/Web/Data/Sites/Default/data/ep/" path="/Library/WebServer/Documents/data" while [ 1 ] do convert LMRK_DISPLAY1.pgm landmarks.jpg /bin/mv -f $path/landmarks.jpg $path/old-landmarks.jpg /bin/mv -f landmarks.jpg $path/landmarks.jpg convert LMRK_DISPLAY1.pgm autoregister.jpg /bin/mv -f $path/autoregister.jpg $path/old-autoregister.jpg /bin/mv -f autoregister.jpg $path/autoregister.jpg convert TEMPFILE.pgm $path/register.jpg convert TEMPFILE.ppm $path/registerC.jpg cp 1.jpg $path/1.jpg sleep 5 done