Changes between Version 13 and Version 14 of Procedures/PhotoScan


Ignore:
Timestamp:
Jun 27, 2019, 4:32:05 PM (5 years ago)
Author:
wja
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Procedures/PhotoScan

    v13 v14  
    8080|| || las1.2 || PHASEONE-IXU-ES17_126-2017170_point_cloud.laz || Point cloud in LAS 1.2 format ||
    8181|| thumbnails || || photographs/PHASEONE-IXU-ES17_126-2017170-00001.jpg || JPEG thumbnails of each photograph in area of interest ||
     82
     83'''Licenses'''
     84
     85'''Our MetaShape license is currently activated on pmpc1650 and the 'reshosting' directory is '''
     86
     87We only have one license and it is important to keep track of. Please make sure that the license is revoked before nay hardware changes or OS upgrades are performed on the machine it is installed on.[[BR]]
     88
     89By default, a file with license and system information is create in the following directory of the activated machine:
     90
     91{{{
     92/var/tmp/agisoft/photoscan-pro/Do-NOT-Touch-Anything-in-This-RLM-Directory/
     93}}}
     94
     95Where 'agiosoft' is the 'rehosting directory'
     96
     97However, it seems this can be automatically deleted by the system. Therefore a rehosting directory needs to be created in a safe space, where the user of MetaShape also has appropriate permissions.
     98
     99This can be changed by modifying metashape.sh to point to a desired directory using AGISOFT_REHOST_PATH and later exporting it like the following example:
     100
     101{{{
     102#!/bin/sh
     103appname=`basename "$0" | sed s,\.sh$,,`
     104
     105dirname=`dirname "$0"`
     106tmp="${dirname#?}"
     107
     108
     109if [ "${dirname%$tmp}" != "/" ]; then
     110dirname=$PWD/$dirname
     111fi
     112
     113AGISOFT_REHOST_PATH=[ENTER DIRECTORY HERE]
     114
     115TCL_LIBRARY=$dirname/python/lib/tcl8.5
     116TK_LIBRARY=$dirname/python/lib/tk8.5
     117export TCL_LIBRARY
     118export TK_LIBRARY
     119export AGISOFT_REHOST_PATH
     120
     121LD_LIBRARY_PATH=$dirname:$dirname/python/lib:$LD_LIBRARY_PATH
     122export LD_LIBRARY_PATH
     123
     124"$dirname/$appname" "$@"
     125
     126}}}