From 3cc4ea49d28f4118c6ff1b48c3a774bb39740933 Mon Sep 17 00:00:00 2001 From: Ou Ku Date: Fri, 12 Jan 2024 11:35:43 +0100 Subject: [PATCH] Update common_ops.md --- docs/common_ops.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/common_ops.md b/docs/common_ops.md index 7cad108..8e06f75 100644 --- a/docs/common_ops.md +++ b/docs/common_ops.md @@ -6,7 +6,7 @@ Common SAR processings can be performed by SARXarray. Below are some examples: ## Multi-look -Multi-look by a windowsize, e.g. 2 in azimuth dimension and 4 in range dimension: +Multi-look by a windowsize of e.g. 2 in azimuth dimension and 4 in range dimension: ```python stack_multilook = stack.slcstack.multi_look((2,4)) @@ -37,8 +37,8 @@ mrm.plot(ax=ax, robust=True, cmap='gray') ``` ## Point selection -A selection based on temporal properties per pixel can be performed. For example, we can select the Persistent Scatters (PS) by temporal dispersion of `amplitude`: +A selection based on temporal properties per pixel can be performed. For example, we can select the Point Scatterers (PS) by normalized temporal dispersion of `amplitude`: ```python ps = stack.slcstack.point_selection(threshold=0.25, method="amplitude_dispersion") -``` \ No newline at end of file +```