GMT4画断层面滑动分布

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

PGA绘全球地震分布

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 #

exsim的shell脚本

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 #!/bin/bash rm -r ./ACC rm -r ./PSA rm -r ./other rm ACC.out lat=30.025 lon=100.13 stk=140.0 dip=90.0 depth=2 L=95.0 W=25.0 dl=5.0 dw=5.0 hypoL=47.5 # position center 2.5,8 hypoW=12.5 num=0 outfile=input inputfile=input.params for stress

GMT画等值线

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 gmtset TICK_LENGTH 0.1 gmtset LABEL_FONT 5 gmtset LABEL_FONT_SIZE 10 gmtset ANOT_FONT_SIZE 8 surface rand.txt -Gtmp.grd -I0.1 -R-4/4/-4/4 -I0.1 -C0.001 # rand.txt: [lat,lon,data] # -将资料网格化并存为grd文件 # -T: 设定te

计算PGA的python程序

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70