Created
July 6, 2015 16:43
-
-
Save chbatey/326a1170bd365a28302c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CREATE TABLE weather_station ( | |
id text PRIMARY KEY, // Composite of Air Force Datsav3 station number and NCDC WBAN number | |
name text, // Name of reporting station | |
country_code text, // 2 letter ISO Country ID | |
state_code text, // 2 letter state code for US stations | |
call_sign text, // International station call sign | |
lat double, // Latitude in decimal degrees | |
long double, // Longitude in decimal degrees | |
elevation double // Elevation in meters | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment