Code covered by the BSD License  

Highlights from
Google Earth Toolbox

image thumbnail
from Google Earth Toolbox by scott lee davis
Various plotting/drawing functions that can be saved as KML output, and loaded in Google Earth

dms2dd(d,m,s)
function dd = dms2dd(d,m,s)
%converts degrees-minutes-seconds notation to decimal degrees
a=sign(d);
dd = sum([d,a*m,a*s]./[1,60,3600]);

Contact us