Vq = mapinterp(V,R,xq,yq) interpolates
the spatially referenced raster V, using bilinear
interpolation. The function returns a value in Vq for
each of the query points in arrays xq and yq. R is
a map raster reference object that specifies the location and extent
of data in V.
Load projected elevation data and a map cells reference object for an area around Mount Washington. Specify the points you want to interpolate. Then, interpolate the values.
[Z,R] = readgeoraster('MtWashington-ft.grd');
x = [ 312829 317447 316083 311150];
y = [4913618 4912253 4904329 4904172];
Vinterpolated = mapinterp(Z,R,x,y)
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.