Skip to content

Instantly share code, notes, and snippets.

@chbatey
Created July 6, 2015 16:43
Show Gist options
  • Save chbatey/326a1170bd365a28302c to your computer and use it in GitHub Desktop.
Save chbatey/326a1170bd365a28302c to your computer and use it in GitHub Desktop.
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