<?xml version='1.0'?><?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?><ri:Resource created="2009-12-01T10:00:00Z" status="active" updated="2024-12-23T16:58:43Z" version="1.2" xmlns:g-colstat="http://dc.g-vo.org/ColStats-1" xmlns:ri="http://www.ivoa.net/xml/RegistryInterface/v1.0" xmlns:tr="http://www.ivoa.net/xml/TAPRegExt/v1.0" xmlns:vg="http://www.ivoa.net/xml/VORegistry/v1.0" xmlns:vr="http://www.ivoa.net/xml/VOResource/v1.0" xmlns:vs="http://www.ivoa.net/xml/VODataService/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://dc.g-vo.org/ColStats-1 http://vo.ari.uni-heidelberg.de/docs/schemata/Colstats.xsd http://www.ivoa.net/xml/RegistryInterface/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/RegistryInterface.xsd http://www.ivoa.net/xml/TAPRegExt/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/TAPRegExt.xsd http://www.ivoa.net/xml/VORegistry/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VORegistry.xsd http://www.ivoa.net/xml/VOResource/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/VOResource.xsd http://www.ivoa.net/xml/VODataService/v1.1 http://vo.ari.uni-heidelberg.de/docs/schemata/VODataService.xsd" xsi:type="vs:CatalogService"><title>PADC TAP Server on voparis-tap-he.obspm.fr TAP service</title><shortName>PADC TAP</shortName><identifier>ivo://padc.obspm.he/tap</identifier><curation><publisher>Paris Astronomical Data Centre</publisher><creator><name>PADC</name><logo>http://voparis-srv-paris.obspm.fr/logos/PADC_small.png</logo></creator><date role="Updated">2024-07-11T12:24:08Z</date><contact><name>PADC support team</name><address>77 av. Denfert Rochereau, 75014 Paris, FRANCE</address><email>vo.paris@obspm.fr</email><telephone>0033140512082</telephone></contact></curation><content><subject>virtual-observatories</subject><subject>catalogs</subject><description>The PADC TAP Server on voparis-tap-he.obspm.fr's TAP end point. The Table Access
Protocol (TAP) lets you execute queries against our database tables,
inspect various metadata, and upload your own data. It is thus the
VO's premier way to access public data holdings.

Tables exposed through this endpoint include: obscore from the ctao_isdc schema, obscore, obscore_sdc from the hess_dr schema, obscore from the ivoa schema, columns, groups, key_columns, keys, schemas, tables from the tap_schema schema, main from the vhe_redshifts schema.</description><referenceURL>http://voparis-tap-he.obspm.fr/__system__/tap/run/info</referenceURL><relationship><relationshipType>IsServiceFor</relationshipType><relatedResource ivo-id="ivo://padc.obspm.he/hess_dr/q_sdc/obscore_sdc">H.E.S.S. DL3 public test data release 1</relatedResource><relatedResource ivo-id="ivo://padc.obspm.he/__system__/obscore/ObsCore">PADC TAP Server on voparis-tap-he.obspm.fr Obscore Table</relatedResource><relatedResource ivo-id="ivo://padc.obspm.he/hess_dr/q/obscore">H.E.S.S. DL3 DR1 - Public Test Data Release 1</relatedResource><relatedResource ivo-id="ivo://padc.obspm.he/vhe_redshifts/q/main">VHE Redshifts</relatedResource></relationship></content><capability standardID="ivo://ivoa.net/std/TAP" xsi:type="tr:TableAccess"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">http://voparis-tap-he.obspm.fr/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/obscore#core-1.1">Obscore-1.1</dataModel><language><name>ADQL</name><version ivo-id="ivo://ivoa.net/std/ADQL#v2.0">2.0</version><version ivo-id="ivo://ivoa.net/std/ADQL#v2.1">2.1</version><description>The Astronomical Data Query Language is the standard IVOA dialect of SQL; it contains a very general SELECT statement as well as some extensions for spherical geometry and higher mathematics.</description><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-udf"><feature><form>gavo_getauthority(ivoid TEXT) -&gt; TEXT</form><description>returns the authority part of an ivoid (or, more generally a URI).
So, ivo://org.gavo.dc/foo/bar#baz becomes org.gavo.dc.

The behaviour for anything that's not a full URI is undefined.</description></feature><feature><form>gavo_ipix(long REAL, lat REAL) -&gt; BIGINT</form><description>gavo_ipix returns the q3c ipix for a long/lat pair (it simply wraps
the 13c_ang2ipix function).

This is probably only relevant when you play tricks with indices or
PPMXL ids.</description></feature><feature><form>gavo_match(pattern TEXT, string TEXT) -&gt; INTEGER</form><description>gavo_match returns 1 if the POSIX regular expression pattern
matches anything in string, 0 otherwise.</description></feature><feature><form>gavo_mocintersect(moc1 MOC, moc2 MOC) -&gt; MOC</form><description>returns the intersection of two MOCs.</description></feature><feature><form>gavo_mocunion(moc1 MOC, moc2 MOC) -&gt; MOC</form><description>returns the union of two MOCs.</description></feature><feature><form>gavo_specconv(expr DOUBLE PRECISION, dest_unit TEXT) -&gt; DOUBLE PRECISION</form><description>returns the spectral value expr converted to dest_unit.

