Skip to content

Commit 23d2223

Browse files
committed
Add a Spilhaus example.
1 parent f6e487f commit 23d2223

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

examples/projections/spilhaus.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Spilhaus projection
2+
3+
The Spilhaus Projection presents the world seas and oceans as a single body of water.
4+
5+
\begin{examplefig}{}
6+
```julia
7+
using GMT
8+
resetGMT() # hide
9+
grdimage("@earth_relief_15m", shade=true, R=:d, proj="+proj=spilhaus",
10+
coast=(shore=true, frame="Wbet 30g"), show=true)
11+
```
12+
\end{examplefig}

geophysics/weather/01_weather.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ using GMT
3737
GMT.resetGMT() # hide
3838

3939
# Download the ecmwf forcasts for the _u_ and _v_ components of the wind at 10 meters above the surface
40-
ecmwf(:forecast, var="10u", region="IHO23", filename="u10.grd")
41-
ecmwf(:forecast, var="10v", region="IHO23", filename="v10.grd")
40+
ecmwf(:forecast, var="10u", limits="IHO23", filename="u10.grd")
41+
ecmwf(:forecast, var="10v", limits="IHO23", filename="v10.grd")
4242

4343
windbarbs("u10.grd", "v10.grd", Q="0.25c+s20+w0.15c", I="x10", proj=:guess)
4444
rm("u10.grd") # Hide

0 commit comments

Comments
 (0)