plot plate boundary 〜プレート境界を入れる 

   使うコマンド  plot, coast, basemap



bash スクリプト例
#  plot plate boundary

# parameter setting
region=115/155/0/45                   # map region east/west/south/north
proj=M10                                # map projection and scale
ticks=a10f1g10                            # boundary tick info
frame=WSne+tplate_boundary                     # boundary frame info
ridgefile=ridge.d
transfile=fracture.d
trenchfileL=trenchesL
trenchfileR=trenchesR                  
#
gmt begin plate
     gmt plot $transfile -R$region -J$proj -Wthinner,green
     gmt plot $ridgefile -Wthin,red
     gmt plot $trenchfileL -Sf0.3/0.1+l+t -Wthin,blue -Gblue
     gmt plot $trenchfileR -Sf0.3/0.1+r+t -Wthin,blue -Gblue
     gmt coast -Di -Ggray -Wthin,black
     gmt basemap -B$ticks -B$frame
gmt end show
#


Tips