mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-24 06:57:56 -05:00
7 lines
261 B
Bash
Executable file
7 lines
261 B
Bash
Executable file
#!/bin/bash
|
|
# creates the radar_spatial table from an sql script file
|
|
|
|
echo "Generating new radar_spatial table"
|
|
psql -U awips -d metadata -c "DELETE FROM radar_spatial"
|
|
psql -U awips -d metadata -f ./radarSpatial.sql
|
|
echo "Done generating radar_spatial table"
|