Index: /issm/trunk/externalpackages/googleearthtoolbox/install.sh
===================================================================
--- /issm/trunk/externalpackages/googleearthtoolbox/install.sh	(revision 7148)
+++ /issm/trunk/externalpackages/googleearthtoolbox/install.sh	(revision 7148)
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+#Get number of cpus on current platform
+NUMCPUS=$1;
+
+#Some cleanup
+rm -rf install  
+
+#Create src and install directories
+mkdir install
+
+#Download code: 
+svn checkout http://googleearthtoolbox.googlecode.com/svn/trunk/ googleearthtoolbox-read-only 
+
+#mv to install
+mv googleearthtoolbox-read-only/* install
+rm -rf googleearthtoolbox-read-only
Index: /issm/trunk/src/m/utils/Kml/exp2kml.m
===================================================================
--- /issm/trunk/src/m/utils/Kml/exp2kml.m	(revision 7148)
+++ /issm/trunk/src/m/utils/Kml/exp2kml.m	(revision 7148)
@@ -0,0 +1,19 @@
+function exp2kml(input,output)
+%EXP2KML: transform Argus exp file to kml
+%
+% Usage:    exp2kml('temp.exp','temp2.kml')
+%
+%
+
+
+%First, read exp file
+domain=expread(input,1);
+
+
+%then transform: 
+string=ge_plot(domain.x,domain.y,'name',domain.name);
+
+%open kml file for writing: 
+fid=fopen(output,'w');
+fprintf(fid,'%s',string);
+fclose(fid);
Index: /issm/trunk/src/m/utils/Kml/kml2exp.m
===================================================================
--- /issm/trunk/src/m/utils/Kml/kml2exp.m	(revision 7148)
+++ /issm/trunk/src/m/utils/Kml/kml2exp.m	(revision 7148)
@@ -0,0 +1,19 @@
+function kml2exp(input,output)
+%KML2EXP: transform kml file Argus exp file.
+%
+% Usage:    kmltoexp('temp.kml','temp2.exp')
+%
+%
+
+
+
+
+%First, read polygon kml file.
+structure=kml_shapefile(input);
+
+%create exp file: 
+domain.name=structure.name;
+domain.density=1;
+domain.x=structure.X;
+domain.y=structure.Y;
+expwrite(domain,output);
Index: /issm/trunk/startup.m
===================================================================
--- /issm/trunk/startup.m	(revision 7147)
+++ /issm/trunk/startup.m	(revision 7148)
@@ -31,4 +31,5 @@
 addpath(genpath_ice([ISSM_TIER '/externalpackages/canos']));
 addpath(genpath_ice([ISSM_TIER '/externalpackages/kml']));
+addpath(genpath_ice([ISSM_TIER '/externalpackages/googleearthtoolbox/']));
 
 %Check on any warning messages that might indicate that the paths were not correct. 
