Index: trunk/psLib/test/astro/tst_psEarthOrientation.c
===================================================================
--- trunk/psLib/test/astro/tst_psEarthOrientation.c	(revision 5466)
+++ trunk/psLib/test/astro/tst_psEarthOrientation.c	(revision 5483)
@@ -5,6 +5,6 @@
 *  @author d-Rob, MHPCC
 *
-*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-11-03 04:31:22 $
+*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-11-07 20:52:43 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -63,8 +63,12 @@
     psSphere *empty = NULL;
 
-    actual->r = 0.2;
-    actual->d = 0.2;
-    direction->r = 0.2035;
-    direction->d = 0.2035;
+    //    actual->r = 0.2;
+    //    actual->d = 0.2;
+    actual->r = DEG_TO_RAD(45.0);
+    actual->d = DEG_TO_RAD(30.0);
+    //    direction->r = 0.2035;
+    //    direction->d = 0.2035;
+    direction->r = DEG_TO_RAD(48.0);
+    direction->d = DEG_TO_RAD(20.7072);
 
     empty = psAberration(empty, apparent, direction, 0.1);
@@ -82,5 +86,8 @@
 
     apparent = psAberration(apparent, actual, direction, 0.4);
-    printf("\napparent = r,d  = %.8g, %.8g\n", apparent->r, apparent->d);
+    if (apparent == NULL)
+        printf("\nApparent is NULL\n");
+    else
+        printf("\napparent = r,d  = %.8g, %.8g\n", apparent->r, apparent->d);
 
     psFree(apparent);
