Level 2 Processing CC 100% but image without cloud #88
-
I am testing the force-level2 on a single image (in summertime) without a single cloud but the image is skipped and the logfile indicates cc:100%. For the DTM, I am using a 25m resolution model (.tff) and a reprojection with a WKT string (see in attached parameter file). |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Hi there, if you suspect your DEM to be the issue, you can run the processing without the DEM to verify your assumption. |
Beta Was this translation helpful? Give feedback.
-
Hi @sulmonieri , thanks for the data. I see two issues: the usage of the VRT is redundant as the tiff is already a mosaic. You can directly use the tiff. I believe that the problem could be related to the nodata value. The parameter file says DEM_NODATA = -32767. In the data, the fill value is -3.40282347e+38 . I suggest to convert your DEM to INT16. Float works too, but it is not really necessary. Please burn -32767 into the DEM where there is no data, and then try again. Hope this helps, |
Beta Was this translation helpful? Give feedback.
-
This message prints the range in kilometers. Thus, you still have some weird values in the DEM (65536), or potentially used Unsigned Int, in which case the negative values (-32767) might got wrapped around to the upper UInt16 range... |
Beta Was this translation helpful? Give feedback.
This message prints the range in kilometers. Thus, you still have some weird values in the DEM (65536), or potentially used Unsigned Int, in which case the negative values (-32767) might got wrapped around to the upper UInt16 range...