The function allows merging different measurements to one file or one
object. The record IDs are recalculated for the new object. Other values
are kept for each object. The number of input objects is not limited. position.number.append.gap
option
If the option keep.position.number = FALSE
is used, the position
numbers of the new data set are recalculated by adding the highest position
number of the previous data set to the each position number of the next data
set. For example: The highest position number is 48, then this number will
be added to all other position numbers of the next data set (e.g. 1 + 48 =
49)
However, there might be cases where an additional addend (summand) is needed
before the next position starts. Example:
Position number set (A): 1,3,5,7
Position number set (B):
1,3,5,7
With no additional summand the new position numbers would be:
1,3,5,7,8,9,10,11
. That might be unwanted. Using the argument
position.number.append.gap = 1
it will become:
1,3,5,7,9,11,13,15,17
.