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

view.sh 781 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
  1. #!/usr/bin/env bash
  2. # Test new syntax for view window
  3. gmt begin view
  4. gmt set FONT_TAG 12p
  5. gmt subplot begin 3x2 -Fs7.5c -Baf -A+gwhite -M12p -T"Adjusting the view window" -Y1c
  6. # Unrestricted
  7. gmt subplot set -A"none"
  8. gmt coast -Rg -JG-74.0/41.5/?+z3000+v180 -Glightblue -Dc
  9. # 100000 km
  10. gmt subplot set -A"120@."
  11. gmt coast -Rg -JG-74.0/41.5/?+z3000+v120 -Glightblue -Dc
  12. # 10000 km
  13. gmt subplot set -A"90@."
  14. gmt coast -Rg -JG-74.0/41.5/?+z3000+v90 -Glightblue -Dc
  15. # 1000 km
  16. gmt subplot set -A"60@."
  17. gmt coast -Rg -JG-74.0/41.5/?+z3000+v60 -Glightblue -Dc
  18. # 100 km
  19. gmt subplot set -A"30@."
  20. gmt coast -Rg -JG-74.0/41.5/?+z3000+v30 -Glightblue -Dl
  21. # 10 km
  22. gmt subplot set -A"10@."
  23. gmt coast -Rg -JG-74.0/41.5/?+z3000+v10 -Glightblue -Di
  24. gmt subplot end
  25. gmt end show
Tip!

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

Comments

Loading...