From 6d76e907d01ea5cbc537574bda07404887dcfa63 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 8 Jan 2010 16:46:39 +0100 Subject: Don't process the lower CCD (for now) --- src/dirax.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dirax.c b/src/dirax.c index fff93c8a..88a818ae 100644 --- a/src/dirax.c +++ b/src/dirax.c @@ -335,6 +335,9 @@ static int map_position(struct image *image, double x, double y, y -= image->y_centre; k = 1.0 / image->lambda; + /* FIXME: Don't process lower CCD for now */ + if ( y < 0 ) return 0; + if ( image->fmode == FORMULATION_CLEN ) { /* Convert pixels to metres */ -- cgit v1.2.3