Index: /trunk/ippToPsps/jython/stackbatch.py
===================================================================
--- /trunk/ippToPsps/jython/stackbatch.py	(revision 32515)
+++ /trunk/ippToPsps/jython/stackbatch.py	(revision 32516)
@@ -57,12 +57,18 @@
        self.filter = meta[0];
        self.filter = self.filter[0:1]
+       self.skycell = meta[1];
 
        # skycell is, eg "skycell.1133.081"
        # we need 1133.081 for skycell, but store as an int, so instead store 1133081
        # projection cell is just the 1133 bit
-       self.skycell = meta[1];
-       self.projectioncell = self.skycell[8:12]
-       self.skycell = self.skycell[8:]
-       self.skycell = self.skycell.replace(".", "")
+       # this is how it should be done
+       #self.projectioncell = self.skycell[8:12]
+       #self.skycell = self.skycell[8:]
+       #self.skycell = self.skycell.replace(".", "")
+       #self.projectioncell = self.skycell[8:12]
+
+       # TODO this is the wrong way, but is consistent with SkyCell table in IN data
+       self.skycell = self.skycell[8:12]
+       self.projectioncell = self.skycell
 
        self.analysisVer = meta[2];
