Skip to content

Commit 17314ee

Browse files
author
Monja Šebela
committed
Markdown fix
1 parent 9ff4491 commit 17314ee

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

Landsat-57/composites/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
True color composite uses visible light bands red (B04), green (B03) and blue (B02) in the corresponding red, green and blue color channels, resulting in a natural colored result, that is a good representation of the Earth as humans would see it naturally.
88

9-
Custom script: **return [B03, B02, B01];
9+
Custom script: **return [B03, B02, B01];**
1010

1111
![True color sample](fig/fig1.png)
1212

@@ -18,7 +18,7 @@ Custom script: **return [B03, B02, B01];
1818

1919
False color composite using near infrared, red and green bands is very popular. It is most commonly used to assess plant density and healht, as plants reflect near infrared and green light, while absorbing red. Since they reflect more near infrared than green, plant-covered land appears deep red. Denser plant growth is darker red. Cities and exposed ground are gray or tan, and water appears blue or black.
2020

21-
Custom script: **return [B04, B03, B02];
21+
Custom script: **return [B04, B03, B02];**
2222

2323
![False color sample](fig/fig4.png)
2424

@@ -32,7 +32,7 @@ Custom script: **return [B04, B03, B02];
3232

3333
In this image, band 2 is displayed in blue, band 3 is displayed in green, and band 4 is displayed in red. This rendition looks rather strange - vegetation jumps out as a bright red because green vegetation readily reflects infrared light energy! It is similar to pictures taken from aircraft when using infrared film; very useful for studying vegetation.
3434

35-
Custom script: **return [B02, B03, B04];
35+
Custom script: **return [B02, B03, B04];**
3636

3737
![SWIR sample](fig/fig2.png)
3838

@@ -43,7 +43,7 @@ Custom script: **return [B02, B03, B04];
4343

4444
In this SWIR image, band 2 is displayed in blue, band 4 is displayed in green, and band 7 (or 5) is displayed in red. This rendition looks like a jazzed up true color rendition - one with more striking colors.aking them valuable for mapping fire damage.
4545

46-
Custom script: **return [B07, B05, B04];
46+
Custom script: **return [B07, B05, B04];**
4747

4848
![SWIR sample](fig/fig3.png)
4949

sentinel-2/composites/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
True color composite uses visible light bands red (B04), green (B03) and blue (B02) in the corresponding red, green and blue color channels, resulting in a natural colored result, that is a good representation of the Earth as humans would see it naturally.
88

9-
Custom script: **return [B04, B03, B02];
9+
Custom script: **return [B04, B03, B02];**
1010

1111
![True color sample](fig/fig1.png)
1212

@@ -19,7 +19,7 @@ Custom script: **return [B04, B03, B02];
1919
False color imagery is displayed in a combination of standard near infra-red, red and green band.
2020
False color composite using near infrared, red and green bands is very popular. It is most commonly used to assess plant density and healht, as plants reflect near infrared and green light, while absorbing red. Since they reflect more near infrared than green, plant-covered land appears deep red. Denser plant growth is darker red. Cities and exposed ground are gray or tan, and water appears blue or black.
2121

22-
Custom script: **return [B08, B04, B03];
22+
Custom script: **return [B08, B04, B03];**
2323

2424
![False color sample](fig/fig2.png)
2525

@@ -31,7 +31,7 @@ Custom script: **return [B08, B04, B03];
3131

3232
Short wave infrared (SWIR) bands 11 and 12 can help scientists estimate how much water is present in plants and soil, as water reflects SWIR wavelengths. Shortwave-infrared bands are also useful for distinguishing between cloud types (water clouds versus ice clouds), snow and ice, all of which appear white in visible light. Newly burned land reflects strongly in SWIR bands, making them valuable for mapping fire damage. Each rock type reflects shortwave infrared light differently, making it possible to map out geology by comparing reflected SWIR light. In this composite, B8A is reflected by vegetation and shown in the green channel, while the reflected red band, highlighting bare soil and built up areas, is shown in the blue channel.
3333

34-
Custom script: **return [B12, B08, B04];
34+
Custom script: **return [B12, B08, B04];**
3535

3636
![SWIR sample](fig/fig3.png)
3737

@@ -44,7 +44,7 @@ Custom script: **return [B12, B08, B04];
4444

