Index: branches/eam_branches/ipp-20100621/Ohana/src/relastro/doc/notes.txt
===================================================================
--- branches/eam_branches/ipp-20100621/Ohana/src/relastro/doc/notes.txt	(revision 28674)
+++ branches/eam_branches/ipp-20100621/Ohana/src/relastro/doc/notes.txt	(revision 28683)
@@ -1,2 +1,28 @@
+
+2010.07.15
+
+  Some issues:
+
+  * when I apply the fitted image parameters (UpdateObjectOffsets), I
+    currently check for good/bad fits and warn if the image is bad.
+    But the correction requires multiple re-loads of the catalog
+    tables.
+
+  * I would like to check for bad fits by defining a grid of test
+    points and seeing how much they move.  However, for some chips,
+    the region of valid data is much smaller than the regino with any
+    data.  
+
+  * I would like to define a grid (say, Nx * Ny with Nx >> polynomial
+    order) and only use those grid regions in testing the solution
+
+  * This means knowing which detections belong on a specific image.
+    I'm not sure if there is a good way to do this.  at the moment, it
+    is easy to do detection -> image, but not so easy to do
+    image->detection.
+
+  * That might argue for generating the grid for each image, then
+    running through all detections and, as detections are examined,
+    populate the grid elements for their own image.
 
 2010.03.24
Index: branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/load_catalogs.c
===================================================================
--- branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/load_catalogs.c	(revision 28674)
+++ branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/load_catalogs.c	(revision 28683)
@@ -34,4 +34,6 @@
       FlagOutliers(&tcatalog);
     }
+
+    // XXX mark the image grid based on the loaded detections
 
     // select only the brighter stars
Index: branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/relastro.c
===================================================================
--- branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/relastro.c	(revision 28674)
+++ branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/relastro.c	(revision 28683)
@@ -49,4 +49,6 @@
 
   /* load catalog data from region files : subselect high-quality measurements */
+  // XXX pass in the image table
+  // XXX who carries the image grid?
   catalog = load_catalogs (skylist, &Ncatalog, TRUE);
   MARKTIME("load catalog data: %f sec\n", dtime);
