@@ -15,7 +15,7 @@ of the calculation.
15
15
using GMT
16
16
17
17
# 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 ));
19
19
20
20
# Compute the Leland texture
21
21
I1 = texture_img (G);
@@ -39,7 +39,7 @@ is what we see (but we can select any cmap that we want).
39
39
\begin{examplefig}{}
40
40
``` julia
41
41
using 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
43
43
lelandshade (G, color= true , colorbar= true , show= true )
44
44
```
45
45
\end{examplefig}
@@ -50,7 +50,7 @@ approximatelly the same area in the figure. We do that using the `equalize=true`
50
50
\begin{examplefig}{}
51
51
``` julia
52
52
using 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
54
54
lelandshade (G, color= true , equalize= true , colorbar= true , show= true )
55
55
```
56
56
\end{examplefig}
@@ -68,7 +68,7 @@ transparency in the mixture. And for better appreciate it we will use grayscale
68
68
\begin{examplefig}{}
69
69
``` julia
70
70
using 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 ));
72
72
lelandshade (G, transparency= 0.0 , title= " 0 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
73
73
```
74
74
\end{examplefig}
@@ -77,7 +77,7 @@ lelandshade(G, transparency=0.0, title="0 % texture shading", par=(FONT_TITLE=10
77
77
\begin{examplefig}{}
78
78
``` julia
79
79
using 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
81
81
lelandshade (G, transparency= 0.3 , title= " 30 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
82
82
```
83
83
\end{examplefig}
@@ -86,7 +86,7 @@ lelandshade(G, transparency=0.3, title="30 % texture shading", par=(FONT_TITLE=1
86
86
\begin{examplefig}{}
87
87
``` julia
88
88
using 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
90
90
lelandshade (G, transparency= 0.6 , title= " 60 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
91
91
```
92
92
\end{examplefig}
@@ -95,7 +95,7 @@ lelandshade(G, transparency=0.6, title="60 % texture shading", par=(FONT_TITLE=1
95
95
\begin{examplefig}{}
96
96
``` julia
97
97
using 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
99
99
lelandshade (G, transparency= 0.8 , title= " 80 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
100
100
```
101
101
\end{examplefig}
@@ -104,7 +104,7 @@ lelandshade(G, transparency=0.8, title="80 % texture shading", par=(FONT_TITLE=1
104
104
\begin{examplefig}{}
105
105
``` julia
106
106
using 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
108
108
lelandshade (G, transparency= 1.0 , title= " 100 % texture shading" , par= (FONT_TITLE= 10 ,), show= true )
109
109
```
110
110
\end{examplefig}
0 commit comments