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

highpass.sh 541 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
  1. #!/usr/bin/env bash
  2. # Testing gmt filter1d highpass and lowpass
  3. ps=highpass.ps
  4. gmt psxy -R0/100/-5/25 -JX6i/2.75i -P -Xc -Baf -BWSne -W0.25p raw_data.txt -K > $ps
  5. gmt filter1d -Fm15 raw_data.txt | gmt psxy -R0/100/4/11 -J -O -K -Baf -BWSne -W0.25p,red -Y3.25i >> $ps
  6. gmt filter1d -Fg15 raw_data.txt | gmt psxy -R -J -O -K -W0.25p,blue >> $ps
  7. gmt filter1d -Fm15+h raw_data.txt | gmt psxy -R0/100/-13/18 -J -O -K -Bafg100 -BWSne -W0.25p,red -Y3.25i >> $ps
  8. gmt filter1d -Fg15+h raw_data.txt | gmt psxy -R -J -O -Baf -BWSne -W0.25p,blue >> $ps
Tip!

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

Comments

Loading...