1 2 3 4 5 6 7 8 9 10 11 12 13
|
REM GMT EXAMPLE 08
REM
REM $Id: example_08.bat 12820 2014-01-31 21:01:19Z remko $
REM
REM Purpose: Make a 3-D bar plot
REM GMT progs: grd2xyz, pstext, psxyz
REM DOS calls: echo, del
REM
echo GMT EXAMPLE 08
set ps=example_08.ps
gmt grd2xyz guinea_bay.nc | gmt psxyz -B1 -Bz1000+l"Topography (m)" -BWSneZ+b+tETOPO5 -R-0.1/5.1/-0.1/5.1/-5000/0 -JM5i -JZ6i -p200/30 -So0.0833333ub-5000 -P -Wthinnest -Glightgreen -K > %ps%
echo 0.1 4.9 This is the gmt surface of cube | gmt pstext -R -J -JZ -Z0 -F+f24p,Helvetica-Bold+jTL -p -O >> %ps%
del .gmt*
|