user input

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