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

demo_ge_text()
function demo_ge_text()


kmlStr='';
for k=1:10
    kmlStr = [kmlStr,ge_text(2,k,400000,num2str(k),...
        'altitudeMode','relativeToGround','description',...
        'Use HTML to add description here. <BR><HR><BR>')];
end


ge_output('demo_ge_text.kml',kmlStr)

Contact us