@@ -15,7 +15,7 @@ of the calculation.
1515using GMT
1616
1717# Extract a region from the SRTM1 grids stored in the GMT server
18- G = gmtread (" @earth_relief_01s " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 ));
18+ G = gmtread (" @earth_relief_01s_g " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 ));
1919
2020# Compute the Leland texture
2121I1 = texture_img (G);
@@ -39,7 +39,7 @@ is what we see (but we can select any cmap that we want).
3939\begin{examplefig}{}
4040``` julia
4141using GMT # Hide
42- G = gmtread (" @earth_relief_01s " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 )); # Hide
42+ G = gmtread (" @earth_relief_01s_g " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 )); # Hide
4343lelandshade (G, color= true , colorbar= true , show= true )
4444```
4545\end{examplefig}
@@ -50,7 +50,7 @@ approximatelly the same area in the figure. We do that using the `equalize=true`
5050\begin{examplefig}{}
5151``` julia
5252using GMT # Hide
53- G = gmtread (" @earth_relief_01s " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 )); # Hide
53+ G = gmtread (" @earth_relief_01s_g " , region= (- 114.14 ,- 111.28 ,35.50 ,37.06 )); # Hide
5454lelandshade (G, color= true , equalize= true , colorbar= true , show= true )
5555```
5656\end{examplefig}
@@ -68,7 +68,7 @@ transparency in the mixture. And for better appreciate it we will use grayscale
6868\begin{examplefig}{}
6969``` julia
7070using GMT # Hide
71- G = gmtread (" @earth_relief_01s " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 ));
71+ G = gmtread (" @earth_relief_01s_g " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 ));
7272lelandshade (G, transparency= 0.0 , title= " 0 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
7373```
7474\end{examplefig}
@@ -77,7 +77,7 @@ lelandshade(G, transparency=0.0, title="0 % texture shading", par=(FONT_TITLE=10
7777\begin{examplefig}{}
7878``` julia
7979using GMT # Hide
80- G = gmtread (" @earth_relief_01s " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
80+ G = gmtread (" @earth_relief_01s_g " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
8181lelandshade (G, transparency= 0.3 , title= " 30 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
8282```
8383\end{examplefig}
@@ -86,7 +86,7 @@ lelandshade(G, transparency=0.3, title="30 % texture shading", par=(FONT_TITLE=1
8686\begin{examplefig}{}
8787``` julia
8888using GMT # Hide
89- G = gmtread (" @earth_relief_01s " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
89+ G = gmtread (" @earth_relief_01s_g " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
9090lelandshade (G, transparency= 0.6 , title= " 60 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
9191```
9292\end{examplefig}
@@ -95,7 +95,7 @@ lelandshade(G, transparency=0.6, title="60 % texture shading", par=(FONT_TITLE=1
9595\begin{examplefig}{}
9696``` julia
9797using GMT # Hide
98- G = gmtread (" @earth_relief_01s " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
98+ G = gmtread (" @earth_relief_01s_g " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
9999lelandshade (G, transparency= 0.8 , title= " 80 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
100100```
101101\end{examplefig}
@@ -104,7 +104,7 @@ lelandshade(G, transparency=0.8, title="80 % texture shading", par=(FONT_TITLE=1
104104\begin{examplefig}{}
105105``` julia
106106using GMT # Hide
107- G = gmtread (" @earth_relief_01s " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
107+ G = gmtread (" @earth_relief_01s_g " , region= (- 112.06 , - 111.60 , 35.97 , 36.25 )); # Hide
108108lelandshade (G, transparency= 1.0 , title= " 100 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
109109```
110110\end{examplefig}
0 commit comments