andwatson / decompose_insar_velocities

Matlab scripts for decomposing multiple line-of-sight InSAR velocity fields into East and Vertical components.
GNU General Public License v3.0
27 stars 10 forks source link

Referencing uses hardcoded value. #3

Open andwatson opened 2 years ago

andwatson commented 2 years ago

% mask after deramping (deramp isn't carried forward) % use a hardcoded 10 mm/yr limit to remove large signals (mainly % subsidence and seismic) vel_deramp = deramp(x,y,vel_tmp); vel_deramp = vel_deramp - mean(vel_deramp(:),'omitnan'); vel_mask = vel_deramp>10 | vel_deramp<-10;