Index: /trunk/psLib/src/astro/psTime.c
===================================================================
--- /trunk/psLib/src/astro/psTime.c	(revision 3707)
+++ /trunk/psLib/src/astro/psTime.c	(revision 3708)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-18 23:40:15 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-04-19 00:17:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -422,5 +422,5 @@
 }
 
-double psTimeToLST(psTime *time, double longitude)
+double psTimeToLMST(psTime *time, double longitude)
 {
     psF64  jdTdtDays    =  0.0;
Index: /trunk/psLib/src/astro/psTime.h
===================================================================
--- /trunk/psLib/src/astro/psTime.h	(revision 3707)
+++ /trunk/psLib/src/astro/psTime.h	(revision 3708)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-18 23:40:15 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-04-19 00:17:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -107,12 +107,12 @@
 );
 
-/** Convert psTime to Local Mean Sidereal Time (LST).
- *
- *  Converts psTime at the given longitude to LST time. If the input time is not in UTC format, then it is
+/** Convert psTime to Local Mean Sidereal Time (LMST).
+ *
+ *  Converts psTime at the given longitude to LMST time. If the input time is not in UTC format, then it is
  *  converted.
  *
  *  @return  double: LST Time.
  */
-double psTimeToLST(
+double psTimeToLMST(
     psTime *time,                       ///< psTime to be converted.
     double longitude                    ///< Longitude.
Index: /trunk/psLib/src/astronomy/psAstrometry.c
===================================================================
--- /trunk/psLib/src/astronomy/psAstrometry.c	(revision 3707)
+++ /trunk/psLib/src/astronomy/psAstrometry.c	(revision 3708)
@@ -8,6 +8,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-07 20:27:41 $
+ *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-04-19 00:17:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -230,5 +230,5 @@
 
     // XXX: how is this value derived?
-    *(double *)&exp->lst = psTimeToLST((psTime*)time,observatory->longitude);
+    *(double *)&exp->lst = psTimeToLMST((psTime*)time,observatory->longitude);
     *(float *)&exp->positionAngle = 0.0f; // XXX: need input, see Bug #207
     *(float *)&exp->parallacticAngle = 0.0f; // XXX: need input, see Bug #207
Index: /trunk/psLib/src/astronomy/psTime.c
===================================================================
--- /trunk/psLib/src/astronomy/psTime.c	(revision 3707)
+++ /trunk/psLib/src/astronomy/psTime.c	(revision 3708)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-18 23:40:15 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-04-19 00:17:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -422,5 +422,5 @@
 }
 
-double psTimeToLST(psTime *time, double longitude)
+double psTimeToLMST(psTime *time, double longitude)
 {
     psF64  jdTdtDays    =  0.0;
Index: /trunk/psLib/src/astronomy/psTime.h
===================================================================
--- /trunk/psLib/src/astronomy/psTime.h	(revision 3707)
+++ /trunk/psLib/src/astronomy/psTime.h	(revision 3708)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-04-18 23:40:15 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-04-19 00:17:05 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -107,12 +107,12 @@
 );
 
-/** Convert psTime to Local Mean Sidereal Time (LST).
- *
- *  Converts psTime at the given longitude to LST time. If the input time is not in UTC format, then it is
+/** Convert psTime to Local Mean Sidereal Time (LMST).
+ *
+ *  Converts psTime at the given longitude to LMST time. If the input time is not in UTC format, then it is
  *  converted.
  *
  *  @return  double: LST Time.
  */
-double psTimeToLST(
+double psTimeToLMST(
     psTime *time,                       ///< psTime to be converted.
     double longitude                    ///< Longitude.
Index: /trunk/psLib/test/astronomy/tst_psTime_01.c
===================================================================
--- /trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 3707)
+++ /trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 3708)
@@ -18,11 +18,11 @@
  *     M) Convert psTime to tm time
  *     N) Convert tm time to psTime
- *     O) Convert psTime time to LST
+ *     O) Convert psTime time to LMST
  *     P) Free data
  *
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-04-18 23:40:15 $
+ *  @version $Revision: 1.24 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-04-19 00:17:06 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -202,10 +202,10 @@
 
 
-    // Test O - psTime to LST
+    // Test O - psTime to LMST
     printPositiveTestHeader(stdout, "psTime", "Convert psTime time to LST");
     char *testString2 = "2004-09-10T1:00:00.00Z";
     psTime* testTime2 = NULL;
     testTime2 = psTimeFromISO(testString2);
-    double dblTime = psTimeToLST(testTime2, 1);
+    double dblTime = psTimeToLMST(testTime2, 1);
     printf("LST (rad): %lf\n", dblTime);
     psFree(testTime2);
