a- add all gschliefgraben-Glasfaser sensors
This commit is contained in:
parent
8621510230
commit
fb010174b7
5 changed files with 337 additions and 46 deletions
99
db/insert_initial_values.txt
Normal file
99
db/insert_initial_values.txt
Normal file
|
@ -0,0 +1,99 @@
|
|||
|
||||
|
||||
INSERT INTO gba.category(
|
||||
category_id, identifier, name, description)
|
||||
VALUES (1, 'SOS', 'SOS', 'Default SOS category');
|
||||
|
||||
|
||||
INSERT INTO gba.codespace(
|
||||
codespace_id, name)
|
||||
VALUES (1, 'http://www.opengis.net/def/nil/OGC/0/unknown');
|
||||
|
||||
INSERT INTO gba.format(
|
||||
format_id, definition) VALUES
|
||||
(1, 'http://www.opengis.net/sensorml/2.0'),
|
||||
(2, 'http://inspire.ec.europa.eu/featureconcept/PointObservation'),
|
||||
(3, 'http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement'),
|
||||
(4, 'http://inspire.ec.europa.eu/featureconcept/PointTimeSeriesObservation'),
|
||||
(5, 'http://www.opengis.net/def/samplingFeatureType/OGC-OM/2.0/SF_SamplingPoint'),
|
||||
(6, 'http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_TextObservation'),
|
||||
(7, 'application/vnd.geo+json'),
|
||||
(8, 'http://www.opengis.net/def/nil/OGC/0/unknown'),
|
||||
(9, 'http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_CategoryObservation');
|
||||
|
||||
INSERT INTO gba.phenomenon(
|
||||
phenomenon_id, identifier, sta_identifier, name) VALUES
|
||||
(1, 'RainfallAccumulated', 'RainfallAccumulated', 'RainfallAccumulated'),
|
||||
(2, 'WindDirection', 'WindDirection', 'WindDirection'),
|
||||
(3, 'Humidity', 'Humidity', 'Humidity'),
|
||||
(4, 'Windchill', 'Windchill', 'Windchill'),
|
||||
(5, 'AirTemperature', 'AirTemperature', 'AirTemperature'),
|
||||
(6, 'Dewpoint', 'Dewpoint', 'Dewpoint'),
|
||||
(7, 'Luminance', 'Luminance', 'Luminance'),
|
||||
(8, 'AthmosphericPressure', 'AthmosphericPressure', 'AthmosphericPressure'),
|
||||
(9, 'WindSpeed', 'WindSpeed', 'WindSpeed'),
|
||||
(10, 'Sunshine', 'Sunshine', 'Sunshine'),
|
||||
(11, 'HailAccumulated', 'HailAccumulated', 'HailAccumulated'),
|
||||
(12, 'WindSpeedMinimum', 'WindSpeedMinimum', 'WindSpeedMinimum'),
|
||||
(13, 'WindSpeedAverage', 'WindSpeedAverage', 'WindSpeedAverage'),
|
||||
(14, 'HailIntensity', 'HailIntensity', 'HailIntensity'),
|
||||
(15, 'RainfallPeakIntensity', 'RainfallPeakIntensity', 'RainfallPeakIntensity'),
|
||||
(16, 'WindSpeedMaximum', 'WindSpeedMaximum', 'WindSpeedMaximum'),
|
||||
(17, 'WindDirectionMaximum', 'WindDirectionMaximum', 'WindDirectionMaximum'),
|
||||
(18, 'RainfallIntensity', 'RainfallIntensity', 'RainfallIntensity'),
|
||||
(19, 'WindDirectionMinimum', 'WindDirectionMinimum', 'WindDirectionMinimum'),
|
||||
(20, 'HailDuration', 'HailDuration', 'HailDuration'),
|
||||
(21, 'RainfallDuration', 'RainfallDuration', 'RainfallDuration'),
|
||||
(22, 'InSystemTemperature', 'InSystemTemperature', 'InSystemTemperature'),
|
||||
(23, 'HailPeakIntensity', 'HailPeakIntensity', 'HailPeakIntensity'),
|
||||
(24, 'WindDirectionAverage', 'WindDirectionAverage', 'WindDirectionAverage'),
|
||||
(25, 'WindMaxGust', 'WindMaxGust', 'WindMaxGust'),
|
||||
(26, 'Visibility', 'Visibility', 'Visibility'),
|
||||
(27, 'WindSpeedKmh', 'WindSpeedKmh', 'WindSpeedKmh'),
|
||||
(28, 'WindSpeedBft', 'WindSpeedBft', 'WindSpeedBft'),
|
||||
(29, 'WindSpeedMperSec', 'WindSpeedMperSec', 'WindSpeedMperSec'),
|
||||
(30, 'ShortwaveRadiation', 'ShortwaveRadiation', 'ShortwaveRadiation'),
|
||||
(31, 'WeatherCode', 'WeatherCode', 'WeatherCode'),
|
||||
(32, 'WeatherCodeText', 'WeatherCodeText', 'WeatherCodeText'),
|
||||
(33, 'WindDirectionText', 'WindDirectionText', 'WindDirectionText'),
|
||||
(34, 'Roll', 'Roll', 'Roll'),
|
||||
(35, 'Slope', 'Slope', 'Slope'),
|
||||
(36, 'HumanVisualPerception', 'HumanVisualPerception', 'HumanVisualPerception'),
|
||||
(37, 'Elevation', 'Elevation', 'Elevation');
|
||||
|
||||
|
||||
INSERT INTO gba.unit(
|
||||
unit_id, symbol) VALUES
|
||||
(1, 'klux'),
|
||||
(2, 'hPa'),
|
||||
(3, 'degC'),
|
||||
(4, '%'),
|
||||
(5, 'km_h'),
|
||||
(6, 'min'),
|
||||
(7, 'l_m^2'),
|
||||
(8, 'deg'),
|
||||
(9, 'm_s'),
|
||||
(10, 'mm_h'),
|
||||
(11, 's'),
|
||||
(12, 'hits_cm-2_h'),
|
||||
(13, 'hits_cm-2'),
|
||||
(14, 'mm'),
|
||||
(15, 'W_m^2'),
|
||||
(16, 'bft'),
|
||||
(17, 'm');
|
||||
|
||||
offering observation_type 9 10, 11
|
||||
PointObservation, OM_Measurement, PointTimeSeriesObservation
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue