123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- --#############################################################################
- -- This SQL script generates the space time raster dataset metadata table,
- -- view and trigger
- --
- -- Author: Soeren Gebbert soerengebbert <at> googlemail <dot> com
- --#############################################################################
- --PRAGMA foreign_keys = ON;
- CREATE TABLE strds_metadata (
- id VARCHAR NOT NULL, -- Id of the space-time dataset, this is the primary foreign key
- raster_register VARCHAR, -- The id of the table in which the raster maps are registered for this dataset
- number_of_maps INTEGER, -- The number of registered raster maps
- max_min DOUBLE PRECISION, -- The minimal maximum of the registered raster maps
- min_min DOUBLE PRECISION, -- The minimal minimum of the registered raster maps
- max_max DOUBLE PRECISION, -- The maximal maximum of the registered raster maps
- min_max DOUBLE PRECISION, -- The maximal minimum of the registered raster maps
- nsres_min DOUBLE PRECISION, -- The lowest north-south resolution of the registered raster maps
- nsres_max DOUBLE PRECISION, -- The highest north-south resolution of the registered raster maps
- ewres_min DOUBLE PRECISION, -- The lowest east-west resolution of the registered raster maps
- ewres_max DOUBLE PRECISION, -- The highest east-west resolution of the registered raster maps
- title VARCHAR, -- Title of the space-time raster dataset
- description VARCHAR, -- Detailed description of the space-time raster dataset
- command VARCHAR, -- The command that was used to create the space time raster dataset
- PRIMARY KEY (id),
- FOREIGN KEY (id) REFERENCES strds_base (id) ON DELETE CASCADE
- );
- -- Create the views to access all cols for absolute or relative time
- CREATE VIEW strds_view_abs_time AS SELECT
- A1.id, A1.name, A1.mapset, A1.temporal_type,
- A1.semantic_type,
- A1.creation_time,
- -- Uncommented due to performance issues
- -- A1.modification_time, A1.revision,
- A1.creator,
- A2.start_time, A2.end_time, A2.timezone, A2.granularity,
- A3.north, A3.south, A3.east, A3.west, A3.proj,
- A4.raster_register,
- A4.number_of_maps,
- A4.nsres_min, A4.ewres_min,
- A4.nsres_max, A4.ewres_max,
- A4.min_min, A4.min_max,
- A4.max_min, A4.max_max,
- A4.title, A4.description, A4.command
- FROM strds_base A1, strds_absolute_time A2,
- strds_spatial_extent A3, strds_metadata A4 WHERE A1.id = A2.id AND
- A1.id = A3.id AND A1.id = A4.id;
- CREATE VIEW strds_view_rel_time AS SELECT
- A1.id, A1.name, A1.mapset, A1.temporal_type,
- A1.semantic_type,
- A1.creation_time,
- -- Uncommented due to performance issues
- -- A1.modification_time, A1.revision,
- A1.creator,
- A2.start_time, A2.end_time, A2.granularity,
- A3.north, A3.south, A3.east, A3.west, A3.proj,
- A4.raster_register,
- A4.number_of_maps,
- A4.nsres_min, A4.ewres_min,
- A4.nsres_max, A4.ewres_max,
- A4.min_min, A4.min_max,
- A4.max_min, A4.max_max,
- A4.title, A4.description, A4.command
- FROM strds_base A1, strds_relative_time A2,
- strds_spatial_extent A3, strds_metadata A4 WHERE A1.id = A2.id AND
- A1.id = A3.id AND A1.id = A4.id;
- -- Create a trigger to update the modification time and revision number in case the metadata or timestanps have been updated
- -- Uncommented due to performance issues
- --CREATE TRIGGER update_strds_metadata AFTER UPDATE ON strds_metadata
- -- BEGIN
- -- UPDATE strds_base SET modification_time = datetime("NOW") WHERE id = old.id;
- -- UPDATE strds_base SET revision = (revision + 1) WHERE id = old.id;
- -- END;
|