Skip to content
Snippets Groups Projects
Commit fd98e752 authored by Julien Malik's avatar Julien Malik
Browse files

TEST: add missing test file for bug 441

parent 437e9111
No related branches found
No related tags found
No related merge requests found
# Import the otb applications package
import otbApplication
import sys
# The following line creates an instance of the StereoSensorModelToElevationMap application
StereoSensorModelToElevationMap = otbApplication.Registry.CreateApplication("StereoSensorModelToElevationMap")
# The following lines set all the application parameters:
StereoSensorModelToElevationMap.SetParameterString("ref", sys.argv[1])
StereoSensorModelToElevationMap.SetParameterString("sec", sys.argv[2])
StereoSensorModelToElevationMap.SetParameterString("out", sys.argv[3])
StereoSensorModelToElevationMap.SetParameterString("dem", "DEM")
StereoSensorModelToElevationMap.SetParameterString("geoid", "egm96.grd")
# The following line execute the application
sys.exit(StereoSensorModelToElevationMap.ExecuteAndWriteOutput())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment