py4dgeo
py4dgeo copied to clipboard
Unit testing of the semantics of deep copying epochs
The Epoch class can be deep copied:
import copy
epoch2 = copy.deepcopy(epoch)
However, it is quite unclear whether all aspects of the Epoch implement the correct semantics e.g. whether the copy of the C++ KDTree is an actual deep copy.