(27) Plotting Sandwell/Smith Mercator img grids

Next, we show how to plot a data grid that is distributed in projected form. The gravity and predicted bathymetry grids produced by David Sandwell and Walter H. F. Smith are not geographical grids but instead given on a spherical Mercator grid. The GMT supplement imgsrc has tools to extract subsets of these large grids. If you need to make a non-Mercator map then you must extract a geographic grid using img2grd and then plot it using your desired map projection. However, if you want to make a Mercator map then you can save time and preserve data quality by avoiding to re-project the data set twice since it is already in a Mercator projection. This example shows how this is accomplished. We have used the -M option in img2grd 1 to pull out the grid in Mercator units (i.e., do not invert the Mercator projection) and then simply plot this remote grid using a linear projection with a suitable scale (here 0.25 inches per degrees of longitude). To overlay basemaps and features that has geographic longitude/latitude coordinates we must remember two key issues:

  1. This is a spherical Mercator grid so we must use --PROJ_ELLIPSOID=Sphere with all commands that involve projections (or use gmtset to change the setting).

  2. Select Mercator projection and use the same scale that was used with the linear projection.

This map of the Tasman Sea shows the marine gravity anomalies with land painted black. A color scale bar was then added to complete the illustration.

#!/usr/bin/env bash
#		GMT EXAMPLE 27
#
# Purpose:	Illustrates how to plot Mercator img grids
# GMT modules:	makecpt, grdimage, grdinfo, coast, colorbar
#
gmt begin ex27
	# Gravity in tasman_grav.nc is in 0.1 mGal increments and the grid
	# is already in projected Mercator x/y units.

	# Make a suitable cpt file for mGal
	gmt makecpt -T-120/120 -Crainbow

	# Since this is a Mercator grid we use a linear projection
	gmt grdimage @tasman_grav.nc=ns+s0.1 -I+d -Jx0.6c

	# Then use gmt coast to plot land; get original -R from grid img remark
	# and use Mercator gmt projection with same scale as above on a spherical Earth
	R=$(gmt grdinfo @tasman_grav.nc -Ii)
	gmt coast $R -Jm0.6c -B -BWSne -Gblack --PROJ_ELLIPSOID=Sphere -Cwhite -Dh+ --FORMAT_GEO_MAP=dddF

	# Put a color legend in top-left corner of the land mask
	gmt colorbar -DjTL+o1c+w5c/0.4c -Bx -By+lmGal -I -F+gwhite+p1p
gmt end show
../_images/ex27.png

Plotting Sandwell/Smith Mercator img grids.

Footnote

1

You could also use img2grd directly - your only option under DOS