awips2/deltaScripts/16.1.1/DR4537/update_parm_units.sh

11 lines
257 B
Bash
Raw Normal View History

2022-05-05 12:34:50 -05:00
#!/bin/bash
# DR #4537 - correct units in the parameter table.
PSQL="/awips2/psql/bin/psql"
echo "INFO: update parameter unit's column"
${PSQL} -U awips -d metadata -c "UPDATE awips.parameter SET unit='kg/m^2' WHERE abbreviation='VILIQ' ;"
echo "Done."