#!/bin/sh
#
# Copyright (C) 2005-2024 Centre National d'Etudes Spatiales (CNES)
#
# This file is part of Orfeo Toolbox
#
#     https://www.orfeo-toolbox.org/
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

#
# Autogenerated by OTB installation process
# DO NOT MODIFY
#

CURRENT_SCRIPT_DIR=$(dirname "$0")

if [ -e "$CURRENT_SCRIPT_DIR/otbApplicationLauncherCommandLine" ]
then
  # Prefer using the launcher inside the script dir
  OTB_CLI_LAUNCHER=$CURRENT_SCRIPT_DIR/otbApplicationLauncherCommandLine
else
  # Use the one from the PATH
  OTB_CLI_LAUNCHER=otbApplicationLauncherCommandLine
fi

# avoid numerical issues caused by locale
export LC_NUMERIC=C

# Export GDAL_DATA
# Note that OTB_APPLICATION_PATH is reset here.
if [ -z "$OTB_INSTALL_DIR" ]; then
    . "$CURRENT_SCRIPT_DIR/../otbenv.profile"
fi

# start the application
$OTB_CLI_LAUNCHER "$@"
