Trouble generating the Sentinel 2 Level 2 Product #313
-
First of all, I would like to wish everyone a happy new year :) I am currently working on Sentinel 2 and Sentinel 3 data for the year 2023 and stumbled across this nice piece of open source code. My idea is to (pre)process the Sentinel 2 data via FORCE and benefit from the data cubing when applying a linear regression to fill data gaps caused by clouds. Over the holidays I worked my way through setting up the docker image, mounting directories and exchanging credentials between my windows system and the docker image to get the force-level1-csd up and running. Because i am new to linux and docker this was quite a hassle. Nevertheless here is my problem, I am working on the tiles T32UPB, T32UPC, T32UQB, T32UQC and I have prepped. the SRTM elevation model (units in metres, nodata value != 0 and it covers my entire study area). I am using the following parameter file: The corresponding file queue is: And the corresponding DEM is: But after running: My force version is FORCE v. 3.7.11 I appreciate any suggestions and help. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi JonnyReGif, could you clarify whether this is the output you are receiving for all of your processed tiles or just for some of them? Best, |
Beta Was this translation helpful? Give feedback.
-
Hi @JonnyReGIF, it seems most of your processes were killed by the kernel. This is usually related to memory limitations of your rig, or using too many processes at once. As the only successful image is covering only a small area, this supports this theory. How much RAM, and how many CPUs do you have? My recommendation: 8GB per process (NPROC in parameter file). Cheers, |
Beta Was this translation helpful? Give feedback.
-
Hi David, thanks for the reply. I am currently testing FORCE on my personal laptop with 16GB RAM and 6 CPU cores. But unfortunately the following settings are crashing my system too: NPROC = 8 I will try to switch to a more powerful machine and run it again. Thanks to you and @ernstste for the support. Best, |
Beta Was this translation helpful? Give feedback.
Hi Jonny,
try reducing the processes (NPROC) according to David's recommendation.
NPROC = 1 --> min. 8GB RAM, NPROC = 2 --> min. 16 GB RAM. Running 8 processes in parallel on a mere 16GB RAM is a bit daring... ;)
Stefan