Good morning,
Thank you very much for your fast answer. I have finally solved the problem by following your steps in this discussion : Sen2cor 2.4.0 on SNAP 6.0
Then, because of a message error…
File “/home/rasdaman/Sen2Cor-2.4.0-Linux64/lib/python2.7/site-packages/sen2cor/L2A_Tables.py”, line 163, in init
t2a_split[2] + ‘’ + t2asplit[1] + ‘’ + t1csplit[10]
IndexError: list index out of range
…I have edited the L2A_Tables.py (line 163) in an IDLE, according to Can't process some tiles, Sen2Cor IndexError: list index out of range
I have replaced :
self.tileId2a = t1c_split[0] + ‘USER’ + t1c_split[2] + '’ + t2a_split[0] + ‘’ +
t1c_split[4] + '’ + t1c_split[5] + ‘’ + t2a_split[3] + '’ +
t2a_split[2] + ‘’ + t2a_split[1] + '’ + t1c_split[10]
Into this :
self.tileId2a = t1c_split[0] + ‘USER’ + t1c_split[2] + '’ + t2a_split[0] + ‘’ +
t1c_split[4] + '’ + t1c_split[5] + ‘’ + t2a_split[3] + '’ +
t2a_split[2] + ‘’ + t2a_split[1] + '’ + t1c_split[-1]
And it worked well for me.
Thanks for your help !