xdem.coreg.VerticalShift#
- class xdem.coreg.VerticalShift(vshift_reduc_func=<function median>, subsample=1.0)[source]#
Vertical translation alignment.
Estimates the mean vertical offset between two elevation datasets based on a reductor function (median, mean, or any custom reductor function).
The estimated vertical shift is stored in the self.meta[“outputs”][“affine”] key “shift_z” (in unit of the elevation dataset inputs, typically meters).
- __init__(vshift_reduc_func=<function median>, subsample=1.0)[source]#
Instantiate a vertical shift alignment object.
- Parameters:
vshift_reduc_func (
Callable[[ndarray[tuple[Any,...],dtype[floating[Any]]]],floating[Any]]) – Reductor function to estimate the central tendency of the vertical shift. Defaults to the median.subsample (
float|int) – Subsample the input for speed-up. <1 is parsed as a fraction. >1 is a pixel count.
Methods
__init__([vshift_reduc_func, subsample])Instantiate a vertical shift alignment object.
apply(elev[, bias_vars, resample, ...])centroid()Get the centroid of the coregistration, if defined.
copy()Return an identical copy of the class.
fit(reference_elev, to_be_aligned_elev[, ...])Estimate the coregistration transform on the given DEMs.
fit_and_apply(reference_elev, to_be_aligned_elev)from_matrix(matrix)Instantiate a generic Coreg class from a transformation matrix.
from_rotations([x_rot, y_rot, z_rot, ...])Instantiate a generic Coreg class from a X/Y/Z rotation.
from_translations([x_off, y_off, z_off])Instantiate a generic Coreg class from a X/Y/Z translation.
info([as_str])to_matrix()Convert the transform to a 4x4 transformation matrix.
to_rotations([return_degrees])Extract X/Y/Z euler rotations (extrinsic convention) from the affine transformation matrix.
to_translations()Extract X/Y/Z translations from the affine transformation matrix.
Attributes
is_affineCheck if the transform be explained by a 3D affine transform.
is_translationmetaMetadata dictionary of the coregistration.