Index: trunk/psModules/src/camera/pmFPABin.c
===================================================================
--- trunk/psModules/src/camera/pmFPABin.c	(revision 19695)
+++ trunk/psModules/src/camera/pmFPABin.c	(revision 19705)
@@ -60,5 +60,18 @@
     out->data_exists = true;
     if (out->parent) {
-        out->parent->data_exists = out->parent->parent->data_exists = true;
+        pmCell *outCell = out->parent;  // Output cell
+        outCell->data_exists = outCell->parent->data_exists = true;
+
+        if (in->parent) {
+            pmCell *inCell = in->parent;// Input cell
+            psFree(outCell->concepts);
+            outCell->concepts = psMetadataCopy(NULL, inCell->concepts);
+        }
+
+        // Update the concepts with the new values for the binning
+        psMetadataItem *binItem = psMetadataLookup(outCell->concepts, "CELL.XBIN");
+        binItem->data.S32 *= xBin;
+        binItem = psMetadataLookup(outCell->concepts, "CELL.YBIN");
+        binItem->data.S32 *= yBin;
     }
 
