-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refs akrherz/iem#603
- Loading branch information
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
-- Storage of WMO BUFR Station Data | ||
alter table alldata add tsoil_4in_f real; | ||
alter table alldata add tsoil_8in_f real; | ||
alter table alldata add tsoil_16in_f real; | ||
alter table alldata add tsoil_20in_f real; | ||
alter table alldata add tsoil_32in_f real; | ||
alter table alldata add tsoil_40in_f real; | ||
alter table alldata add tsoil_64in_f real; | ||
alter table alldata add tsoil_128in_f real; | ||
alter table alldata add skyc1 char(3); | ||
alter table alldata add skyc2 char(3); | ||
alter table alldata add skyc3 char(3); | ||
alter table alldata add skyc4 char(3); | ||
alter table alldata add skyl1 int; | ||
alter table alldata add skyl2 int; | ||
alter table alldata add skyl3 int; | ||
alter table alldata add skyl4 int; | ||
alter table alldata add srad_1h_j real; |