Make start, end storm report coordinates optional
This commit is contained in:
parent
e8eb158fac
commit
f8b6093d4e
1 changed files with 2 additions and 2 deletions
|
@ -30,11 +30,11 @@ create table nexrad_storm_report (
|
||||||
);
|
);
|
||||||
|
|
||||||
select
|
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');
|
CreateSpatialIndex('nexrad_storm_report', 'coord_start');
|
||||||
|
|
||||||
select
|
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');
|
CreateSpatialIndex('nexrad_storm_report', 'coord_end');
|
||||||
|
|
||||||
commit;
|
commit;
|
||||||
|
|
Loading…
Add table
Reference in a new issue