co2/01.test.html.csh
author Forrest Hoffman <forrest@climatemodeling.org>
Thu, 26 Mar 2009 14:02:21 -0400
changeset 1 4be95183fbcd
permissions -rwxr-xr-x
Modifications to scoring and graphics production for the final version of code for the C-LAMP paper in GCB.
forrest@0
     1
#!/bin/sh
forrest@0
     2
forrest@0
     3
fout=test2.html
forrest@0
     4
forrest@0
     5
echo "<html>" > $fout
forrest@0
     6
echo "<head>" >> $fout
forrest@0
     7
echo "<title> CO2 Model </title>" >> $fout
forrest@0
     8
echo "<meta name=\"description\" content=\"co2 model\">" >> $fout
forrest@0
     9
echo "<meta name=\"keywords\"    content=\"score CLAMP co2 model\">" >> $fout
forrest@0
    10
echo "<meta name=\"Authors\"     content=\"Jeff Lee\">" >> $fout
forrest@0
    11
echo "</head>" >> $fout
forrest@0
    12
forrest@0
    13
echo "<!----------------------------------------------------------------------------->" >>$ fout
forrest@0
    14
echo "<h3 align=center>CLAMP Metric</h3>" >> $fout
forrest@0
    15
echo "<h2 align=center>Seasonal cycle of atmospheric CO2 metrics</h2>" >> $fout
forrest@0
    16
echo "<h1 align=center>Stations In 60N-90N (in progress)</h2>" >> $fout
forrest@0
    17
echo "<!----------------------------------------------------------------------------->" >> $fout
forrest@0
    18
echo "<table border=1 cellspacing=\"0\" cellpadding=\"3\" width=\"100%\">" >> $fout
forrest@0
    19
echo "<tr>" >> $fout
forrest@0
    20
   echo "<th bgcolor=\"DDDDDD\" align=center> Name of <br> Station</th>" >> $fout
forrest@0
    21
   echo "<th bgcolor=\"DDDDDD\" align=center> Latitude</th>" >> $fout
forrest@0
    22
   echo "<th bgcolor=\"DDDDDD\" align=center> Longitude</th>" >> $fout
forrest@0
    23
   echo "<th bgcolor=\"DDDDDD\" align=center> Amplitude <br> Ratio  </th>" >> $fout
forrest@0
    24
   echo "<th bgcolor=\"DDDDDD\" align=center> Correlation <br> Coefficient</th>" >> $fout
forrest@0
    25
   echo "<th bgcolor=\"DDDDDD\" align=center> M <br> Score</th>" >> $fout
forrest@0
    26
   echo "<th bgcolor=\"DDDDDD\" align=center> Combined <br> Score  </th>" >> $fout
forrest@0
    27
echo "</tr>" >> $fout
forrest@0
    28
forrest@0
    29
forrest@0
    30
exit