Hi Peter,
OK - every day is a learning day - and today I learned that I will never have enough money to buy all those pixels
But, we still need to think through your problem(s).
Firstly, I would be happy to state that the issue of 'landscape' being present in your image data should not make any difference to the stacking of your ten 'mega-images'. PixInsight is, basically, just stacking a lot of individual pixel-columns - each with 3 x 10 16-bit values (3: one for each of R, g and B; 10: one for each image). It doesn;t care 'what' the values are - each will simply be between 0 and 65535.
I also do not see why memory restriction should be an issue either. If you simply leave the Buffer and Stack parameters in the ImageIntegration Process at their default, then PI will just take (much) lomger to stack the images as it will only be able to work on smaller sections of data at a time (in comparison to the overall image).
The Buffer Size that you would require to handle you images is based on the formula "W x H x C x 4" where your W = 11608, your H = 8708 and your C = 3. This gives you a requirement for 3.389 GB of RAM for this.
The stack size is based on "W x H x C x 4 x N" where everything is as above, with N = 10. So, you need a further 33.9 GB of RAM for this.
This means a total of around 38,175 MB of RAM to avoid having to swap data to and from your working drive(s).
But, you only have 32GB of RAM fitted to your machine - so there
might be issues - especially considering that there will be a finite amount of RAM taken up running the OS and any other concurrent packages at the same time as PixInsight (PerfMon might be bale to give you a good 'base-line' of RAM usage prior to loading PixInsight, and then repeated agian just before starting the ImageIntegration Process).
What happens if you take the RGB TIFF images, but only try stacking 9 instead of 10? (Or 8, or 7, ...)?
Perhaps Juan, or other PTeam members will jump in and comment?