Commit 2ad4801d authored by Mario Chirinos Colunga's avatar Mario Chirinos Colunga 💬

readme MD

parent a2556845
......@@ -30,5 +30,5 @@ sentinel.downloadProducts(products,".")
```
## L2A Product generation
To convert all L1C products in a directory to L2C products ``tools/L1CProductListToL2A.sh`` is used. The script takes as an arguments the name of the a directory with a ``L1C`` Subdirectory where the products are located.
To convert all L1C products in a directory to L2C products ``tools/L1CProductListToL2A.sh`` is used. The script takes as an arguments the name of the a directory with a ``L1C`` Subdirectory where the products are located and the number of jobs to run in parallel.
#!/bin/sh
#Convert L1C Products to L2A using L2A_Process
INPUTDIR=$1 #Top directory with a L1C Subirectory
JOBS=$(2:-8)
JOBS=$(2:-1)
if [ "$#" -ne 1 ]; then
echo "Usage " $0 " <Directory with a L1C Subirectory> [jobs]"
exit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment