Skip to content
Snippets Groups Projects
Commit 63edd0da authored by Sabine Schröder's avatar Sabine Schröder
Browse files

added controlled vocabulary for 'measuerment method'

parent f3216413
No related branches found
No related tags found
No related merge requests found
Pipeline #39996 passed
......@@ -287,6 +287,19 @@ INSERT INTO DL_vocabulary (enum_val, enum_str, enum_display_str) VALUES
( 16, 'Barren', '16 (Barren or sparsely vegetated)'),
(255, 'Fill', '255 (Fill Value/Unclassified)');
-- Measurement Methods
CREATE TABLE IF NOT EXISTS MM_vocabulary (
enum_val INT NOT NULL,
enum_str character varying(128) NOT NULL,
enum_display_str character varying(128) NOT NULL,
PRIMARY KEY(enum_val, enum_str)
);
INSERT INTO MM_vocabulary (enum_val, enum_str, enum_display_str) VALUES
(0, 'UVAbsorption', 'UV absorption'),
(1, 'UnknownInstrument', 'unknown instrument');
-- Result Types
CREATE TABLE IF NOT EXISTS RT_vocabulary (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment