Index: /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/colormap.c
===================================================================
--- /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/colormap.c	(revision 14108)
+++ /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/colormap.c	(revision 14108)
@@ -0,0 +1,83 @@
+int nrows=64;
+double hsv[nrows,3]={
+1.0000         0         0
+    1.0000    0.0938         0
+    1.0000    0.1875         0
+    1.0000    0.2812         0
+    1.0000    0.3750         0
+    1.0000    0.4688         0
+    1.0000    0.5625         0
+    1.0000    0.6562         0
+    1.0000    0.7500         0
+    1.0000    0.8438         0
+    1.0000    0.9375         0
+    0.9688    1.0000         0
+    0.8750    1.0000         0
+    0.7812    1.0000         0
+    0.6875    1.0000         0
+    0.5938    1.0000         0
+    0.5000    1.0000         0
+    0.4062    1.0000         0
+    0.3125    1.0000         0
+    0.2188    1.0000         0
+    0.1250    1.0000         0
+    0.0312    1.0000         0
+         0    1.0000    0.0625
+         0    1.0000    0.1562
+         0    1.0000    0.2500
+         0    1.0000    0.3438
+         0    1.0000    0.4375
+         0    1.0000    0.5312
+         0    1.0000    0.6250
+         0    1.0000    0.7188
+         0    1.0000    0.8125
+         0    1.0000    0.9062
+         0    1.0000    1.0000
+         0    0.9062    1.0000
+         0    0.8125    1.0000
+         0    0.7188    1.0000
+         0    0.6250    1.0000
+         0    0.5312    1.0000
+         0    0.4375    1.0000
+         0    0.3438    1.0000
+         0    0.2500    1.0000
+         0    0.1562    1.0000
+         0    0.0625    1.0000
+    0.0312         0    1.0000
+    0.1250         0    1.0000
+    0.2188         0    1.0000
+    0.3125         0    1.0000
+    0.4062         0    1.0000
+    0.5000         0    1.0000
+    0.5938         0    1.0000
+    0.6875         0    1.0000
+    0.7812         0    1.0000
+    0.8750         0    1.0000
+    0.9688         0    1.0000
+    1.0000         0    0.9375
+    1.0000         0    0.8438
+    1.0000         0    0.7500
+    1.0000         0    0.6562
+    1.0000         0    0.5625
+    1.0000         0    0.4688
+    1.0000         0    0.3750
+    1.0000         0    0.2812
+    1.0000         0    0.1875
+    1.0000         0    0.0938
+}
+
+
+
+value v=5*10^-5; // (m/s)
+value vmin,vmax;
+
+
+
+double alpha=(vmax-alpha)/(vmax-vmin);
+int i=(int)(alpha*nrows);
+
+double r,g,b;
+
+r=hsv[i,1];
+g=hsv[i,2];
+b=hsv[i,3];
Index: /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/list_of_colormaps
===================================================================
--- /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/list_of_colormaps	(revision 14108)
+++ /issm/trunk-jpl/src/android/ISSM_Visual/src/gov/nasa/jpl/issm/visual/colormap/list_of_colormaps	(revision 14108)
@@ -0,0 +1,23 @@
+hsv        - Hue-saturation-value color map.
+hot        - Black-red-yellow-white color map.
+gray       - Linear gray-scale color map.
+bone       - Gray-scale with tinge of blue color map.
+copper     - Linear copper-tone color map.
+pink       - Pastel shades of pink color map.
+white      - All white color map.
+flag       - Alternating red, white, blue, and black color map.
+lines      - Color map with the line colors.
+colorcube  - Enhanced color-cube color map.
+vga        - Windows colormap for 16 colors.
+jet        - Variant of HSV.
+prism      - Prism color map.
+cool       - Shades of cyan and magenta color map.
+autumn     - Shades of red and yellow color map.
+spring     - Shades of magenta and yellow color map.
+winter     - Shades of blue and green color map.
+summer  
+
+
+
+a=colormap('hsv');
+a