expr has to be in either energy, wavelength, or frequency, and dest_unit
must be a VOUnit giving another spectral unit (e.g., MHz, keV, nm, or
Angstrom). This is intended to let users express spectral constraints
in their preferred unit independently of the choice of unit in the
database.  Examples::

	gavo_specconv(obscore.em_min, "keV") &gt; 300
	gavo_specconv(obscore.em_max, "MHz") &gt; 30
	gavo_specconv(spectral_start, "Angstrom") &gt; 4000

There is a variant of gavo_specconv accepting expr's unit in a third
argument.</description></feature><feature><form>gavo_specconv(expr NUMERIC, expr_unit TEXT, dest_unit TEXT) -&gt; NUMERIC</form><description>returns expr assumed to be in expr_unit expressed in dest_unit.

		This is a variant of the two-argument gavo_specconv for when
		the unit of expr is not known to the ADQL translator, either because
		it because it is a literal or because it does not look like
		a spectral unit.  Examples::

			gavo_specconv(656, 'nm', 'J') BETWEEN spectral_start AND spectral_end
			gavo_specconv(arccos(phi)*incidence, 'Hz', 'eV')
		
		Clearly, overriding known units is likely to yield bad results;
		the translator therefore warns if an existing unit is overridden
		with a different unit.</description></feature><feature><form>gavo_vocmatch(vocname TEXT, term TEXT, matchagainst TEXT) -&gt; INTEGER</form><description>returns 1 if matchagainst is term or narrower in the IVOA vocabulary
vocname, 0 otherwise.

This is intended for semantic querying.  For instance,
gavo_vocmatch('datalink/core', 'calibration', semantics) would be 1
if semantics is any of calibration, bias, dark, or flat.

For RDF-flavoured vocabularies (strict trees), term will expand to the
entire branch rooted in term.  For SKOS-flavoured vocabularies (where
narrower is not transitive), only directly narrower terms will be included.

Both the term and the vocabulary name must be string literals (i.e.,
constants).  matchagainst can be any string-valued expression.</description></feature><feature><form>ivo_geom_transform(from_sys TEXT, to_sys TEXT, geo GEOMETRY) -&gt; GEOMETRY</form><description>The function transforms ADQL geometries between various reference systems.
geo can be a POINT, a CIRCLE, or a POLYGON, and the function will return a
geometry of the same type.  In the current implementation, from_sys and
to_sys must be literal strings (i.e., they cannot be computed through
expressions or be taken from database columns).

All transforms are just simple rotations, which is only a rough
approximation to the actual relationships between reference systems
(in particular between FK4 and ICRS-based ones).  Note that, in particular,
the epoch is not changed (i.e., no proper motions are applied).

