jekhokie/raspberry-noaa-v2

Added --fill_missing option to NOAA & METEOR receive scripts

Closed this issue · 3 comments

Ok .. it work very well, but the filled image remain in MSU-MR (Filled) folder which will be overwritten in the next pass ,and the original image decode is displayed on the web page

We'll take a look!

I did it the hard way...
Looking if a Filled directory exists and then immediately before...

find MSU-MR/ -type f ! -name "*projected*" ! -name "*corrected*" -delete

I'm doing

  if [ -d "MSU-MR (Filled)" ] && [ -d "MSU-MR" ]; then
    rm -rf "MSU-MR"
    mv "MSU-MR (Filled)" "MSU-MR"
  fi

and the rest of the processing can be leaved untouched

nice solution ! thanks