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

fc_okb.sh 482 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
  1. #!/usr/bin/env bash
  2. #
  3. # Compute the gravity anomaly of the Flemish Cap Guyot
  4. ps=fc_okb.ps
  5. lim=-41:50/-41:20/47:30/47:50
  6. # Get rough gmt surface description
  7. gmt grd2xyz @earth_relief_10m_g -R$lim -fg > fc.dat
  8. # Calculate the triangles
  9. gmt triangulate fc.dat > fc_tri.dat
  10. # Compute the grav anomaly using a contras density of 1700 kg/m^3
  11. gmt gmtgravmag3d -C1700 -Gfc_okb.nc -R -I1m -Z-4300 -fg fc.dat -Tvfc_tri.dat
  12. gmt grdcontour fc_okb.nc -C2.5 -A5 -JM14c -Ba -BWSen -P > $ps
Tip!

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

Comments

Loading...