xmet/db/nexrad.sql
XANTRONIX Development 1600357d51 Initial commit
2025-02-10 20:05:00 -05:00

16 lines
357 B
SQL

begin transaction;
create table nexrad_station (
id INTEGER PRIMARY KEY NOT NULL,
wban INTEGER,
call TEXT NOT NULL,
name TEXT NOT NULL,
site_elevation FLOAT NOT NULL,
tower_height FLOAT NOT NULL
);
select AddGeometryColumn(
'nexrad_station', 'coord', 4326, 'POINT', 'XY'
);
commit;