Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

geodesy_02.sh 875 B

You have to be logged in to leave a comment. Sign In
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
  1. #!/usr/bin/env bash
  2. #
  3. ps=geodesy_02.ps
  4. # The example should plot some residual rates of rotation in
  5. # the Western Transverse Ranges, California. The wedges will
  6. # be dark gray, with light gray wedges to represent the 2-
  7. # sigma uncertainties. [K. Feigl, 2015-11-08]
  8. gmt psvelo << EOF -Xc -JM15c -R241/242/34/35 -B0.5 -BWeSn+tpsvelo \
  9. -Sw3c/1.e7 -W1p -G60 -E210 -D2 -P -K > $ps
  10. # lon lat spin(rad/yr) spin_sigma (rad/yr)
  11. 241.2 34.2 5.65E-08 1.17E-08
  12. 241.2 34.5 -4.85E-08 1.85E-08
  13. 241.2 34.7 4.46E-09 3.07E-08
  14. EOF
  15. # omit the shading
  16. gmt psvelo -J -R -Sw3c/1.e7 -W1p -D2 -O -K << EOF >> $ps
  17. # lon lat spin(rad/yr) spin_sigma (rad/yr)
  18. # lon lat spin(rad/yr) spin_sigma (rad/yr)
  19. 241.7 34.2 5.65E-08 1.17E-08
  20. 241.7 34.5 -4.85E-08 1.85E-08
  21. 241.7 34.7 4.46E-09 3.07E-08
  22. EOF
  23. # hit the beach
  24. gmt pscoast -O -R -J -W1p -Di >> $ps
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...