I have foll.. 2 numpy arrays:
arr_a = numpy.zeros(shape=(3, 3))
arr_b is second numpy array, but it is masked with mask value of -9999.0
if I do:
arr_a += arr_b
then the resulting arr_a does not retain the mask. How can I get an array in return that retains the mask?