Pre-post processing of numerical models can take quite some time. Therefore it can be tempting to reduce the time available for proper post-processing. However, properly visualizing your results is of vital importance to any analysis. To help your reader to understand the geographical location it can be interesting to plot your results on a georeferenced map with a so-called geo-image. A geo image is being used by other post-processors simply as a background of model results. The standard post-processing tools (e.g. Quickplot, Matlab or Muppet) support images in “*.jpg” or “*.png” format. With the 'Geo Image' toolbox we can make such a geo-image.
Figure: With the Geo Image toolbox an image of the area of interest can be made, which can be used as the underlying layer in the presentation of computational results. In this example, we made a geo image of Barnegat Bay, NJ
% load your geoimage
filename = 'p:\1230691-sri-lanka\02_data\geo_image\overall'; % dont use an extension
[x,y,z,col] = georeference_image(filename);
% create the figure
figure; hold on;
plt1 = surf(x,y,z,squeeze(col));shading flat;
plt2 = scatter(Xpoint, Ypoints, [], Zpoints);