<p><b>dwj07@fsu.edu</b> 2012-06-12 13:31:37 -0600 (Tue, 12 Jun 2012)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Fixing an issue with reading the on_a_sphere attribute.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/tools/mpas_draw/netcdf_utils.cpp
===================================================================
--- branches/tools/mpas_draw/netcdf_utils.cpp        2012-06-11 18:39:36 UTC (rev 1978)
+++ branches/tools/mpas_draw/netcdf_utils.cpp        2012-06-12 19:31:37 UTC (rev 1979)
@@ -70,12 +70,12 @@
                 
                 vals = att_id -&gt; values();
 
-                sph_name = &quot;YES             &quot;;
+                sph_name = &quot;YES&quot;;
 
                 for(int i = 0; i &lt; vals -&gt; num(); i++){
                         tmp_name = vals -&gt; as_string(i);
-
-                        if(tmp_name == sph_name){
+//                        if(tmp_name == sph_name){
+                        if(tmp_name.find(sph_name) == string::npos){
                                 return true;
                         }
                 }

</font>
</pre>