5.10. merge

Merges two FitsArray objects to create another FitsArray.


FitsArray.merge(self, other: Self) None

Merges two FitsArray objects to create another FitsArray.

Parameters

otherFitsArray

The other FitsArray to append to this one.


5.10.1. Example:

from myraflib import FitsArray

fa_1 = FitsArray.sample()
fa_2 = FitsArray.sample()

merged_fa = fa_1.merge(fa_2)