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

wrap.sh 880 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
  1. #!/usr/bin/env bash
  2. # GMT_KNOWN_FAILURE
  3. # grdview does not close gap across periodic boundary that is not split, such as for azimuthal projections
  4. # There are three troubles here:
  5. # 1) The gap, which is seen in the output of this script (no orig present to ensure test will fail)
  6. # 2) For -JP, the "pole" 90 is at the horizon, not the center, so the problem with start/stop/inc that
  7. # I recently fixed for Victor fails for -JP. We probably need to flip something in set_loop_order for that to work
  8. # 3) The y-placement is wrong so I need to compensate with -Y-3i for the first layer
  9. #
  10. # The script below shows both problems by plotting -JA (only problem 1) and -JP (both problems)
  11. ps=wrap.ps
  12. gmt grdview test.grd -JA0/90/6i -Bg10a30p/g10a10p -JZ3i -pz130/30 -P -Qmpink -K -Y-3.5i > $ps
  13. gmt grdview test.grd -JP6i+t-90 -Bg10a30p/g10a10p -JZ3i -pz130/30 -O -Qmpink -Y5i >> $ps
Tip!

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

Comments

Loading...