awips2/deltaScripts/unified_grid/update_FFMP_Source.sh
Ben Steffensmeier e2c2abc028 Issue #189 switch FFMP source config to grid.
Former-commit-id: 691753fef2 [formerly 4007fa442b] [formerly 691753fef2 [formerly 4007fa442b] [formerly 0b2121d3af [formerly 85dac537f47cea6cc8ee6b0e0092c80544b6a89a]]]
Former-commit-id: 0b2121d3af
Former-commit-id: b6fd0f6826 [formerly ad8d2a2892]
Former-commit-id: a11605cdbf
2012-10-01 16:10:32 -05:00

33 lines
841 B
Bash

#!/bin/bash
# This script will update any FFMPSourceConfig.xml files
# to use grid data in place of grib
#
# This update needs to be performed with build ???.
# This update is only for edex servers which host FFMPSourceConfig.xml files
echo ""
echo "Press Enter to perform the updates Ctrl-C to quit."
read done
files=`find /awips2/edex/data/utility/common_static -iname FFMPSourceConfig.xml`
if [ $? -ne 0 ]; then
echo "FATAL: Update Failed!"
exit 1
fi
for f in $files; do
echo Updating $f
bf=$f.bak.`date +%m%d%y`
cp $f $bf
# reconstruct data uris from grib to grid
awk -F '/' '
/<dataPath>\/grib/ {print $1 "/grid/" $3 "/" $4 "/.*/.*/.*/" $5 "/" $6 "/" $7 "/" $8 "/" $11 "/" $12; next;}
{gsub(/<plugin>grib<\/plugin>/,"<plugin>grid</plugin>"); print; }
' $bf > $f
done
echo "INFO: The update finished successfully."
exit 0