diff --git a/db/nexrad.sql b/db/nexrad.sql index be3128c..d5e4f1e 100644 --- a/db/nexrad.sql +++ b/db/nexrad.sql @@ -30,11 +30,11 @@ create table nexrad_storm_report ( ); select - AddGeometryColumn('nexrad_storm_report', 'coord_start', 4326, 'POINT', 'XY', 1), + AddGeometryColumn('nexrad_storm_report', 'coord_start', 4326, 'POINT', 'XY', 0), CreateSpatialIndex('nexrad_storm_report', 'coord_start'); select - AddGeometryColumn('nexrad_storm_report', 'coord_end', 4326, 'POINT', 'XY', 1), + AddGeometryColumn('nexrad_storm_report', 'coord_end', 4326, 'POINT', 'XY', 0), CreateSpatialIndex('nexrad_storm_report', 'coord_end'); commit;