Index: trunk/psLib/src/astro/psCoord.c
===================================================================
--- trunk/psLib/src/astro/psCoord.c	(revision 2933)
+++ trunk/psLib/src/astro/psCoord.c	(revision 2941)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-01-08 00:13:07 $
+*  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-01-10 19:47:10 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -426,6 +426,13 @@
         proj.type = PS_PROJ_TAN;
 
+        printf("------------ position 1 is (%f, %f)\n", position1->r, position1->d);
+        printf("------------ position 2 is (%f, %f)\n", position2->r, position2->d);
+        lin = psProject(position1, &proj);
+        printf("------------ projected position 1 is (%f, %f)\n", lin->y, lin->x);
         lin = psProject(position2, &proj);
+        printf("------------ projected position 2 is (%f, %f)\n", lin->y, lin->x);
         tmp = psDeproject(lin, &proj);
+        printf("------------ deprojected position 2 is (%f, %f)\n", tmp->r, tmp->d);
+
         psFree(lin);
 
