Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
File cleanup.
  • Loading branch information
EdwardSafford-NOAA committed Jan 17, 2025
1 parent 78bbc59 commit 06fd105
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/Radiance_Monitor/image_gen/html/install_glb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ done
# Sort the list by Satellite
#
`sort -d -u $UNSORTED_LIST > $SORTED_LIST`
#echo SORTED_LIST = $SORTED_LIST

#--------------------------------------------------------------
# Read the sorted list and create the platform table
Expand Down
10 changes: 5 additions & 5 deletions src/Radiance_Monitor/image_gen/html/install_rgn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,16 @@ fi
# Use the SATYPE list to construct the platform table.
#
UNSORTED_LIST=./unsorted.txt
>$UNSORTED_LIST
>${UNSORTED_LIST}
export SORTED_LIST=./sorted.txt
>$SORTED_LIST
>${SORTED_LIST}

for satype in $SATYPE; do
for satype in ${SATYPE}; do
ins=${satype%_*}
tmp="${ins}_"
sat=${satype#$tmp}
sat=${satype#${tmp}}

sat_num=`echo $sat | tr -d '[[:alpha:]]'`
sat_num=`echo ${sat} | tr -d '[[:alpha:]]'`

#-----------------------------------------------------------------
# If sat_num has a length > 0 then we have a goes or noaa series
Expand Down

0 comments on commit 06fd105

Please sign in to comment.