We currently support the following reference frames: ICRS, FK5 (which
is treated as ICRS), FK4 (for B1950. without epoch-dependent corrections),
GALACTIC.  Reference frame names are case-sensitive.</description></feature><feature><form>ivo_hashlist_has(hashlist TEXT, item TEXT) -&gt; INTEGER</form><description>The function takes two strings; the first is a list of words not
containing the hash sign (#), concatenated by hash signs, the second is
a word not containing the hash sign.  It returns 1 if, compared
case-insensitively, the second argument is in the list of words coded in
the first argument.  The behaviour in case the the second
argument contains a hash sign is unspecified.</description></feature><feature><form>ivo_hasword(haystack TEXT, needle TEXT) -&gt; INTEGER</form><description>gavo_hasword returns 1 if needle shows up in haystack, 0 otherwise.  This
is for "google-like"-searches in text-like fields.  In word, you can
actually employ a fairly complex query language; see
https://www.postgresql.org/docs/current/textsearch.html
for details.</description></feature><feature><form>ivo_healpix_center(hpxOrder INTEGER, hpxIndex BIGINT) -&gt; POINT</form><description>returns a POINT corresponding to the center of the healpix with
the given index at the given order.</description></feature><feature><form>ivo_healpix_index(order INTEGER, ra DOUBLE PRECISION, dec DOUBLE PRECISION) -&gt; BIGINT</form><description>Returns the index of the (nest) healpix with order containing the
spherical point (ra, dec).

An alternative, 2-argument form

ivo_healpix_index(order INTEGER, p POINT) -&gt; BIGINT

is also available.</description></feature><feature><form>ivo_histogram(val REAL, lower REAL, upper REAL, nbins INTEGER) -&gt; INTEGER[]</form><description>The aggregate function returns a histogram of val with nbins+2 elements.
Assuming 0-based arrays, result[0] contains the number of underflows (i.e.,
val&lt;lower), result[nbins+1] the number of overflows.  Elements 1..nbins
are the counts in nbins bins of width (upper-lower)/nbins.  Clients
will have to convert back to physical units using some external
communication, there currently is no (meta-) data as lower and upper in
the TAP response.</description></feature><feature><form>ivo_interval_has(val NUMERIC, iv INTERVAL) -&gt; INTEGER</form><description>The function returns 1 if the interval iv contains val, 0 otherwise.
The lower limit is always included in iv, behaviour on the upper
limit is column-specific.</description></feature><feature><form>ivo_interval_overlaps(l1 NUMERIC, h1 NUMERIC, l2 NUMERIC, h2 NUMERIC) -&gt; INTEGER</form><description>The function returns 1 if the interval [l1...h1] overlaps with
the interval [l2...h2].  For the purposes of this function,
the case l1=h2 or l2=h1 is treated as overlap.  The function
returns 0 for non-overlapping intervals.</description></feature><feature><form>ivo_nocasematch(value TEXT, pattern TEXT) -&gt; INTEGER</form><description>ivo_nocasematch returns 1 if pattern matches value, 0 otherwise.
pattern is defined as for the SQL LIKE operator, but the
match is performed case-insensitively.  This function in effect
provides a surrogate for the ILIKE SQL operator that is missing from
ADQL.

On this site, this is actually implemented using python's and SQL's
LOWER, so for everything except ASCII, your mileage will vary.</description></feature><feature><form>ivo_normal_random(mu REAL, sigma REAL) -&gt; REAL</form><description>The function returns a random number drawn from a normal distribution
with mean mu and width sigma.

Implementation note: Right now, the Gaussian is approximated by
summing up and scaling ten calls to random.  This, hence, is not
very precise or fast.  It might work for some use cases, and we
will provide a better implementation if this proves inadequate.</description></feature><feature><form>ivo_simbadpoint(identifier TEXT) -&gt; POINT</form><description>gavo_simbadpoint queries simbad for an identifier and returns the
corresponding point.  Note that identifier can only be a literal,
i.e., as simple string rather than a column name. This is because
our database cannot query simbad, and we probably wouldn't want
to fire off millions of simbad queries anyway; use simbad's own
TAP service for this kind of application.</description></feature><feature><form>ivo_string_agg(expression TEXT, delimiter TEXT) -&gt; TEXT</form><description>An aggregate function returning all values of
expression within a GROUP contcatenated with delimiter</description></feature><feature><form>ivo_to_jd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature><feature><form>ivo_to_mjd(d TIMESTAMP) -&gt; DOUBLE PRECISION</form><description>The function converts a postgres timestamp to modified julian date.
This is naive; no corrections for timezones, let alone time
scales or the like are done; you can thus not expect this to be
good to second-precision unless you are careful in the construction
of the timestamp.</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adqlgeo"><feature><form>BOX</form></feature><feature><form>POINT</form></feature><feature><form>CIRCLE</form></feature><feature><form>POLYGON</form></feature><feature><form>REGION</form></feature><feature><form>CENTROID</form></feature><feature><form>COORD1</form></feature><feature><form>COORD2</form></feature><feature><form>DISTANCE</form></feature><feature><form>CONTAINS</form></feature><feature><form>INTERSECTS</form></feature><feature><form>AREA</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-conditional"><feature><form>COALESCE</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-string"><feature><form>LOWER</form></feature><feature><form>ILIKE</form></feature><feature><form>UPPER</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-offset"><feature><form>OFFSET</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-type"><feature><form>CAST</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-unit"><feature><form>IN_UNIT</form></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-common-table"><feature><form>WITH</form></feature></languageFeatures><languageFeatures type="ivo://org.gavo.dc/std/exts#extra-adql-keywords"><feature><form>TABLESAMPLE</form><description>Written after a table reference, TABLESAMPLE(10) will make the database only use 10% of the rows; these are `somewhat random' in that the system will use random blocks.  This should be good enough when just testing queries (and much better than using TOP n).</description></feature><feature><form>MOC</form><description>A geometry function creating MOCs.  It either takes a string argument with an ASCII MOC ('4/13 17-18 8/3002'), or an order and another geometry.</description></feature><feature><form>VECTORMATH</form><description>You can compute with vectors here. See https://wiki.ivoa.net/twiki/bin/view/IVOA/ADQLVectorMath for an overview of the functions and operators available.</description></feature><feature><form>CASE</form><description>The SQL92 CASE expression</description></feature></languageFeatures><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-adql-sets"><feature><form>UNION</form></feature><feature><form>EXCEPT</form></feature><feature><form>INTERSECT</form></feature></languageFeatures></language><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><outputFormat><mime>text/plain</mime><alias>txt</alias></outputFormat><outputFormat><mime>text/csv</mime><alias>csv_bare</alias></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat><mime>application/geo+json</mime><alias>geojson</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary2"><mime>application/x-votable+xml;serialization=BINARY2</mime><alias>votable/b2</alias><alias>votableb2</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-td"><mime>application/x-votable+xml;serialization=TABLEDATA</mime><alias>text/xml</alias><alias>votable/td</alias><alias>votabletd</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.1</mime><alias>text/xml</alias><alias>votabletd1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.1</mime><alias>text/xml</alias><alias>votable1.1</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.2</mime><alias>text/xml</alias><alias>votabletd1.2</alias></outputFormat><outputFormat><mime>application/x-votable+xml;serialization=TABLEDATA;version=1.6</mime><alias>vodml</alias></outputFormat><outputFormat><mime>application/x-votable+xml;version=1.6</mime><alias>vodmlb</alias></outputFormat><outputFormat><mime>text/html</mime><alias>html</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>60</default></executionDuration><outputLimit><default unit="row">20000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">500000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://voparis-tap-he.obspm.fr/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://voparis-tap-he.obspm.fr/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" version="1.1" xsi:type="vs:ParamHTTP"><accessURL use="full">http://voparis-tap-he.obspm.fr/__system__/tap/run/tableMetadata</accessURL></interface></capability><tableset><schema><name>ivoa</name><description>Definition and support code for the ObsCore data model and table.</description><table><name>ivoa.obscore</name><title>PADC TAP Server on voparis-tap-he.obspm.fr Obscore Table</title><description>The IVOA-defined obscore table, containing generic metadata for
datasets within this data centre.</description><utype>ivo://ivoa.net/std/obscore#table-1.1</utype><nrows>105</nrows><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="2" g-colstat:median="2" g-colstat:min-value="2" g-colstat:percentile03="2" g-colstat:percentile97="2"><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obsdataset.caliblevel</utype><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.ivoid</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="622080" g-colstat:median="371520" g-colstat:min-value="172800" g-colstat:percentile03="213466" g-colstat:percentile97="595814"><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="356.408" g-colstat:median="228.613" g-colstat:min-value="7.325" g-colstat:percentile03="11.888" g-colstat:percentile97="349.049"><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="24.2026" g-colstat:median="-30.7256" g-colstat:min-value="-73" g-colstat:percentile03="-68.5704" g-colstat:percentile97="22.0144"><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="5" g-colstat:median="5" g-colstat:min-value="5" g-colstat:percentile03="5" g-colstat:percentile97="5"><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>pos.outline;obs.field</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="0.1" g-colstat:median="0.1" g-colstat:min-value="0.1" g-colstat:percentile03="0.1" g-colstat:percentile97="0.1"><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="54706.9" g-colstat:median="53343.9" g-colstat:min-value="53090.1" g-colstat:percentile03="53109.8" g-colstat:percentile97="54705.9"><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="54706.9" g-colstat:median="53343.9" g-colstat:min-value="53090.1" g-colstat:percentile03="53109.9" g-colstat:percentile97="54705.9"><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1651.47" g-colstat:median="1547.83" g-colstat:min-value="819.205" g-colstat:percentile03="1218.57" g-colstat:percentile97="1642.3"><name>t_exptime</name><description>Total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1e-06" g-colstat:median="1e-06" g-colstat:min-value="1e-06" g-colstat:percentile03="1e-06" g-colstat:percentile97="1e-06"><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="8.24366e-18" g-colstat:median="6.2061e-18" g-colstat:min-value="2.63029e-18" g-colstat:percentile03="3.06448e-18" g-colstat:percentile97="7.70392e-18"><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.lolimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="1" g-colstat:max-value="1.93774e-20" g-colstat:median="1.36113e-20" g-colstat:min-value="5.394e-21" g-colstat:percentile03="5.97733e-21" g-colstat:percentile97="1.69358e-20"><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.hilimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>em_res_power</name><description>Spectral resolving power lambda/delta lambda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins2</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.PolarizationAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column g-colstat:fillFactor="0"><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis (typically, em.freq, em.wl, or em.energy)</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>preview</name><description>URL of a preview (low-resolution, quick-to-retrieve representation) of the data.</description><ucd>meta.ref.url;meta.preview</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_table</name><description>Name of a TAP-queriable table this data originates from. This source table usually provides more information on the the data than what is given in obscore. See the TAP_SCHEMA of the originating TAP server for details.</description><ucd>meta.id;meta.table</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>tap_schema</name><description> PADC TAP Server on voparis-tap-he.obspm.fr's Table Access Protocol (TAP) service with
table metadata.</description><table><name>tap_schema.tables</name><description>Tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>table_type</name><description>One of: table, view</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Brief description of the table</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if the table corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>table_index</name><description>Suggested position this table should take in a sorted list of tables from this data center</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>nrows</name><description>The approximate size of the table in rows</description><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.schemas</targetTable><fkColumn><fromColumn>schema_name</fromColumn><targetColumn>schema_name</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.columns</name><description>Columns in tables available for ADQL querying.</description><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>column_name</name><description>Column name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>description</name><description>Brief description of column</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>unit</name><description>Unit in VO standard format</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ucd</name><description>UCD of column if any</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>utype</name><description>Utype of column if any</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>datatype</name><description>ADQL datatype</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>arraysize</name><description>Arraysize in VOTable notation</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>xtype</name><description>VOTable extended type information (for special interpretation of data content, e.g., timestamps or points)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>"size"</name><description>Legacy length (ignore if you can).</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>std</name><description>Is this a standard column?</description><dataType xsi:type="vs:VOTableType">int</dataType></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_index</name><description>1-based index of the column in database order.</description><dataType xsi:type="vs:VOTableType">short</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.schemas</name><description>Schemas containing tables available for ADQL querying.</description><column><name>schema_name</name><description>Fully qualified schema name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>description</name><description>Brief description of the schema</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>utype</name><description>utype if schema corresponds to a data model</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>schema_index</name><description>Suggested position this schema should take in a sorted list of schemas from this data center.</description><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column></table><table><name>tap_schema.keys</name><description>Foreign key relationships between tables available for ADQL querying.</description><column><name>key_id</name><description>Unique key identifier</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>primary</flag></column><column><name>from_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_table</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>description</name><description>Description of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">unicodeChar</dataType><flag>nullable</flag></column><column><name>utype</name><description>Utype of this key</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>from_table</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>target_table</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.key_columns</name><description>Columns participating in foreign key relationships between tables
available for ADQL querying.</description><column><name>key_id</name><description>Key identifier from TAP_SCHEMA.keys</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>from_column</name><description>Key column name in the from table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_column</name><description>Key column in the target table</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.keys</targetTable><fkColumn><fromColumn>key_id</fromColumn><targetColumn>key_id</targetColumn></fkColumn></foreignKey></table><table><name>tap_schema.groups</name><description>Columns that are part of groups within tables available for ADQL
querying.</description><column><name>table_name</name><description>Fully qualified table name</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_name</name><description>Name of a column belonging to the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>column_utype</name><description>utype the column within the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_name</name><description>Name of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>group_utype</name><description>utype of the group</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>sourcerd</name><description>Id of the originating rd (local information)</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><foreignKey><targetTable>tap_schema.tables</targetTable><fkColumn><fromColumn>table_name</fromColumn><targetColumn>table_name</targetColumn></fkColumn></foreignKey></table></schema><schema><name>ctao_isdc</name><title>CTAO Internal Science Data Challenge</title><description> CTAO Internal Science Data Challenge</description><table><name>ctao_isdc.obscore</name><description> IVOA ObsCore description of CTAO Internal Science Data Challenge
datasets.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obsdataset.caliblevel</utype><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.ivoid</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>pos.outline;obs.field</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.lolimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.hilimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power lambda/delta lambda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins2</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.PolarizationAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis (typically, em.freq, em.wl, or em.energy)</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>preview</name><description>URL of a preview (low-resolution, quick-to-retrieve representation) of the data.</description><ucd>meta.ref.url;meta.preview</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_table</name><description>Name of a TAP-queriable table this data originates from. This source table usually provides more information on the the data than what is given in obscore. See the TAP_SCHEMA of the originating TAP server for details.</description><ucd>meta.id;meta.table</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>hess_dr</name><title>H.E.S.S. DL3 DR1 - Public Test Data Release 1</title><description> The release consists of event lists and instrument response functions
(Data Level 3 products) for H.E.S.S. observations of various
well-known gamma-ray sources (the Crab nebula, PKS 2155-304, MSH
15-52, RX J1713.7-3946) as well as observations of empty fields for
background modeling.</description><table><name>hess_dr.obscore_sdc</name><description> IVOA ObsCore description of event lists for observations in the
H.E.S.S. DL3 public test data release 1. The release consists of event
lists and instrument response functions for observations of various
well-known gamma-ray sources (the Crab nebula, PKS 2155-304, MSH
15-52, RX J1713.7-3946) as well as observations of empty fields for
background modeling.</description><column><name>dataproduct_type</name><description>product type: spectrum or timeseries ...</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>product subtype</description><ucd>meta.note</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>calibration level</description><ucd>meta.id</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>obs_collection</name><description>name of the data collection</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>observation id</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>dataset identifier given by the publisher</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>URL used to access dataset</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>file content format</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>estimated size of dataset</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>target_name</name><description>name of target</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>right ascension of target (ICRS)</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_dec</name><description>declination of target (ICRS)</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_fov</name><description>average diameter of the covered region</description><unit>deg</unit><ucd>phys.angSize;obs.field</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>region covered as specified in STC or ADQL</description><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>spatial resolution of data as FWHM</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>start time</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>stop time</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>temporal resolution FWHM</description><unit>s</unit><ucd>time.resolution</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_energy_min_tev</name><description>start in spectral coordinates in TeV</description><unit>TeV</unit><ucd>em.energy;stat.min</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_energy_max_tev</name><description>stop in spectral coordinates in TeV</description><unit>TeV</unit><ucd>em.energy;stat.max</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_min</name><description>start in spectral coordinates</description><unit>m</unit><ucd>em.wl;stat.min</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_max</name><description>stop in spectral coordinates</description><unit>m</unit><ucd>em.wl;stat.max</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>spectral resolving power</description><ucd>spect.resolution</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD of observable</description><ucd>meta.ucd</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>list of polarization states or NULL if N/A</description><ucd>phys.polarization</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>name of facility used for this observation</description><ucd>meta.id;instr.obsty</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>name of the instrument used for this observation</description><ucd>instr.experiment</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>coverage</name><description>introduces an ascii (ST)MOC, v2 (2D footprint on celestial, spherical, or body-related frames, possibly including time)</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ra_pnt</name><description>Observation pointing right ascension</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec_pnt</name><description>Observation pointing declination</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>glon_pnt</name><description>Observation pointing Galactic longitude</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>glat_pnt</name><description>Observation pointing Galactic latitude</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>zen_pnt</name><description>Observation pointing zenith angle at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>alt_pnt</name><description>Observation pointing altitude at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>az_pnt</name><description>Observation pointing azimuth at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>object</name><description>Primary target of the observation</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ra_obj</name><description>Right ascension of OBJECT</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec_obj</name><description>Declination of OBJECT</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>offset_obj</name><description>Distance between observation position and OBJECT</description><unit>deg</unit><ucd>instr.offset</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ontime</name><description>Total observation time (including dead time). Equals TSTOP - TSTART</description><unit>s</unit><ucd>time.duration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>livetime</name><description>Total livetime (observation minus dead time)</description><unit>s</unit><ucd>time</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>deadc</name><description>Dead time correction. It is defined such that LIVETIME = DEADC * ONTIME i.e. the fraction of time the telescope was actually able to take data.</description><ucd>time;arith.ratio</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>tstart</name><description>Start time of observation relative to the reference time</description><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>tstop</name><description>End time of observation relative to the reference time</description><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>date_obs</name><description>Observation start date</description><ucd>time.start;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>time_obs</name><description>Observation start time</description><ucd>time.start;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>date_end</name><description>Observation end date</description><ucd>time.end;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>time_end</name><description>Observation end time</description><ucd>time.end;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>n_tels</name><description>Number of participating telescopes</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>tellist</name><description>Telescope IDs (e.g. ?1,2,3,4?)</description><ucd>meta.id;instr.tel</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>quality</name><description>Observation data quality. The following levels of data quality are defined: -1 = unknown quality, 0 = best quality, suitable for spectral analysis, 1 = medium quality, suitable for detection, but not spectra (typically if the atmosphere was hazy), 2 = bad quality, usually not to be used for analysis.</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>muoneff</name><description>Mean muon efficiency. Currently use definitions from analysis chain, since creating a unified specification is tricky.</description><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>event_count</name><description>Number of events</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>target_name_subset</name><description>The observation subset name</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_tag</name><description>Target tag</description><ucd>meta.id;src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_offset</name><description>Distance between observation position and target</description><unit>deg</unit><ucd>instr.offset</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>safe_energy_lo</name><description>Low energy threshold</description><unit>TeV</unit><ucd>em.energy;stat.min</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>safe_energy_hi</name><description>High energy threshold</description><unit>TeV</unit><ucd>em.energy;stat.max</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column></table><table><name>hess_dr.obscore</name><description> IVOA ObsCore description of event lists for observations in the
H.E.S.S. DL3 DR1.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproducttype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>dataproduct_subtype</name><description>Data product specific type</description><ucd>meta.code.class</ucd><utype>obscore:obsdataset.dataproductsubtype</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>calib_level</name><description>Amount of data processing that has been applied to the data</description><ucd>meta.code;obs.calib</ucd><utype>obscore:obsdataset.caliblevel</utype><dataType xsi:type="vs:VOTableType">short</dataType></column><column><name>obs_collection</name><description>Name of a data collection (e.g., project name) this data belongs to</description><ucd>meta.id</ucd><utype>obscore:dataid.collection</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_id</name><description>Unique identifier for an observation</description><ucd>meta.id</ucd><utype>obscore:DataID.observationID</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_title</name><description>Free-from title of the data set</description><ucd>meta.title;obs</ucd><utype>obscore:dataid.title</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>obs_publisher_did</name><description>Dataset identifier assigned by the publisher.</description><ucd>meta.ref.ivoid</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>obs_creator_did</name><description>Dataset identifier assigned by the creator.</description><ucd>meta.id</ucd><utype>obscore:dataid.creatordid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>The URL at which to obtain the data set.</description><ucd>meta.ref.url</ucd><utype>obscore:access.reference</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>MIME type of the resource at access_url</description><ucd>meta.code.mime</ucd><utype>obscore:access.format</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimated size of data product</description><unit>kbyte</unit><ucd>phys.size;meta.file</ucd><utype>obscore:access.size</utype><dataType xsi:type="vs:VOTableType">long</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Object a targeted observation targeted</description><ucd>meta.id;src</ucd><utype>obscore:Target.Name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Class of the target object (star, QSO, ...)</description><ucd>src.class</ucd><utype>obscore:target.class</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_ra</name><description>RA of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.ra</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c1</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>s_dec</name><description>Dec of (center of) observation, ICRS</description><unit>deg</unit><ucd>pos.eq.dec</ucd><utype>obscore:char.spatialaxis.coverage.location.coord.position2d.value2.c2</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>indexed</flag><flag>nullable</flag></column><column><name>s_fov</name><description>Approximate spatial extent for the region covered by the observation</description><unit>deg</unit><ucd>phys.angSize;instr.fov</ucd><utype>obscore:char.spatialaxis.coverage.bounds.extent.diameter</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>pos.outline;obs.field</ucd><utype>obscore:char.spatialaxis.coverage.support.area</utype><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_resolution</name><description>Best spatial resolution within the data set</description><unit>arcsec</unit><ucd>pos.angResolution</ucd><utype>obscore:Char.SpatialAxis.Resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_max</name><description>Upper bound of times represented in the data set</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exposure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>t_resolution</name><description>Minimal significant time interval along the time axis</description><unit>s</unit><ucd>time.resolution</ucd><utype>obscore:char.timeaxis.resolution.refval.value</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_min</name><description>Minimal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.min</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.lolimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_max</name><description>Maximal wavelength represented within the data set</description><unit>m</unit><ucd>em.wl;stat.max</ucd><utype>obscore:char.spectralaxis.coverage.bounds.limits.hilimit</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power lambda/delta lambda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>o_ucd</name><description>UCD for the product's observable</description><ucd>meta.ucd</ucd><utype>obscore:char.observableaxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pol_states</name><description>List of polarization states in the data set</description><ucd>meta.code;phys.polarization</ucd><utype>obscore:Char.PolarizationAxis.stateList</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>facility_name</name><description>Name of the facility at which data was taken</description><ucd>meta.id;instr.tel</ucd><utype>obscore:Provenance.ObsConfig.facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Name of the instrument that produced the data</description><ucd>meta.id;instr</ucd><utype>obscore:Provenance.ObsConfig.instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>s_xel1</name><description>Number of elements (typically pixels) along the first spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins1</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>s_xel2</name><description>Number of elements (typically pixels) along the second spatial axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpatialAxis.numBins2</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>t_xel</name><description>Number of elements (typically pixels) along the time axis.</description><ucd>meta.number</ucd><utype>obscore:Char.TimeAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>em_xel</name><description>Number of elements (typically pixels) along the spectral axis.</description><ucd>meta.number</ucd><utype>obscore:Char.SpectralAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>pol_xel</name><description>Number of elements (typically pixels) along the polarization axis.</description><ucd>meta.number</ucd><utype>obscore:Char.PolarizationAxis.numBins</utype><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>s_pixel_scale</name><description>Sampling period in world coordinate units along the spatial axis</description><unit>arcsec</unit><ucd>phys.angSize;instr.pixel</ucd><utype>obscore:Char.SpatialAxis.Sampling.RefVal.SamplingPeriod</utype><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis (typically, em.freq, em.wl, or em.energy)</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>preview</name><description>URL of a preview (low-resolution, quick-to-retrieve representation) of the data.</description><ucd>meta.ref.url;meta.preview</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>source_table</name><description>Name of a TAP-queriable table this data originates from. This source table usually provides more information on the the data than what is given in obscore. See the TAP_SCHEMA of the originating TAP server for details.</description><ucd>meta.id;meta.table</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ev_xel</name><description>Number of events in an event list</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>s_ref_energy</name><description>Energy at which the ObsCore spatial characterization attributes s_fov, s_region, s_resolution are defined</description><unit>eV</unit><ucd>em.energy</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ref_energy</name><description>Energy at which the ObsCore spectral characterization attributes em_res_power, em_resolution are defined</description><unit>eV</unit><ucd>em.energy</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_ref_oaa</name><description>Off-axis angle (i.e., the angular separation of the target or source from the telescope optical axis) at which the ObsCore spatial characterization attributes s_fov, s_region, s_resolution are defined</description><unit>deg</unit><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ref_oaa</name><description>Off-axis angle (i.e., the angular separation of the target or source from the telescope optical axis) at which the ObsCore spectral characterization attributes em_res_power, em_resolution are defined</description><unit>deg</unit><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_intervals</name><description>List of observation intervals or stable/good time intervals describing the exact observation time coverage as a TMOC</description><ucd>em.energy</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>energy_min</name><description>Energy associated to the ObsCore attribute em_max, describing the minimum energy of the dataset</description><unit>eV</unit><ucd>em.energy</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>energy_max</name><description>Energy associated to the ObsCore attribute em_min, describing the maximum energy of the dataset</description><unit>eV</unit><ucd>em.energy</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>obs_mode</name><description>Observation mode of an observation</description><ucd>instr.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>tracking_type</name><description>Tracking type of an observation</description><ucd>instr.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>scan_mode</name><description>Scan mode of an observation</description><ucd>instr.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>pointing_mode</name><description>Pointing mode of an observation</description><ucd>instr.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>analysis_mode</name><description>Observation mode of an observation</description><ucd>obs.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>event_type</name><description>Event subset indicator (e.g., data quality flag for the events)</description><ucd>obs.param</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>coverage</name><description>introduces an ascii (ST)MOC, v2 (2D footprint on celestial, spherical, or body-related frames, possibly including time)</description><ucd>pos.outline;obs.field</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ra_pnt</name><description>Observation pointing right ascension</description><unit>deg</unit><ucd>pos.eq.ra;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec_pnt</name><description>Observation pointing declination</description><unit>deg</unit><ucd>pos.eq.dec;meta.main</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>glon_pnt</name><description>Observation pointing Galactic longitude</description><unit>deg</unit><ucd>pos.galactic.lon</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>glat_pnt</name><description>Observation pointing Galactic latitude</description><unit>deg</unit><ucd>pos.galactic.lat</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>zen_pnt</name><description>Observation pointing zenith angle at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>alt_pnt</name><description>Observation pointing altitude at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>az_pnt</name><description>Observation pointing azimuth at observation mid-time TMID</description><unit>deg</unit><ucd>pos</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>object</name><description>Primary target of the observation</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>ra_obj</name><description>Right ascension of OBJECT</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>dec_obj</name><description>Declination of OBJECT</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>offset_obj</name><description>Distance between observation position and OBJECT</description><unit>deg</unit><ucd>instr.offset</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>ontime</name><description>Total observation time (including dead time). Equals TSTOP - TSTART</description><unit>s</unit><ucd>time.duration</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>livetime</name><description>Total livetime (observation minus dead time)</description><unit>s</unit><ucd>time</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>deadc</name><description>Dead time correction. It is defined such that LIVETIME = DEADC * ONTIME i.e. the fraction of time the telescope was actually able to take data.</description><ucd>time;arith.ratio</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>tstart</name><description>Start time of observation relative to the reference time</description><ucd>time.start</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>tstop</name><description>End time of observation relative to the reference time</description><ucd>time.end</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>date_obs</name><description>Observation start date</description><ucd>time.start;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>time_obs</name><description>Observation start time</description><ucd>time.start;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>date_end</name><description>Observation end date</description><ucd>time.end;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>time_end</name><description>Observation end time</description><ucd>time.end;obs.exposure</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>n_tels</name><description>Number of participating telescopes</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>tellist</name><description>Telescope IDs (e.g. ?1,2,3,4?)</description><ucd>meta.id;instr.tel</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>quality</name><description>Observation data quality. The following levels of data quality are defined: -1 = unknown quality, 0 = best quality, suitable for spectral analysis, 1 = medium quality, suitable for detection, but not spectra (typically if the atmosphere was hazy), 2 = bad quality, usually not to be used for analysis.</description><ucd>meta.code.qual</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>muoneff</name><description>Mean muon efficiency. Currently use definitions from analysis chain, since creating a unified specification is tricky.</description><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>event_count</name><description>Number of events</description><ucd>meta.number</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>target_name_subset</name><description>The observation subset name</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_tag</name><description>Target tag</description><ucd>meta.id;src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_offset</name><description>Distance between observation position and target</description><unit>deg</unit><ucd>instr.offset</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>safe_energy_lo</name><description>Low energy threshold</description><unit>TeV</unit><ucd>em.energy;stat.min</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>safe_energy_hi</name><description>High energy threshold</description><unit>TeV</unit><ucd>em.energy;stat.max</ucd><dataType xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>datalink</name><description>URL of a datalink document for this dataset</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url_this</name><description>URL for direct download of the event-list</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>vhe_redshifts</name><title>VHE Redshifts</title><description> This resource is dedicated to the redshift determination of gamma-ray
blazars whose distance is unknown and which are good candidates for
the next generation of ground-based Cherenkov telescopes (CTAO). It
supports the Redshift Determination Group of the CTAO consortium.
Sources are selected from blazars in Fermi-LAT catalogues that still
lack redshift data. Their detectability with CTAO is evaluated via
Monte Carlo simulations. This resource provides access to a database
containing useful information for determining the redshift of the
selected sources: coordinates, counterparts, magnitudes, host
properties, optical spectra, light curves, CTAO detectability, etc. It
also includes the redshift status and is updated with new redshift
results as soon as they become publicly available. We strive to ensure
that the contents of the database are complete and accurate.</description><table><name>vhe_redshifts.main</name><description> This table contains the name and coordinates of each selected source,
published information about its redshift when available, the name and
coordinates of its counterpart, and the magnitudes obtained in the
Pan-STARRS (DR2), DSS (USNO-B1.0), and Gaia (EDR3) surveys. The names
of the counterparts are taken from the Fermi-LAT 4LAC-DR3 catalogue,
and they were subsequently verified and replaced in a few cases as
necessary. The coordinates of the counterparts are the optical ones
when available (the Status column is then set to 1). Details on
detectability by CTAO are provided in the "CTAO simulations" table.</description><column><name>fhl_name</name><description>source name in the 3FHL catalogue</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>fhl_ra</name><description>right ascension (J2000) in the 3FHL catalogue</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>fhl_dec</name><description>declination (J2000) in the 3FHL catalogue</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>fhl_classification</name><description>source class in the 3FHL catalogue</description><ucd>src.class</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>redshift_value</name><description>redshift value</description><ucd>src.redshift</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>redshift_reference</name><description>link for the redshift value reference</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>redshift_reliability</name><description>redshift value reliability: High/Medium</description><ucd>meta.code.qual</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>counterpart_name</name><description>counterpart name</description><ucd>meta.id;src</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>counterpart_status</name><description>optical counterpart status (0 or 1)</description><ucd>meta.code</ucd><dataType xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>counterpart_ra_assoc</name><description>right ascension (J2000) of the counterpart</description><unit>deg</unit><ucd>pos.eq.ra</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>counterpart_dec_assoc</name><description>declination (J2000) of the counterpart</description><unit>deg</unit><ucd>pos.eq.dec</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>counterpart_reference</name><description>link for the counterpart reference</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>magnitudes_panstarrs</name><description>magnitude i in the Pan-STARRS DR2 survey</description><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magnitudes_gaia</name><description>magnitude G in the Gaia EDR3 survey</description><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>magnitudes_dss</name><description>magnitude R in the DSS survey</description><ucd>phot.mag</ucd><dataType xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table></schema></tableset></ri:Resource>