Loop

Generates a sequence with variables to loop over. The variable names can be set with variableLoop... and the current values are assigned to the variables for each loop step.

With condition only a subset of loop steps are performed. The variableLoopIndex and variableLoopCount are not affected by the condition. The result would therefore be the same as using LoopPrograms with a nested IfPrograms.

See Loop and conditions for usage.

TimeSeries

Loop over points in time.

NameTypeAnnotation
timeSeries
timeSeriesloop is called for every point in time
variableLoopTime
stringvariable with time of each loop
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

TimeIntervals

Loop over the intervals between points in time.

NameTypeAnnotation
timeIntervals
timeSeriesloop is called for every interval
variableLoopTimeStart
stringvariable with starting time of each interval
variableLoopTimeEnd
stringvariable with ending time of each interval
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

ManualList

Loop over list of strings.

NameTypeAnnotation
string
stringexplicit list of strings
variableLoopString
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

ManualTable

Loop over rows of a table containing strings. The table can be defined rowWise or columnWise. Each row/column must have the same number of cells.

NameTypeAnnotation
table
choicedefine table by rows/columns
rowWise
sequencedefine table by rows
row
sequencedefine table by rows
cell
stringexplicit list of cells in row/column
columnWise
sequencedefine table by columns
column
sequencedefine table by columns
cell
stringexplicit list of cells in row/column
variableLoopString
string1. variable name for the 1. column, next variable name for the 2. column, ...
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

FileAscii

Loop over list of strings from files.

NameTypeAnnotation
inputfile
filenamesimple ASCII file with strings (separated by whitespace)
sort
booleansort entries alphabetically (ascending)
removeDuplicates
booleanremove duplicate entries (order is preserved)
startIndex
uintstart at element startIndex (counting from 0)
count
uintuse count elements (default: use all)
variableLoopString
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

FileAsciiTable

Loop over rows of a table containing strings. Each row must have the same number of columns.

NameTypeAnnotation
inputfile
filenamesimple ASCII file with multiple columns (separated by whitespace)
startLine
uintstart at line startLine (counting from 0)
countLines
uintread count lines (default: all)
variableLoopString
string1. variable name for the 1. column, next variable name for the 2. column, ...
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

FileLines

Loop over lines of a text file.

NameTypeAnnotation
inputfile
filenamesimple ASCII file with lines
sort
booleansort lines alphabetically (ascending)
removeDuplicates
booleanremove duplicate lines (order is preserved)
startIndex
uintstart at element startIndex (counting from 0)
count
uintuse number of lines only (default: use all)
variableLoopLine
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

Matrix

Loop over rows of a matrix. To define the loop variables the standard data variables of the matrix are available, see dataVariables.

NameTypeAnnotation
inputfile
filename
transpose
booleaneffectively loop over columns
startRow
expressionstart at this row (variable: rows)
countRows
expressionuse this many rows (variable: rows)
variableLoop
expressiondefine a variable by name = expression (input columns are named data0, data1, ...)
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

UniformSampling

Loop over sequence of numbers.

NameTypeAnnotation
rangeStart
doublestart of range
rangeEnd
doubleend of range (inclusive)
sampling
doublesampling
variableLoopNumber
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

DirectoryListing

Loop over files of a directory.

NameTypeAnnotation
directory
filenamedirectory
pattern
stringwildcard pattern
isRegularExpression
booleanpattern is a regular expression
variableLoopFile
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

CommandOutput

Loop over lines of command output.

NameTypeAnnotation
command
filenameeach output line becomes a loop iteration
silently
booleanwithout showing the output.
variableLoopString
stringname of the variable to be replaced
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

Loop

Loop over nested loops. First loop is outermost loop, every subsequent loop is one level below the previous loop.

NameTypeAnnotation
loop
loopsubloop
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
condition
conditioncheck before each loop step

PlatformEquipment

Loop over specific equipment of a platform file.

NameTypeAnnotation
inputfilePlatform
filenameplatform info file
equipmentType
choiceequipment type to loop over
all
loop over all types
gnssAntenna
loop over antennas
gnssReceiver
loop over receivers
slrStation
loop over SLR stations
slrRetroReflector
loop over laser retroreflectors
satelliteIdentifier
loop over satellite identifiers
other
loop over other types
variableLoopName
stringvariable with name
variableLoopSerial
stringvariable with serial
variableLoopInfo
stringvariable with radome (antenna) or version (receiver)
variableLoopTimeStart
stringvariable with start time
variableLoopTimeEnd
stringvariable with end time
variableLoopPositionX
stringvariable with position x
variableLoopPositionY
stringvariable with position y
variableLoopPositionY
stringvariable with position z
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step

FileGnssStationInfo

DEPRECATDED. Use LoopPlatformEquipment instead.

NameTypeAnnotation
inputfileGnssStationInfo
filenamestation/transmitter info file
infoType
choiceinfo to loop over
antenna
loop over antennas
receiver
loop over receivers
variableLoopName
stringvariable with antenna/receiver name
variableLoopSerial
stringvariable with antenna/receiver serial
variableLoopInfo
stringvariable with radome (antenna) or version (receiver)
variableLoopTimeStart
stringvariable with antenna/receiver start time
variableLoopTimeEnd
stringvariable with antenna/receiver end time
variableLoopIndex
stringvariable with index of current iteration (starts with zero)
variableLoopCount
stringvariable with total number of iterations
condition
conditioncheck before each loop step