#!bin/bash #Hemisphere map gmt pscoast -Rg -JA75/30/4.5i -Bg -Dc -A1000 -Gnavy -P > fig_map_lambert_az_hemi.eps #Orthographic projection (-Jg -JG) gmt pscoast -Rg -JG75/30/4.5i -Bg -Dc -A5000 -Gpink -Sthistle -P > fig_map_orthographic.eps #Mercator projection (-Jm -JM) gmt set MAP_FRAME_TYPE fancy gmt pscoast -R-90/270/-75/75 -Jm1.2e-2i -Bxa30f15 -Bya30f15 -Dc -A5000 -Gred \ -P > fig_map_mercator.eps #Cylindrical equidistant projection (-Jq -JQ) gmt pscoast -Rg -JQ90/4.5i -B30f30g30 -Dc -A5000 -Gtan4 -Slightcyan -P > fig_map_equi_cyl.eps #Cylindrical equal-area projections (-Jy -JY) gmt pscoast -R-90/270/-90/90 -JY90/30/4.5i -B30g30 -Dc -A10000 -Sdodgerblue \ -Wthinnest -P > fig_map_general_cyl.eps #Miller Cylindrical projection (-Jj -JJ) gmt pscoast -R-90/270/-80/90 -Jj1:400000000 -Bx30g30 -By30g30 -Dc -A10000 \ -Gkhaki -Wthinnest -P -Sazure > fig_map_miller.eps #Cylindrical stereographic projections (-Jcyl_stere -JCyl_stere) gmt set FORMAT_GEO_MAP dddA gmt pscoast -R-90/270/-60/80 -JCyl_stere/90/45/4.5i -Bxa30f30g30 -Bya30g30 -Dc -A5000 \ -Wblack -Gseashell4 -Santiquewhite1 -P > fig_map_gall_stereo.eps #Hammer projection (-Jh -JH) gmt pscoast -Rg -JH75/4.5i -Bg -Dc -A10000 -Gblack -Scornsilk -P > fig_map_hammer.eps #Mollweide projection (-Jw -JW) gmt pscoast -Rd -JW75/4.5i -Bg -Dc -A10000 -Gtomato1 -Sskyblue -P > fig_map_mollweide.eps #Winkel Tripel projection (-Jr -JR) gmt pscoast -Rd -JR75/4.5i -Bg -Dc -A10000 -Gburlywood4 -Swheat1 -P > fig_map_winkel.eps #Robinson projection (-Jn -JN) gmt pscoast -Rd -JN75/4.5i -Bg -Dc -A10000 -Ggoldenrod -Ssnow2 -P > fig_map_robinson.eps #Eckert IV and VI projection (-Jk -JK) gmt pscoast -Rg -JKf75/4.5i -Bg -Dc -A10000 -Wthinnest -Givory -Sbisque3 -P > fig_map_eckert4.eps gmt pscoast -Rg -JKs75/4.5i -Bg -Dc -A10000 -Wthinnest -Givory -Sbisque3 -P > fig_map_eckert6.eps