Skip to content

Commit b44bcda

Browse files
update
1 parent e953f92 commit b44bcda

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/end-to-end-gee-supplement.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4185,8 +4185,8 @@ <h2>Medoid Composites</h2>
41854185
<p>Medoid, also known as Geometric Median or Multi Dimensional Median is
41864186
often used to get a more representative sample from multi-dimensional
41874187
data. For multispectral satellite images - a medoid composite can result
4188-
in a better output than a simple median composite. The method was
4189-
originally described in the paper <a
4188+
in a better output than a simple median composite. The method and its
4189+
advantages are described in the paper <a
41904190
href="https://www.mdpi.com/2072-4292/5/12/6481">Seasonal Composite
41914191
Landsat TM/ETM+ Images Using the Medoid</a>.</p>
41924192
<p>Some key differences between a simple median composite vs. a medoid
@@ -4199,8 +4199,8 @@ <h2>Medoid Composites</h2>
41994199
<li>In a median composite image, each band value may come from different
42004200
images. Medoid values are guaranteed to come from the same image.</li>
42014201
<li>Median composites may have values that are not present in the
4202-
original images. i.e. Median of [1, 2] –&gt; 1.5. Medoid will always
4203-
pick values present in the input data.</li>
4202+
original images. i.e. Median of [1, 2, 3, 4] –&gt; 2.5. Medoid will
4203+
always pick values present in the input data.</li>
42044204
</ol>
42054205
<p>For most users, the difference is minimal and a simple median
42064206
composite will be adequate. However, median composites can sometimes
0 Bytes
Loading
0 Bytes
Loading
0 Bytes
Loading

end-to-end-gee-supplement.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,13 +346,13 @@ knitr::include_graphics('images/end_to_end_gee/alamatti_animation.gif')
346346

347347
## Medoid Composites
348348

349-
Medoid, also known as Geometric Median or Multi Dimensional Median is often used to get a more representative sample from multi-dimensional data. For multispectral satellite images - a medoid composite can result in a better output than a simple median composite. The method was originally described in the paper [Seasonal Composite Landsat TM/ETM+ Images Using the Medoid](https://www.mdpi.com/2072-4292/5/12/6481).
349+
Medoid, also known as Geometric Median or Multi Dimensional Median is often used to get a more representative sample from multi-dimensional data. For multispectral satellite images - a medoid composite can result in a better output than a simple median composite. The method and its advantages are described in the paper [Seasonal Composite Landsat TM/ETM+ Images Using the Medoid](https://www.mdpi.com/2072-4292/5/12/6481).
350350

351351
Some key differences between a simple median composite vs. a medoid composite:
352352

353353
1. Median values are calculated independently for each band while Medoid value is computed by comparing pixel values across all bands and selecting the values that minimize the difference between the median and the chosen value.
354354
2. In a median composite image, each band value may come from different images. Medoid values are guaranteed to come from the same image.
355-
3. Median composites may have values that are not present in the original images. i.e. Median of [1, 2] --> 1.5. Medoid will always pick values present in the input data.
355+
3. Median composites may have values that are not present in the original images. i.e. Median of [1, 2, 3, 4] --> 2.5. Medoid will always pick values present in the input data.
356356

357357
For most users, the difference is minimal and a simple median composite will be adequate. However, median composites can sometimes produce outliers when computing spectral indices (like NDVI) whereas medoid composites are more robust against such outliers.
358358

0 commit comments

Comments
 (0)