Sen2cor for a lot of images S2

Hello!!!
Is there any way to make the corrections for many S2 images, to go from 1C to 2A with sen2cor (for example scrip or graph) in Windows?

Grazie mille-Thank you.: :ok_man:

Itโ€™s possible to use bulk processing with gpt,

Source: https://senbox.atlassian.net/wiki/spaces/SNAP/pages/70503475/Bulk+Processing+with+GPT?preview=%2F70503475%2F70504458%2Fresample_s2.xml

A very simple script I have used some times on Windows:

for /f โ€œtokens=" %%f in ('dir /b /s /a:d "F:\Produits\escales\S2A_MSIL1C_.SAFEโ€โ€™) do (
echo Processing %%f
d:[yourPath]\Sen2Cor-02.08.00-win64\L2A_Process.bat %%f --resolution=60
)

2 Likes