-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix_tables_bck.sql
573 lines (450 loc) · 46.1 KB
/
fix_tables_bck.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.1.11
-- Dumped by pg_dump version 9.3.1
-- Started on 2014-02-03 11:07:09 CET
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = vodata_cubes, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 235 (class 1259 OID 131721)
-- Name: Format; Type: TABLE; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
CREATE TABLE "Format" (
"ID" integer NOT NULL,
"Label" character varying(255) DEFAULT NULL::character varying
);
ALTER TABLE vodata_cubes."Format" OWNER TO vodata_cubes;
--
-- TOC entry 234 (class 1259 OID 131719)
-- Name: Format_ID_seq; Type: SEQUENCE; Schema: vodata_cubes; Owner: vodata_cubes
--
CREATE SEQUENCE "Format_ID_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE vodata_cubes."Format_ID_seq" OWNER TO vodata_cubes;
--
-- TOC entry 2237 (class 0 OID 0)
-- Dependencies: 234
-- Name: Format_ID_seq; Type: SEQUENCE OWNED BY; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER SEQUENCE "Format_ID_seq" OWNED BY "Format"."ID";
--
-- TOC entry 237 (class 1259 OID 131730)
-- Name: Instrument; Type: TABLE; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
CREATE TABLE "Instrument" (
"ID" integer NOT NULL,
"Label" character varying(255) DEFAULT NULL::character varying
);
ALTER TABLE vodata_cubes."Instrument" OWNER TO vodata_cubes;
--
-- TOC entry 236 (class 1259 OID 131728)
-- Name: Instrument_ID_seq; Type: SEQUENCE; Schema: vodata_cubes; Owner: vodata_cubes
--
CREATE SEQUENCE "Instrument_ID_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE vodata_cubes."Instrument_ID_seq" OWNER TO vodata_cubes;
--
-- TOC entry 2238 (class 0 OID 0)
-- Dependencies: 236
-- Name: Instrument_ID_seq; Type: SEQUENCE OWNED BY; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER SEQUENCE "Instrument_ID_seq" OWNED BY "Instrument"."ID";
--
-- TOC entry 239 (class 1259 OID 131739)
-- Name: Line; Type: TABLE; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
CREATE TABLE "Line" (
"ID" integer NOT NULL,
"Label" character varying(255) DEFAULT NULL::character varying,
"RestFrequency" double precision
);
ALTER TABLE vodata_cubes."Line" OWNER TO vodata_cubes;
--
-- TOC entry 238 (class 1259 OID 131737)
-- Name: Line_ID_seq; Type: SEQUENCE; Schema: vodata_cubes; Owner: vodata_cubes
--
CREATE SEQUENCE "Line_ID_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE vodata_cubes."Line_ID_seq" OWNER TO vodata_cubes;
--
-- TOC entry 2239 (class 0 OID 0)
-- Dependencies: 238
-- Name: Line_ID_seq; Type: SEQUENCE OWNED BY; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER SEQUENCE "Line_ID_seq" OWNED BY "Line"."ID";
--
-- TOC entry 241 (class 1259 OID 131748)
-- Name: Polarization; Type: TABLE; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
CREATE TABLE "Polarization" (
"ID" integer NOT NULL,
"Label" character varying(255) DEFAULT NULL::character varying
);
ALTER TABLE vodata_cubes."Polarization" OWNER TO vodata_cubes;
--
-- TOC entry 240 (class 1259 OID 131746)
-- Name: Polarization_ID_seq; Type: SEQUENCE; Schema: vodata_cubes; Owner: vodata_cubes
--
CREATE SEQUENCE "Polarization_ID_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE vodata_cubes."Polarization_ID_seq" OWNER TO vodata_cubes;
--
-- TOC entry 2240 (class 0 OID 0)
-- Dependencies: 240
-- Name: Polarization_ID_seq; Type: SEQUENCE OWNED BY; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER SEQUENCE "Polarization_ID_seq" OWNED BY "Polarization"."ID";
--
-- TOC entry 251 (class 1259 OID 131796)
-- Name: ServiceResponse; Type: TABLE; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
CREATE TABLE "ServiceResponse" (
"ID" integer NOT NULL,
"Order" integer,
"LabelModel" character varying(255) DEFAULT NULL::character varying,
"LabelColumn" character varying(255) DEFAULT NULL::character varying,
"Description" character varying(255) DEFAULT NULL::character varying,
"UType" character varying(255) DEFAULT NULL::character varying,
"UCD" character varying(255) DEFAULT NULL::character varying,
"DataType" character varying(255) DEFAULT NULL::character varying,
"ArraySize" character varying(255) DEFAULT NULL::character varying,
"Units" character varying(255) DEFAULT NULL::character varying,
"TableName" character varying(255) DEFAULT NULL::character varying,
"FieldName" character varying(255) DEFAULT NULL::character varying,
"queryData" integer,
"getMetadata" integer,
"TAP" integer
);
ALTER TABLE vodata_cubes."ServiceResponse" OWNER TO vodata_cubes;
--
-- TOC entry 250 (class 1259 OID 131794)
-- Name: ServiceResponse_ID_seq; Type: SEQUENCE; Schema: vodata_cubes; Owner: vodata_cubes
--
CREATE SEQUENCE "ServiceResponse_ID_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE vodata_cubes."ServiceResponse_ID_seq" OWNER TO vodata_cubes;
--
-- TOC entry 2241 (class 0 OID 0)
-- Dependencies: 250
-- Name: ServiceResponse_ID_seq; Type: SEQUENCE OWNED BY; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER SEQUENCE "ServiceResponse_ID_seq" OWNED BY "ServiceResponse"."ID";
--
-- TOC entry 2093 (class 2604 OID 131724)
-- Name: ID; Type: DEFAULT; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER TABLE ONLY "Format" ALTER COLUMN "ID" SET DEFAULT nextval('"Format_ID_seq"'::regclass);
--
-- TOC entry 2095 (class 2604 OID 131733)
-- Name: ID; Type: DEFAULT; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER TABLE ONLY "Instrument" ALTER COLUMN "ID" SET DEFAULT nextval('"Instrument_ID_seq"'::regclass);
--
-- TOC entry 2097 (class 2604 OID 131742)
-- Name: ID; Type: DEFAULT; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER TABLE ONLY "Line" ALTER COLUMN "ID" SET DEFAULT nextval('"Line_ID_seq"'::regclass);
--
-- TOC entry 2099 (class 2604 OID 131751)
-- Name: ID; Type: DEFAULT; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER TABLE ONLY "Polarization" ALTER COLUMN "ID" SET DEFAULT nextval('"Polarization_ID_seq"'::regclass);
--
-- TOC entry 2101 (class 2604 OID 131799)
-- Name: ID; Type: DEFAULT; Schema: vodata_cubes; Owner: vodata_cubes
--
ALTER TABLE ONLY "ServiceResponse" ALTER COLUMN "ID" SET DEFAULT nextval('"ServiceResponse_ID_seq"'::regclass);
--
-- TOC entry 2224 (class 0 OID 131721)
-- Dependencies: 235
-- Data for Name: Format; Type: TABLE DATA; Schema: vodata_cubes; Owner: vodata_cubes
--
INSERT INTO "Format" VALUES (2, 'GDS');
INSERT INTO "Format" VALUES (1, 'FITS');
--
-- TOC entry 2242 (class 0 OID 0)
-- Dependencies: 234
-- Name: Format_ID_seq; Type: SEQUENCE SET; Schema: vodata_cubes; Owner: vodata_cubes
--
SELECT pg_catalog.setval('"Format_ID_seq"', 2, true);
--
-- TOC entry 2226 (class 0 OID 131730)
-- Dependencies: 237
-- Data for Name: Instrument; Type: TABLE DATA; Schema: vodata_cubes; Owner: vodata_cubes
--
INSERT INTO "Instrument" VALUES (1, 'WSRT');
--
-- TOC entry 2243 (class 0 OID 0)
-- Dependencies: 236
-- Name: Instrument_ID_seq; Type: SEQUENCE SET; Schema: vodata_cubes; Owner: vodata_cubes
--
SELECT pg_catalog.setval('"Instrument_ID_seq"', 1, true);
--
-- TOC entry 2228 (class 0 OID 131739)
-- Dependencies: 239
-- Data for Name: Line; Type: TABLE DATA; Schema: vodata_cubes; Owner: vodata_cubes
--
INSERT INTO "Line" VALUES (1, NULL, 127);
--
-- TOC entry 2244 (class 0 OID 0)
-- Dependencies: 238
-- Name: Line_ID_seq; Type: SEQUENCE SET; Schema: vodata_cubes; Owner: vodata_cubes
--
SELECT pg_catalog.setval('"Line_ID_seq"', 1, true);
--
-- TOC entry 2230 (class 0 OID 131748)
-- Dependencies: 241
-- Data for Name: Polarization; Type: TABLE DATA; Schema: vodata_cubes; Owner: vodata_cubes
--
INSERT INTO "Polarization" VALUES (1, 'L');
--
-- TOC entry 2245 (class 0 OID 0)
-- Dependencies: 240
-- Name: Polarization_ID_seq; Type: SEQUENCE SET; Schema: vodata_cubes; Owner: vodata_cubes
--
SELECT pg_catalog.setval('"Polarization_ID_seq"', 1, true);
--
-- TOC entry 2232 (class 0 OID 131796)
-- Dependencies: 251
-- Data for Name: ServiceResponse; Type: TABLE DATA; Schema: vodata_cubes; Owner: vodata_cubes
--
INSERT INTO "ServiceResponse" VALUES (1, NULL, 'CoordSysID', NULL, 'ID string for coordinate system', 'CoordSys.ID', NULL, 'char', '*', NULL, 'CoordSys', 'CoordSysID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (2, NULL, 'SpaceFrameID', NULL, 'ID string for spatial frame', 'CoordSys.SpaceFrame.ID', 'meta.id', 'char', '*', NULL, 'CoordSysSpatial', 'Identifier', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (3, NULL, 'SpaceFrameName', NULL, 'Spatial coordinate frame name', 'CoordSys.SpaceFrame.Name', 'pos.frame', 'char', '*', NULL, 'CoordSysSpatial', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (4, NULL, 'SpaceFrameUCD', NULL, 'Space frame UCD', 'CoordSys.SpaceFrame.UCD', 'meta.ucd', 'char', '*', NULL, 'CoordSysSpatial', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (5, NULL, 'SpaceFrameRefPos', NULL, 'Origin of SpaceFrame', 'CoordSys.SpaceFrame.RefPos', '', 'char', '*', NULL, 'CoordSysSpatial', 'RefPos', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (6, NULL, 'SpaceFrameEquinox', NULL, 'Equinox', 'CoordSys.SpaceFrame.Equinox', 'time.equinox;pos.frame', 'double', NULL, 'y', 'CoordSysSpatial', 'Equinox', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (7, NULL, 'TimeFrameID', NULL, 'ID string for time frame', 'CoordSys.TimeFrame.ID', 'meta.id', 'char', '*', NULL, 'CoordSysTime', 'Identfier', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (8, NULL, 'TimeFrameName', NULL, 'Timescale', 'CoordSys.TimeFrame.Name', 'time.scale', 'char', '*', NULL, 'CoordSysTime', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (9, NULL, 'TimeFrameUCD', NULL, 'Time frame UCD', 'CoordSys.TimeFrame.UCD', 'meta.ucd', 'char', '*', NULL, 'CoordSysTime', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (10, NULL, 'TimeFrameRefPos', NULL, 'Location for times of photon arrival', 'CoordSys.TimeFrame.RefPos', 'time.scale', 'char', '*', NULL, 'CoordSysTime', 'RefPos', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (11, NULL, 'TimeFrameZero', NULL, 'Zero point of timescale in MJD', 'CoordSys.TimeFrame.Zero', 'arith.zp;time', 'double', NULL, 'd', 'CoordSysTime', 'Zero', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (12, NULL, 'SpectralFrameID', NULL, 'ID string for spectral frame', 'CoordSys.SpectralFrame.ID', 'meta.id', 'char', '*', NULL, 'CoordSysSpectral', 'Identifier', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (13, NULL, 'SpectralFrameName', NULL, 'Spectral frame name', 'CoordSys.SpectralFrame.Name', NULL, 'char', '*', NULL, 'CoordSysSpectral', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (14, NULL, 'SpectralFrameUCD', NULL, 'Spectral frame UCD', 'CoordSys.SpectralFrame.UCD', 'meta.ucd', 'char', '*', NULL, 'CoordSysSpectral', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (15, NULL, 'SpectralFrameRefPos', NULL, 'Spectral frame origin', 'CoordSys.SpectralFrame.RefPos', 'spect.frame', 'char', '*', NULL, 'CoordSysSpectral', 'RefPos', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (16, NULL, 'SpectralFrameRedshift', NULL, 'Redshift value used if restframe corrected', 'CoordSys.SpectralFrame.Redshift', NULL, 'double', NULL, NULL, 'CoordSysSpectral', 'Redshift', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (17, NULL, 'RedshiftFrameID', NULL, 'ID string for redshift frame', 'CoordSys.RedshiftFrame.ID', 'meta.id', 'char', '*', NULL, 'CoordSysRedshift', 'Identifier', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (18, NULL, 'RedshiftFrameName', NULL, 'Redshift frame name', 'CoordSys.RedshiftFrame.Name', NULL, 'char', '*', NULL, 'CoordSysRedshift', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (19, NULL, 'RedshiftFrameUCD', NULL, 'Redshift frame UCD', 'CoordSys.RedshiftFrame.UCD', 'meta.ucd', 'char', '*', NULL, 'CoordSysRedshift', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (20, NULL, 'RedshiftFrameRefPos', NULL, 'Redshift frame origin', 'CoordSys.RedshiftFrame.RefPos', NULL, 'char', '*', NULL, 'CoordSysRedshift', 'RefPos', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (21, NULL, 'DopplerDefinition', NULL, 'Type of redshift', 'CoordSys.RedshiftFrame.DopplerDefinition', NULL, 'double', NULL, NULL, 'CoordSysRedshift', 'Definition', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (22, NULL, 'FluxFrameID', NULL, 'ID string for flux frame', 'CoordSys.FluxFrame.ID', 'meta.id', 'char', '*', NULL, 'CoordSysFlux', 'Identifier', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (23, NULL, 'FluxFrameName', NULL, 'Name of photometric band', 'CoordSys.FluxFrame.Name', NULL, 'char', '*', NULL, 'CoordSysFlux', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (24, NULL, 'FluxFrameUCD', NULL, 'UCD for photometric calibration', 'CoordSys.FluxFrame.UCD', 'meta.ucd', 'char', '*', NULL, 'CoordSysFlux', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (25, NULL, 'FluxFrameRefID', NULL, 'URI for photometric calibration', 'CoordSys.FluxFrame.refID', 'meta.ref.ivorn', 'char', '*', NULL, 'CoordSysFlux', 'RefID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (26, NULL, 'AcReference', 'access_url', 'URL used to access dataset', 'Access.Reference', 'meta.ref.url', 'char', '*', NULL, 'DataSet', 'AcReference', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (27, NULL, 'Format', 'access_format', 'Content format or MIME type of dataset', 'Access.Format', 'meta.file', 'char', '*', NULL, 'Format', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (28, NULL, 'Size', 'access_estsize', 'Estimated dataset size', 'Access.Size', NULL, 'long', NULL, 'kilobytes', 'DataSet', 'Size', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (29, NULL, 'DataModel', NULL, 'Data model name and version', 'Dataset.DataModel.Name', NULL, 'char', '*', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (30, NULL, 'DataModelPrefix', NULL, 'Data model prefix', 'Dataset.DataModel.Prefix', NULL, 'char', '*', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (31, NULL, 'DataModelURL', NULL, 'Reference URL for data model', 'Dataset.DataModel.URL', 'meta.ref.url', 'char', '*', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (32, NULL, 'DatasetType', 'dataproduct_type', 'Data product (file content) primary type', 'Obs.dataProductType', NULL, 'char', '*', NULL, 'DataSetType', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (33, NULL, 'DatasetSubtype', 'dataproduct_subtype', 'Data product specific type', 'Obs.dataProductSubtype', NULL, 'char', '*', NULL, 'DataSetSubType', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (34, NULL, 'DatasetCalibLevel', 'calib_level', 'Calibration level', 'Dataset.CalibLevel ', 'meta.code.qual', 'long', NULL, NULL, 'CalibLevel', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (35, NULL, 'DataLength', 'dataproduct_lenght', 'Number of pixels', 'Dataset.Length', 'meta.number', 'long', NULL, NULL, 'DataSet', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (36, NULL, 'Nsubarrays', 'im_nsubarrays', 'Number of image subarrays', 'Dataset.Image.Nsubarrays', 'meta.number', 'long', NULL, NULL, 'DataSetImage', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (37, NULL, 'Naxes', 'im_naxes', 'Number of image axes', 'Dataset.Image.Naxes', 'meta.number', 'long', NULL, NULL, 'DataSetImage', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (38, NULL, 'Naxis', 'im_naxis', 'Length of each axis of each subarray', 'Dataset.Image.Naxis', 'meta.number', 'long', '*', NULL, 'DataSetImage', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (39, NULL, 'WCSAxes', 'im_wcsaxes', 'WCS axis coordinate types', 'Dataset.Image.WCSAxes', NULL, 'char', '*', NULL, 'DataSetImage', NULL, NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (40, NULL, 'Title', 'obs_title', 'Brief description of dataset in free format', 'DataID.Title', 'meta.title;meta.dataset', 'char', '*', NULL, 'DataID', 'Title', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (41, NULL, 'Creator', 'obs_creator_name', 'Name of the creator of the data', 'DataID.Creator', 'meta.curation', 'char', '*', NULL, 'Creator', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (42, NULL, 'Collection', 'obs_collection', 'Name of the data collection', 'DataID.Collection', 'meta.id', 'char', '*', NULL, 'Collection', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (43, NULL, 'ObservationID', 'obs_id', 'Internal ID given by the service', 'DataID.ObservationID', 'meta.id', 'char', '*', NULL, 'DataID', 'ObservationID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (44, NULL, 'DatasetID', NULL, 'IVOA Dataset ID', 'DataID.DatasetID', 'meta.id;meta.dataset', 'char', '*', NULL, 'DataID', 'DatasetID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (45, NULL, 'CreatorDID', 'obs_creator_did', 'Creator''s ID for the dataset', 'DataID.CreatorDID', 'meta.id', 'char', '*', NULL, 'DataID', 'CreatorDID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (46, NULL, 'CreatorDate', 'obs_creation_date', 'Data processing/creation date', 'DataID.Date', 'time.epoch;meta.dataset', 'char', '*', NULL, 'DataID', 'CreatorDate', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (47, NULL, 'CreatorVersion', NULL, 'Version of dataset', 'DataID.Version', 'meta.version;meta.dataset', 'char', '*', NULL, 'DataID', 'CreatorVersion', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (48, NULL, 'CreationType', NULL, 'Dataset creation type', 'DataID.CreationType', NULL, 'char', '*', NULL, 'Creation', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (49, NULL, 'CreatorLogo', NULL, 'URL for creator logo', 'DataID.Logo', 'meta.ref.url', 'char', '*', NULL, 'Creator', 'Logo', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (50, NULL, 'Instrument', 'instrument_name', 'Instrument name', 'Provenance.ObsConfig.Instrument.Name', 'meta.id;instr', 'char', '*', NULL, 'Instrument', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (51, NULL, 'Bandpass', NULL, 'Spectral bandpass name', 'Provenance.ObsConfig.Bandpass', 'instr.bandpass', 'char', '*', NULL, 'Bandpass', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (52, NULL, 'DataSource', NULL, 'Original source of the data', 'Provenance.ObsConfig.DataSource', NULL, 'char', '*', NULL, 'DataSource', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (53, NULL, 'Facility', 'facility_name', 'Facility name', 'Provenance.ObsConfig.Facility.Name', 'meta.id:instr.tel', 'char', '*', NULL, 'Facility', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (54, NULL, 'ProposalID', 'proposal_id', 'Proposal if any dataset is associated with', 'Provenance.Proposal.Identifier', 'obs.proposal', 'char', '*', NULL, 'Proposal', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (55, NULL, 'BeamMajorAxis', 'beam_maj', 'Major axis (FWHM) of beam (arcsec)', 'Provenance.Postprocessing.Bmaj', 'instr.beam', 'double', NULL, NULL, 'Provenance', 'BeamMajorAxis', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (56, NULL, 'BeamMinorAxis', 'beam_min', 'Minor axis (FWHM) of beam (arcsec)', 'Provenance.Postprocessing.Bmin', 'instr.beam', 'double', NULL, NULL, 'Provenance', 'BeamMinorAxis', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (57, NULL, 'BeamPositionAngle', 'beam_pa', 'Position angle of major axis of beam (N->E)', 'Provenance.Postprocessing.Bpa', 'instr.beam;instr.param', 'double', NULL, NULL, 'Provenance', 'BeamPositionAngle', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (58, NULL, 'Tapering', 'tapering', 'Taper type in cleaning process', 'Provenance.Postprocessing.Taper', 'instr.param', 'char', '*', NULL, 'Tapering', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (59, NULL, 'OverSampling', 'oversampling', 'Number of pixels considered as spatial resolution for CLEAN', 'Provenance.Postprocessing.Oversampling', 'instr.param', 'double', NULL, NULL, 'Provenance', 'Oversampling', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (60, NULL, 'Publisher', NULL, 'Dataset publisher', 'Curation.Publisher', 'meta.curation', 'char', '*', NULL, 'Publisher', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (61, NULL, 'PublisherID', 'publisher_id', 'URI for VO Publisher', 'Curation.PublisherID', 'meta.ref.url;meta.curation', 'char', '*', NULL, 'Publisher', 'PublisherID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (62, NULL, 'PublisherDID', 'obs_publisher_did', 'Publisher''s ID for the dataset ID', 'Curation.PublisherDID', 'meta.ref.url;meta.curation', 'char', '*', NULL, 'Curation', 'PublisherDID', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (63, NULL, 'ReleaseDate', 'obs_release_date', 'Dataset release date', 'Curation.ReleaseDate', 'time.release', 'char', '*', NULL, 'Curation', 'PublisherDate', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (64, NULL, 'PublisherVersion', NULL, 'Publisher''s version of the dataset', 'Curation.Version', 'meta.version;meta.curation', 'char', '*', NULL, 'Curation', 'PublisherVersion', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (65, NULL, 'Rights', 'data_rights', 'Restrictions on data access', 'Curation.Rights', 'meta.code', 'char', '*', NULL, 'Right', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (66, NULL, 'Reference', 'bib_reference', 'URL or Bibcode for documentation', 'Curation.Reference', 'meta.bib.bibcode', 'char', '*', NULL, 'BibReference', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (67, NULL, 'ContactName', NULL, 'Contact name', 'Curation.Contact.Name', 'meta.bib.author;meta.curation', 'char', '*', NULL, 'Contact', 'ContactName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (68, NULL, 'ContactEmail', NULL, 'Contact email', 'Curation.Contact.Email', 'meta.ref.url;meta.email', 'char', '*', NULL, 'Contact', 'ContactEmail', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (69, NULL, 'SpatialAxisName', NULL, 'Name for spatial axis', 'Char.SpatialAxis.Name', 'meta.id', 'char', '*', NULL, 'CharSpatialAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (70, NULL, 'SpatialAxisUCD', 's_ucd', 'UCD for spatial coord', 'Char.SpatialAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharSpatialAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (71, NULL, 'SpatialAxisUnit', 's_unit', 'Unit for spatial coord', 'Char.SpatialAxis.Unit', 'meta.unit', 'char', '*', NULL, 'CharSpatialAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (72, NULL, 'SpatialAxisLocationRA', 's_ra', 'Spatial Position in RA', 'Char.SpatialAxis.Coverage.Location.Coord.Position2D.Value2.C1', 'pos.eq.ra', 'double', NULL, 'deg', 'CharSpatial', 'RA', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (73, NULL, 'SpatialAxisLocationDEC', 's_dec', 'Spatial Position in Dec', 'Char.SpatialAxis.Coverage.Location.Coord.Position2D.Value2.C2', 'pos.eq.dec', 'double', NULL, 'deg', 'CharSpatial', 'Dec', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (74, NULL, 'SpatialLocation', NULL, 'Spatial Position', 'Char.SpatialAxis.Coverage.Location.Coord', 'pos.eq', 'double', '2', 'deg', 'CharSpatial', 'Location', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (75, NULL, 'SpatialExtent', 's_fov', 'Diameter of field of view', 'Char.SpatialAxis.Coverage.Bounds.Extent.Diameter', 'pos.AngDistance;instr.fov', 'double', NULL, 'deg', 'CharSpatial', 'Extent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (76, NULL, 'SpatialLoLimit', NULL, 'Lower bounds of image spatial coordinates', 'Char.SpatialAxis.Coverage.Bounds.Limits.LoLimit2Vec', 'pos.eq;stat.min', 'double', '2', 'deg', 'CharSpatial', 'LocationLoLimit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (77, NULL, 'SpatialHiLimit', NULL, 'Higher bounds of image spatial coordinates', 'Char.SpatialAxis.Coverage.Bounds.Limits.HiLimit2Vec', 'pos.eq;stat.max', 'double', '2', 'deg', 'CharSpatial', 'LocationHiLimit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (78, NULL, 'SpatialArea', 's_region', 'Aperture region', 'Char.SpatialAxis.Coverage.Support.Area', 'phys.angSize;instr', 'char', '*', NULL, 'CharSpatial', 'Area', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (79, NULL, 'SpatialSupportExtent', NULL, 'Field of view area', 'Char.SpatialAxis.Coverage.Support.Extent', 'pos.AngDistance;instr.fov', 'double', NULL, 'sqdeg', 'CharSpatial', 'SupportExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (80, NULL, 'SpatialSampleExtent', NULL, 'Spatial bin size', 'Char.SpatialAxis.SamplingPrecision.SampleExtent', 'phys.angSize;instr.pixel', 'double', NULL, 'deg', 'CharSpatial', 'SampleExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (81, NULL, 'SpatialFillFactor', NULL, 'Spatial sampling filling factor', 'Char.SpatialAxis.SamplingPrecision.SamplingPrecisionRefval.FillFactor', 'stat.filling;pos', 'double', NULL, NULL, 'CharSpatial', 'FillFactor', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (82, NULL, 'SpatialStatError', 's_stat_error', 'Astrometric statistical error', 'Char.SpatialAxis.Accuracy.StatError.Refval.Value', 'stat.error;pos.eq', 'double', NULL, 'deg', 'CharSpatial', 'StatError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (83, NULL, 'SpatialSysError', NULL, 'Astrometric systematic error', 'Char.SpatialAxis.Accuracy.SysError', 'stat.error.sys;pos.eq', 'double', NULL, 'deg', 'CharSpatial', 'SysError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (84, NULL, 'SpatialCalibration', 's_calib_status', 'Type of spatial coord calibration', 'Char.SpatialAxis.CalibStatus', 'meta.code.qual', 'char', '*', NULL, 'CharSpatial', 'Calibration', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (85, NULL, 'SpatialResolution', 's_resolution', 'Spatial resolution of data', 'Char.SpatialAxis.Resolution.Refval', 'pos.angResolution', 'double', NULL, 'deg', 'CharSpatial', 'Resolution', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (86, NULL, 'SpatialResolutionMin', 's_resolution_min', 'Resolution min value on spatial axis (FHWM of PSF)', 'Char.SpatialAxis.Resolution.Bounds.Limits.Interval.LoLim', 'pos.angResolution;stat.min', 'double', NULL, 'deg', 'CharSpatial', 'ResolutionMin', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (87, NULL, 'SpatialResolutionMax', 's_resolution_max', 'Resolution max value on spatial axis (FHWM of PSF)', 'Char.SpatialAxis.Resolution.Bounds.Limits.Interval.HiLim', 'pos.angResolution;stat.max', 'double', NULL, 'deg', 'CharSpatial', 'ResolutionMax', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (88, NULL, 'SpectralAxisName', NULL, 'Name for spectral axis', 'Char.SpectralAxis.Name', 'meta.id', 'char', '*', NULL, 'CharSpectralAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (89, NULL, 'SpectralAxisUCD', 'em_ucd', 'UCD for spectral coord', 'Char.SpectralAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharSpectralAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (90, NULL, 'SpectralAxisUnit', 'em_unit', 'Unit for spectral coord', 'Char.SpectralAxis.Unit', 'meta.unit', 'char', '*', NULL, 'CharSpectralAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (91, NULL, 'SpectralLocation', NULL, 'Spectral coord value', 'Char.SpectralAxis.Coverage.Location.Coord', 'em.wl;instr.bandpass', 'double', NULL, 'm', 'CharSpectral', 'Location', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (92, NULL, 'SpectralExtent', NULL, 'Width of spectrum', 'Char.SpectralAxis.Coverage.Bounds.Extent', 'em.wl;instr.bandwidth', 'double', NULL, 'm', 'CharSpectral', 'Extent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (93, NULL, 'SpectralStart', 'em_min', 'Start in spectral coordinate', 'Char.SpectralAxis.Coverage.Bounds.Limits.LoLimit', 'em.wl;stat.min', 'double', NULL, 'm', 'CharSpectral', 'Start', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (94, NULL, 'SpectralStop', 'em_max', 'Stop in spectral coordinate', 'Char.SpectralAxis.Coverage.Bounds.Limits.HiLimit', 'em.wl;stat.max', 'double', NULL, 'm', 'CharSpectral', 'Stop', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (95, NULL, 'SpectralSupportExtent', NULL, 'Effective width of spectrum', 'Char.SpectralAxis.Coverage.Support.Extent', 'em.wl;instr.bandwidth', 'double', NULL, 'm', 'CharSpectral', 'SupportExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (96, NULL, 'SpectralSampleExtent', NULL, 'Wavelength bin size', 'Char.SpectralAxis.SamplingPrecision.SampleExtent', 'em.wl;spect.binSize', 'double', NULL, 'm', 'CharSpectral', 'SampleExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (97, NULL, 'SpectralFillFactor', NULL, 'Spectral sampling filling factor', 'Char.SpectralAxis.SamplingPrecision.SamplingPrecisionRefVal.FillFactor', 'stat.filling;em', 'double', NULL, NULL, 'CharSpectral', 'FillFactor', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (98, NULL, 'SpectralBinSize', NULL, 'Spectral coord bin size', 'Char.SpectralAxis.Accuracy.BinSize', 'em.wl;spect.binSize', 'double', NULL, 'm', 'CharSpectral', 'BinSize', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (99, NULL, 'SpectralStatError', 'em_stat_error', 'Spectral coord statistical error', 'Char.SpectralAxis.Accuracy.StatError.Refval.Value', 'stat.error;em', 'double', NULL, 'm', 'CharSpectral', 'StatError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (100, NULL, 'SpectralSysError', NULL, 'Spectral coord systematic error', 'Char.SpectralAxis.Accuracy.SysError', 'stat.error.sys;em', 'double', NULL, 'm', 'CharSpectral', 'SysError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (101, NULL, 'SpectralCalibration', 'em_calib_status', 'Type of spectral coord calibration', 'Char.SpectralAxis.CalibStatus', 'meta.code.qual', 'char', '*', NULL, 'CharSpectral', 'Calibration', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (102, NULL, 'SpectralResolution', 'em_resolution', 'Spectral resolution FWHM', 'Char.SpectralAxis.Resolution.Refval.Value', 'spect.resolution;em.wl', 'double', NULL, 'm', 'CharSpectral', 'Resolution', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (103, NULL, 'SpectralResPower', 'em_respower', 'Spectral resolving power', 'Char.SpectralAxis.Resolution.ResolPower.Refval', 'spect.resolution', 'double', NULL, NULL, 'CharSpectral', 'ResPower', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (104, NULL, 'SpectralResPowerMin', 'em_respower_min', 'Resolving power min value on spectral axis', 'Char.SpectralAxis.Resolution.ResolPower.LoLim', 'spect.resolution;stat.min', 'double', NULL, NULL, 'CharSpectral', 'ResPowerMin', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (105, NULL, 'SpectralResPowerMax', 'em_respower_max', 'Resolving power max value on spectral axis', 'Char.SpectralAxis.Resolution.ResolPower.HiLim', 'spect.resolution;stat.max', 'double', NULL, NULL, 'CharSpectral', 'ResPowerMax', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (106, NULL, 'TimeAxisName', NULL, 'Name for time axis', 'Char.TimeAxis.Name', 'meta.id', 'char', '*', NULL, 'CharTimeAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (107, NULL, 'TimeAxisUCD', NULL, 'UCD for time', 'Char.TimeAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharTimeAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (108, NULL, 'TimeAxisUnit', NULL, 'Unit for time', 'Char.TimeAxis.Unit', 'meta.unit', 'char', '*', NULL, 'CharTimeAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (109, NULL, 'TimeLocation', NULL, 'Midpoint of exposure on MJD scale', 'Char.TimeAxis.Coverage.Location.Coord', 'time.epoch;obs', 'double', NULL, 'd', 'CharTime', 'Location', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (110, NULL, 'TimeExtent', NULL, 'Total exposure time', 'Char.TimeAxis.Coverage.Bounds.Extent', 'time.duration;obs.exposure', 'double', NULL, 's', 'CharTime', 'Extent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (111, NULL, 'TimeStart', 't_min', 'Start time', 'Char.TimeAxis.Coverage.Bounds.Limits.Interval.StartTime', 'time.start;obs.exposure', 'double', NULL, 'd', 'CharTime', 'Start', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (112, NULL, 'TimeStop', 't_max', 'Stop time', 'Char.TimeAxis.Coverage.Bounds.Limits.Interval.StopTime', 'time.stop;obs.exposure', 'double', NULL, 'd', 'CharTime', 'Stop', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (113, NULL, 'TimeSupportExtent', 't_exptime', 'Effective exposure time', 'Char.TimeAxis.Coverage.Support.Extent', 'time.duration;obs.exposure', 'double', NULL, 's', 'CharTime', 'SupportExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (114, NULL, 'TimeSampleExtent', NULL, 'Time bin size', 'Char.TimeAxis.SamplingPrecision.SampleExtent', 'time.interval', 'double', NULL, 's', 'CharTime', 'SampleExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (115, NULL, 'TimeFillFactor', NULL, 'Time sampling filling factor', 'Char.TimeAxis.SamplingPrecision.SamplingPrecisionRefVal.FillFactor', 'stat.filling;time', 'double', NULL, NULL, 'CharTime', 'FillFactor', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (116, NULL, 'TimeBinSize', NULL, 'Time bin size', 'Char.TimeAxis.Accuracy.BinSize', 'time.interval', 'double', NULL, 's', 'CharTime', 'BinSize', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (117, NULL, 'TimeStatError', 't_star_error', 'Time coord statistical error', 'Char.TimeAxis.Accuracy.StatError.Refval.Value', 'stat.error;time', 'double', NULL, 's', 'CharTime', 'StatError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (118, NULL, 'TimeSysError', NULL, 'Time coord systematic error', 'Char.TimeAxis.Accuracy.SysError', 'stat.error.sys;time', 'double', NULL, 's', 'CharTime', 'SysError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (119, NULL, 'TimeCalibration', 't_calib_status', 'Type of coord calibration', 'Char.TimeAxis.CalibStatus', 'meta.code.qual', 'char', '*', NULL, 'CharTime', 'Calibration', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (120, NULL, 'TimeResolution', 't_resolution', 'Time resolution FWHM', 'Char.TimeAxis.Resolution.Refval', 'time.resolution', 'double', NULL, 's', 'CharTime', 'Resolution', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (121, NULL, 'FluxAxisName', NULL, 'Name for flux axis', 'Char.ObservableAxis.Name', 'meta.id', 'char', '*', NULL, 'CharFluxAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (122, NULL, 'FluxAxisUCD', 'o_ucd', 'UCD for flux', 'Char.ObservableAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharFluxAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (123, NULL, 'FluxAxisUnit', 'o_unit', 'Unit for flux', 'Char.ObservableAxis.Unit', 'meta.unit', 'char', '*', NULL, 'CharFluxAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (124, NULL, 'FluxAverage', NULL, 'Flux average', 'Char.ObservableAxis.Location.Coord', 'phot.flux;stat.mean', 'double', NULL, 'Jy', 'CharFlux', 'Average', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (125, NULL, 'FluxMin', NULL, 'Flux min value', 'Char.ObservableAxis.Coverage.Bounds.Limits.LoLimit', 'phot.flux;stat.min', 'double', NULL, 'Jy', 'CharFlux', 'Min', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (126, NULL, 'FluxMax', NULL, 'Flux max value', 'Char.ObservableAxis.Coverage.Bounds.Limits.HiLimit', 'phot.flux;stat.max', 'double', NULL, 'Jy', 'CharFlux', 'Max', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (127, NULL, 'FluxSupportExtent', NULL, 'Flux dynamic range', 'Char.ObservableAxis.Coverage.Support.Extent', 'phot.flux', 'double', NULL, 'Jy', 'CharFlux', 'SupportExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (128, NULL, 'FluxStatError', 'o_stat_error', 'Flux statistical error', 'Char.ObservableAxis.Accuracy.Refval.Value', 'stat.error;phot.flux.density;em', 'double', NULL, 'Jy', 'CharFlux', 'StatError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (129, NULL, 'FluxSysError', NULL, 'Flux systematic error', 'Char.ObservableAxis.Accuracy.SysError', 'stat.error.sys;phot.flux.density;em', 'double', NULL, 'Jy', 'CharFlux', 'SysError', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (130, NULL, 'FluxCalibration', 'o_calib_status', 'Type of flux calibration', 'Char.ObservableAxis.CalibStatus', 'meta.code.qual', 'char', '*', NULL, 'CharFlux', 'Calibration', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (131, NULL, 'PolAxisName', 'pol_name', 'Name for polarization axis', 'Char.PolarizationAxis.Name', 'meta.id', 'char', '*', NULL, 'CharPolarizationAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (132, NULL, 'PolAxisUCD', 'pol_ucd', 'UCD for polarization type', 'Char.PolarizationAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharPolarizationAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (133, NULL, 'PolAxisEnum', 'pol_states', 'List of polarization states present or NULL if not applicable', 'Char.PolarizationAxis.StateList', 'meta.code;phys.polarization', 'char', '*', NULL, 'Polarization', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (134, NULL, 'VelocityAxisName', NULL, 'Name for velocity axis', 'Char.VelocityAxis.Name', 'meta.id', 'char', '*', NULL, 'CharVelocityAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (135, NULL, 'VelocityAxisUCD', NULL, 'UCD for velocity', 'Char.VelocityAxis.UCD', 'meta.ucd', 'char', '*', NULL, 'CharVelocityAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (136, NULL, 'VelocityAxisUnit', NULL, 'Unit for velocity', 'Char.VelocityAxis.Unit', 'meta.unit', 'char', '*', NULL, 'CharVelocityAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (137, NULL, 'VelocityAxisLocation', NULL, 'Central velocity in datacube', 'Char.VelocityAxis.Location.Coord', 'phys.veloc.rotat', 'double', NULL, 'km/s', 'CharVelocity', 'Location', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (138, NULL, 'VelocityAxisSupportExtent', NULL, 'Velocity axis lenght', 'Char.VelocityAxis.Coverage.Support.Extent\rChar.VelocityAxis.Coverage.Sample.Extent', NULL, 'double', NULL, 'km/s', 'CharVelocity', 'SupportExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (139, NULL, 'VelocityAxisSampleExtent', NULL, 'Velocity line lenght', 'Char.VelocityAxis.Coverage.Sample.Extent', NULL, 'double', NULL, 'km/s', 'CharVelocity', 'SampleExtent', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (140, NULL, 'VelocityStart', NULL, 'Start value for measured velocity in line', 'Char.VelocityAxis.Coverage.Sample.Extent.Limits.LoLimit', 'phys.veloc.rotat', 'double', NULL, 'km/s', 'CharVelocity', 'Start', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (141, NULL, 'VelocityStop', NULL, 'Last value for measured velocity in line', 'Char.VelocityAxis.Coverage.Sample.Extent.Limits.HiLimit', 'phys.veloc.rotat', 'double', NULL, 'km/s', 'CharVelocity', 'Stop', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (142, NULL, 'VelocityResolution', NULL, 'Resolution in velocity axis', 'Char.VelocityAxis.Resolution.Refval', 'phys.veloc.rotat;spect.resolution', 'double', NULL, 'km/s', 'CharVelocity', 'Resolution', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (143, NULL, 'FluxLineAxisName', NULL, 'Name for Flux Line axis', 'Char.FluxLine.Name', 'meta.id', 'char', '*', NULL, 'CharFluxLineAxis', 'AxisName', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (144, NULL, 'FluxLineAxisUCD', NULL, 'UCD for Flux Line', 'Char.FluxLine.UCD', 'meta.ucd', 'char', '*', NULL, 'CharFluxLineAxis', 'UCD', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (145, NULL, 'FluxLineAxisUnit', NULL, 'Unit for Flux Line', 'Char.FluxLine.Unit', 'meta.unit', 'char', '*', NULL, 'CharFluxLineAxis', 'Unit', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (146, NULL, 'FluxLineAxisMax', NULL, 'Max value for flux measured for the line', 'Char.FluxLine.Coverage.Bounds.Limits.HiLimit', 'phot.flux', 'double', NULL, 'K', 'CharFluxLine', 'Intensity', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (147, NULL, 'LineName', NULL, 'Name of spectral line', 'Char.Line.Name', 'meta.id;spect.line', 'char', '*', NULL, 'Line', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (148, NULL, 'LineRestFrequency', NULL, 'Line rest frequency (m)', 'Char.Line.RestFrequency', 'em.freq;spect.line', 'double', NULL, 'm', 'Line', 'RestFrequency', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (149, NULL, 'TargetName', 'target_name', 'Target name', 'Target.Name', 'meta.id;src', 'char', '*', NULL, 'Target', 'Name', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (150, NULL, 'TargetDescription', NULL, 'Target description', 'Target.Description', 'meta.note;src', 'char', '*', NULL, 'Target', 'Description', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (151, NULL, 'TargetClass', 'target_class', 'Object class of observed target', 'Target.Class', 'src.class', 'char', '*', NULL, 'TargetClass', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (152, NULL, 'SpectralClass', NULL, 'Object spectral class', 'Target.SpectralClass', 'src.spType', 'char', '*', NULL, 'TargetSpectralClass', 'Label', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (153, NULL, 'TargetRA', NULL, 'Target RA', 'Target.Pos.Value2.C1', 'pos.eq.ra', 'double', NULL, 'deg', 'Target', 'RA', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (154, NULL, 'TargetDEC', NULL, 'Target Dec', 'Target.Pos.Value2.C2', 'pos.eq.dec', 'double', NULL, 'deg', 'Target', 'Dec', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (155, NULL, 'TargetPos', 'target_pos', 'Target Location (RA and Dec)', 'Target.Pos', 'pos.eq;src', 'double', '2', 'deg', 'Target', 'Position', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (156, NULL, 'TargetRedshift', 'target_redshift', 'Measured redshift for target', 'Target.Redshift', 'src.redshift', 'long', NULL, NULL, 'Target', 'Redshift', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (157, NULL, 'TargetVelocity', 'target_vel', 'Measured velocity for target', 'Target.Velocity', 'phys.veloc', 'double', NULL, 'km/s', 'Target', 'Velocity', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (158, NULL, 'TargetDistance', 'target_distance', 'Derived distance for target', 'Target.Distance', 'pos.distance', 'double', NULL, 'Mpc', 'Target', 'Distance', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (159, NULL, 'TargetInclination', 'target_inclination', 'Derived inclination for target', 'Target.Inclination', 'src.orbital.inclination', 'double', NULL, 'deg', 'Target', 'Inclination', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (160, NULL, 'TargetPositionAngle', 'target_position_angle', 'Measured position angle for target', 'Target.PositionAngle', 'pos.posAng', 'double', NULL, 'deg', 'Target', 'PA', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (161, NULL, 'TargetDiameter', 'target_diam', 'Measured optical diameter for target', 'Target.Diameter', 'phys.diameter;phys.angSize', 'double', NULL, 'arcsec', 'Target', 'Diameter', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (162, NULL, 'TargetMorphoType', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Type', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (163, NULL, 'TargerMorphoTrc3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Trc3', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (164, NULL, 'TargetMorphoBar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Bar', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (165, NULL, 'TargetMorphoRing', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Ring', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (166, NULL, 'TargetMorphoMultiple', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Multiple', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (167, NULL, 'TargetMorphoCompact', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetMorpho', 'Compactness', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (168, NULL, 'TargetFluxBtc', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetFlux', 'Btc', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (169, NULL, 'TargetFluxMfir', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetFlux', 'Mfir', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (170, NULL, 'TargetFluxLogd25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetFlux', 'Logd25', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (171, NULL, 'TargetFluxLin25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetFlux', 'Lin25', NULL, NULL, NULL);
INSERT INTO "ServiceResponse" VALUES (172, NULL, 'TargetFluxLoglb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TargetFlux', 'Loglb', NULL, NULL, NULL);
--
-- TOC entry 2246 (class 0 OID 0)
-- Dependencies: 250
-- Name: ServiceResponse_ID_seq; Type: SEQUENCE SET; Schema: vodata_cubes; Owner: vodata_cubes
--
SELECT pg_catalog.setval('"ServiceResponse_ID_seq"', 172, true);
--
-- TOC entry 2113 (class 2606 OID 131727)
-- Name: Format_pkey; Type: CONSTRAINT; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
ALTER TABLE ONLY "Format"
ADD CONSTRAINT "Format_pkey" PRIMARY KEY ("ID");
--
-- TOC entry 2115 (class 2606 OID 131736)
-- Name: Instrument_pkey; Type: CONSTRAINT; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
ALTER TABLE ONLY "Instrument"
ADD CONSTRAINT "Instrument_pkey" PRIMARY KEY ("ID");
--
-- TOC entry 2117 (class 2606 OID 131745)
-- Name: Line_pkey; Type: CONSTRAINT; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
ALTER TABLE ONLY "Line"
ADD CONSTRAINT "Line_pkey" PRIMARY KEY ("ID");
--
-- TOC entry 2119 (class 2606 OID 131754)
-- Name: Polarization_pkey; Type: CONSTRAINT; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
ALTER TABLE ONLY "Polarization"
ADD CONSTRAINT "Polarization_pkey" PRIMARY KEY ("ID");
--
-- TOC entry 2121 (class 2606 OID 131814)
-- Name: ServiceResponse_pkey; Type: CONSTRAINT; Schema: vodata_cubes; Owner: vodata_cubes; Tablespace:
--
ALTER TABLE ONLY "ServiceResponse"
ADD CONSTRAINT "ServiceResponse_pkey" PRIMARY KEY ("ID");
-- Completed on 2014-02-03 11:07:09 CET
--
-- PostgreSQL database dump complete
--