Is it possible to see the sen2cor avalaible in the graph builder?
you can automate sen2cor it simply using the command line.
L2A_Process --resolution {10,20,60} directory.safe
http://step.esa.int/thirdparties/sen2cor/2.5.5/docs/S2-PDGS-MPC-L2A-SUM-V2.5.5_V2.pdf (chapter 3.3.1)
Thanks for your answer. I already know that. I was wondering if there is a way to see in the grpah builder so then i can use it in batch processing?
If you simple need to apply sen2cor on a large number of images you can create a bat file containing the command multiple times addressing the single folders.
L2A_Process --resolution 10 directory1.safe
L2A_Process --resolution 10 directory2.safe
L2A_Process --resolution 10 directory3.safe
L2A_Process --resolution 10 directory4.safe
...
Or you call it with a loop
for folder in allfolders:
L2A_Process --resolution 10 folder