nexrad-archive/db/nexrad.sql

22 lines
484 B
MySQL
Raw Normal View History

2025-02-11 22:18:35 -05:00
select load_extension('mod_spatialite.so.8');
2025-02-11 21:12:05 -05:00
select InitSpatialMetadata(1);
2025-02-10 20:05:00 -05:00
begin transaction;
2025-02-11 12:10:02 -05:00
create table nexrad_radar (
2025-02-10 20:05:00 -05:00
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(
2025-02-11 12:10:02 -05:00
'nexrad_radar', 'coord', 4326, 'POINT', 'XY'
2025-02-10 20:05:00 -05:00
);
select CreateSpatialIndex('nexrad_radar', 'coord');
2025-02-10 20:05:00 -05:00
commit;