/usr/bin/otbgui is in otb-bin-qt 5.8.0+dfsg-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #!/bin/sh
#
# Autogenerated by OTB installation process
# DO NOT MODIFY
#
CURRENT_SCRIPT_DIR=$(dirname "$0")
if [ -e "$CURRENT_SCRIPT_DIR/otbApplicationLauncherQt" ]
then
# Prefer using the launcher inside the script dir
OTB_GUI_LAUNCHER=$CURRENT_SCRIPT_DIR/otbApplicationLauncherQt
else
# Use the one from the PATH
OTB_GUI_LAUNCHER=otbApplicationLauncherQt
fi
# use the default install tree path for applications
if [ -d "$CURRENT_SCRIPT_DIR/../lib/otb/applications" ]
then
OTB_APPLICATION_PATH=$CURRENT_SCRIPT_DIR/../lib/otb/applications:$OTB_APPLICATION_PATH
fi
# export it to make it available to otbApplicationLauncherCommandLine environment
export OTB_APPLICATION_PATH
# avoid numerical issues caused by locale
export LC_NUMERIC=C
# Source GDAL_DATA, EPSG_CSV
if [ -f "$CURRENT_SCRIPT_DIR/env_exports" ]; then
. "$CURRENT_SCRIPT_DIR/env_exports"
fi
# start the application
$OTB_GUI_LAUNCHER "$@"
|