From f8b6093d4e797a19d2ef84bd8e57a078c2acdd0c Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Thu, 13 Feb 2025 17:43:03 -0500 Subject: [PATCH] Make start, end storm report coordinates optional --- db/nexrad.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;