user input

parent 26a09754
......@@ -3,7 +3,7 @@
INPUTDIR=$1 #Top directory with a L1C Subirectory
OUTPUTDIR=$2
JOBS=${3:-1}
if [ "$#" -le 2 ]; then
if [ "$#" -le 3 ]; then
echo "Usage " $0 " <L1C Directory> <L2A Directory> [jobs]"
exit
fi
......@@ -15,8 +15,7 @@ if [ ! -d $OUTPUTDIR ]; then
fi
cd $OUTPUTDIR
ls $INPUTDIR*.zip | parallel --jobs $JOBS echo
#L1CToL2A.sh
ls $INPUTDIR*.zip | parallel --jobs $JOBS L1CToL2A.sh
......@@ -10,14 +10,14 @@ L2A=$Z1"_MSIL2A_"$Z2
if [ ! -e $L2A.zip ]; then
echo "Processing: " $filename
unzip -o $filename
DIRNAME=$(echo $filename | cut -d "/" --complement -f1,2)
DIRNAME=$(echo $DIRNAME | cut -d "." -f1).SAFE
L2A_Process $DIRNAME
# unzip -o $filename
# DIRNAME=$(echo $filename | cut -d "/" --complement -f1,2)
# DIRNAME=$(echo $DIRNAME | cut -d "." -f1).SAFE
# L2A_Process $DIRNAME
zip -r $L2A.zip $L2A.SAFE/
rm -r $L2A.SAFE/
rm -r $DIRNAME/
# zip -r $L2A.zip $L2A.SAFE/
# rm -r $L2A.SAFE/
# rm -r $DIRNAME/
else
echo "PASSING: " $filename " found"
fi
......
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