4545
This composite, often called the Agriculture RGB composite, uses bands SWIR-1 (B11), near-infrared (B08) and blue (B02). It’s mostly used to monitor crop health, as both short-wave and near infrared bands are particularly good at highlighting dense vegetation, which appears dark green in the composite. SWIR measurements can help scientists estimate how much water is present in plants and soil, as water reflects SWIR light. Shortwave-infrared bands are also useful for distinguishing between snow, and ice, all of which appear white in visible light. Newly burned land reflects strongly in SWIR bands, making them valuable for mapping fire damage.
4646

47-
Custom script: **return [B11, B08, B02];
47+
Custom script: **return [B11, B08, B02];**
4848

4949
![Agriculture sample](fig/fig4.png)
5050

@@ -57,55 +57,55 @@ Custom script: **return [B11, B08, B02];
5757

5858
This composite, often called the Agriculture RGB composite, uses bands SWIR-1 (B11), near-infrared (B08) and blue (B02). It’s mostly used to monitor crop health, as both short-wave and near infrared bands are particularly good at highlighting dense vegetation, which appears dark green in the composite. SWIR measurements can help scientists estimate how much water is present in plants and soil, as water reflects SWIR light. Shortwave-infrared bands are also useful for distinguishing between snow, and ice, all of which appear white in visible light. Newly burned land reflects strongly in SWIR bands, making them valuable for mapping fire damage.
5959

60-
Custom script: **return [B12, B11, B02];
60+
Custom script: **return [B12, B11, B02];**
6161

6262
![Geology sample](fig/fig5.png)
6363

6464
## Bathimetric
6565

6666
### RGB (4,3,1)
6767

68-
Custom script: **return [B12, B11, B02];
68+
Custom script: **return [B12, B11, B02];**
6969

7070
![Bathymetric sample](fig/fig6.png)
7171

7272
## RGB (8,6,4)
7373

7474
### RGB (8,6,4).
7575

76-
Custom script: **return [B08, B06, B04];
76+
Custom script: **return [B08, B06, B04];**
7777

7878
![8,6,4 sample](fig/fig7.png)
7979

8080
## RGB (8,5,4)
8181

8282
### RGB (8,5,4).
8383

84-
Custom script: **return [B08, B05, B04];
84+
Custom script: **return [B08, B05, B04];**
8585

8686
![8,5,4 sample](fig/fig8.png)
8787

8888
## RGB (8,11,4)
8989

9090
### RGB (8,11,4).
9191

92-
Custom script: **return [B08, B11, B04];
92+
Custom script: **return [B08, B11, B04];**
9393

9494
![8,11,4 sample](fig/fig9.png)
9595

9696
## RGB (8,11,12)
9797

9898
### RGB (8,11,12).
9999

100-
Custom script: **return [B08, B11, B12];
100+
Custom script: **return [B08, B11, B12];**
101101

102102
![8,11,12 sample](fig/fig10.png)
103103

104104
## RGB (11,8,3)
105105

106106
### RGB (11,8,3).
107107

108-
Custom script: **return [B11, B08, B03];
108+
Custom script: **return [B11, B08, B03];**
109109

110110
![11,8,3 sample](fig/fig11.png)
111111

sentinel-3/composites/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
True color composite uses visible light bands red (B04), green (B03) and blue (B02) in the corresponding red, green and blue color channels, resulting in a natural colored result, that is a good representation of the Earth as humans would see it naturally.
88

9-
Custom script: **return [B08, B06, B04];
9+
Custom script: **return [B08, B06, B04];**
1010

1111
![True color sample](fig/fig1.png)
1212

@@ -17,15 +17,15 @@ Custom script: **return [B08, B06, B04];
1717

1818
### RGB (17,6,3)
1919

20-
Custom script: **return [B17, B06, B03];
20+
Custom script: **return [B17, B06, B03];**
2121

2222
![False color sample](fig/fig2.png)
2323

2424
## False Color 2
2525

2626
### RGB (17,5,2)
2727

28-
Custom script: **return [B17, B05, B02];
28+
Custom script: **return [B17, B05, B02];**
2929

3030
![False Color 2 sample](fig/fig3.png)
3131

0 commit comments

Comments
 (0)