<?xml-stylesheet href='/static/xsl/oai.xsl' type='text/xsl'?>
<ri:Resource created="2009-12-01T10:00:00" status="active" updated="2018-07-17T11:01:55" version="1.2" xmlns:ri="http://www.ivoa.net/xml/RegistryInterface/v1.0" xmlns:tr="http://www.ivoa.net/xml/TAPRegExt/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://www.ivoa.net/xml/TAPRegExt/v1.0 http://vo.ari.uni-heidelberg.de/docs/schemata/TAPRegExt.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>Planetary web services @ FUB TAP service</title><shortName>PRSFUB TAP</shortName><identifier>ivo://fu-berlin.planet.hrsc/tap</identifier><curation><publisher>FREIE UNIVERSITAET BERLIN, PLANETOLOGY AND REMOTE SENSING</publisher><creator><name>Sebastian Walter</name><logo>http://dachs.planet.fu-berlin.de/logo_big.png</logo></creator><date role="updated">2018-07-17T11:01:55</date><contact><name>Sebastian Walter</name><address>Malteserstr. 74-100</address><email>s.walter@fu-berlin.de</email></contact></curation><content><subject>Virtual observatory</subject><subject>Catalogs</subject><subject>ADQL</subject><description>The Planetary web services @ FUB'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: columns, groups, key_columns, keys, schemas, tables from the tap_schema schema, epn_core from the hrsc3nd schema, emptyobscore, obscore from the ivoa schema.</description><referenceURL>http://dachs.planet.fu-berlin.de/__system__/tap/run/info</referenceURL><relationship><relationshipType>service-for</relationshipType><relatedResource ivo-id="ivo://fu-berlin.planet.hrsc/hrsc3nd/q/epn_core">HRSC Level 3 nadir images</relatedResource><relatedResource ivo-id="ivo://fu-berlin.planet.hrsc/fub_wms/q/epn_core">FUB_WMS</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="base">http://dachs.planet.fu-berlin.de/tap</accessURL></interface><dataModel ivo-id="ivo://ivoa.net/std/ObsCore#table-1.1">Obscore-1.1</dataModel><language><name>ADQL</name><version ivo-id="ivo://ivoa.net/std/ADQL#v2.0">2.0</version><description>ADQL 2.0</description><languageFeatures type="ivo://ivoa.net/std/TAPRegExt#features-udf"><feature><form>gavo_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 applications.</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>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>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_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>gavo_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_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>gavo_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).  Not 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 trested as ICRS), FK4 (for B1950. without epoch-dependent corrections),
GALACTIC.  Reference frame names are case-sensitive.</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_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>gavo_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>gavo_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><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 milage will vary.</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
http://www.postgresql.org/docs/8.3/static/textsearch.html
for details.</description></feature><feature><form>ivo_apply_pm(ra DOUBLE PRECISION, dec DOUBLE PRECISION, pmra DOUBLE PRECISION, pmde DOUBLE PRECISON, epdist DOUBLE PRECISION) -&gt; POINT</form><description>Returns a POINT (in the UNDEFINED reference frame) for the position
an object at ra/dec with proper motion pmra/pmde has after epdist years.

positions must be in degrees, PMs in should be in julian years (i.e., proper
motions are expected in degrees/year).  pmra is assumed to contain 
cos(delta).

NOTE: This currently is a crappy approximation that does *not* go
through the tangential plane.  If you use it, let the operators know
so we replace it with something real.</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-string"><feature><form>LOWER</form></feature><feature><form>ILIKE</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://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 ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>text/xml</mime></outputFormat><outputFormat ivo-id="http://dc.g-vo.org/output-vodml"><mime>application/x-votable+xml;version=1.4</mime><alias>vodml</alias></outputFormat><outputFormat><mime>text/html</mime><alias>html</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></outputFormat><outputFormat><mime>application/geo-json</mime><alias>geojson</alias></outputFormat><outputFormat><mime>application/fits</mime><alias>fits</alias></outputFormat><outputFormat><mime>text/csv</mime></outputFormat><outputFormat><mime>text/csv;header=present</mime><alias>csv</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegEXT#output-votable-td"><mime>application/x-votable+xml;serialization=tabledata</mime><alias>votable/td</alias></outputFormat><outputFormat><mime>application/json</mime><alias>json</alias></outputFormat><outputFormat ivo-id="ivo://ivoa.net/std/TAPRegExt#output-votable-binary"><mime>application/x-votable+xml</mime><alias>votable</alias></outputFormat><outputFormat><mime>text/plain</mime></outputFormat><outputFormat><mime>text/tab-separated-values</mime><alias>tsv</alias></outputFormat><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-https"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-ftp"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-inline"/><uploadMethod ivo-id="ivo://ivoa.net/std/TAPRegExt#upload-http"/><retentionPeriod><default>172800</default></retentionPeriod><executionDuration><default>3600</default></executionDuration><outputLimit><default unit="row">20000</default><hard unit="row">20000000</hard></outputLimit><uploadLimit><hard unit="byte">20000000</hard></uploadLimit></capability><capability standardID="ivo://ivoa.net/std/VOSI#availability"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://dachs.planet.fu-berlin.de/__system__/tap/run/availability</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#capabilities"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://dachs.planet.fu-berlin.de/__system__/tap/run/capabilities</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/VOSI#tables"><interface role="std" xsi:type="vs:ParamHTTP"><accessURL use="full">http://dachs.planet.fu-berlin.de/__system__/tap/run/tableMetadata</accessURL></interface></capability><capability standardID="ivo://ivoa.net/std/DALI#examples-1.0"><interface xsi:type="vr:WebBrowser"><accessURL use="full">http://dachs.planet.fu-berlin.de/__system__/tap/run/examples</accessURL></interface></capability><tableset><schema><name>hrsc3nd</name><title>HRSC Level 3 nadir images</title><description>Mars-Express/High Resolution Stereo Camera nadir (panchromatic) images
projected to Equidistant Cylindrical projection ortho-rectified using
the MOLA DTM (HRSC level 3). The images are accessible via an OGC Map
Web Service (WMS) directly from our WMS Server. For an interactive
web-GIS of the data, visit: http://maps.planet.fu-berlin.de</description><table><name>hrsc3nd.epn_core</name><description>EPN-TAP access to HRSC level 3 panchromatic image data</description><utype>ivo://vopdc.obspm/std/epncore#schema-2.0</utype><column><name>granule_uid</name><description>Internal table row index Unique ID in data service, also in v2. Can be alphanumeric.</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>granule_gid</name><description>Common to granules of same type (e.g. same map projection, or geometry data products). Can be alphanumeric.</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>obs_id</name><description>Associates granules derived from the same data (e.g. various representations/processing levels). Can be alphanumeric, may be the ID of original observation.</description><ucd>meta.id</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType></column><column><name>dataproduct_type</name><description>The high-level organization of the data product, from enumerated list (e.g., 'im' for image, sp for spectrum)</description><ucd>meta.code.class</ucd><utype>Epn.dataProductType</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_name</name><description>Standard IAU name of target (from a list related to target class), case sensitive</description><ucd>meta.id;src</ucd><utype>Epn.TargetName</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>target_class</name><description>Type of target, from enumerated list</description><ucd>meta.code.class;src</ucd><utype>Epn.TargetClass</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>time_min</name><description>Acquisition start time (in JD)</description><unit>d</unit><ucd>time.start</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>time_max</name><description>Acquisition stop time (in JD)</description><unit>d</unit><ucd>time.end</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>time_sampling_step_min</name><description>Sampling time for measurements of dynamical phenomena, lower limit.</description><unit>s</unit><ucd>time.interval;stat.min</ucd><utype>Epn.Time.Time_sampling_step_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>time_sampling_step_max</name><description>Sampling time for measurements of dynamical phenomena, upper limit</description><unit>s</unit><ucd>time.interval;stat.max</ucd><utype>Epn.Time.Time_sampling_step_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>time_exp_min</name><description>Integration time of the measurement, lower limit.</description><unit>s</unit><ucd>time.duration;obs.exposure;stat.min</ucd><utype>Epn.Time.Time_exp_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>time_exp_max</name><description>Integration time of the measurement, upper limit</description><unit>s</unit><ucd>time.duration;obs.exposure;stat.max</ucd><utype>Epn.Time.Time_exp_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_range_min</name><description>Spectral range (frequency), lower limit.</description><unit>Hz</unit><ucd>em.freq;stat.min</ucd><utype>Epn.Spectral.Spectral_range_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_range_max</name><description>Spectral range (frequency), upper limit</description><unit>Hz</unit><ucd>em.freq;stat.max</ucd><utype>Epn.Spectral.Spectral_range_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_sampling_step_min</name><description>spectral sampling step, lower limit.</description><unit>Hz</unit><ucd>em.freq.step;stat.min</ucd><utype>Epn.Spectral.Spectral_sampling_step_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_sampling_step_max</name><description>spectral sampling step, upper limit</description><unit>Hz</unit><ucd>em.freq.step;stat.max</ucd><utype>Epn.Spectral.Spectral_sampling_step_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_resolution_min</name><description>Sectral resolution, lower limit.</description><unit>Hz</unit><ucd>spect.resolution;stat.min</ucd><utype>Epn.Spectral.Spectral_resolution_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spectral_resolution_max</name><description>Sectral resolution, upper limit</description><unit>Hz</unit><ucd>spect.resolution;stat.max</ucd><utype>Epn.Spectral.Spectral_resolution_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c1min</name><description>Longitude on body, lower limit.</description><unit>deg</unit><ucd>pos.bodyrc.long;stat.min</ucd><utype>Epn.Spatial.Spatial_range.c1min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c1max</name><description>Longitude on body, upper limit</description><unit>deg</unit><ucd>pos.bodyrc.long;stat.max</ucd><utype>Epn.Spatial.Spatial_range.c1max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c2min</name><description>Latitude on body, lower limit.</description><unit>deg</unit><ucd>pos.bodyrc.lat;stat.min</ucd><utype>Epn.Spatial.Spatial_range.c2min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c2max</name><description>Latitude on body, upper limit</description><unit>deg</unit><ucd>pos.bodyrc.lat;stat.max</ucd><utype>Epn.Spatial.Spatial_range.c2max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c3min</name><description>Height over defined null, lower limit.</description><unit>m</unit><ucd>pos.bodyrc.alt;stat.min</ucd><utype>Epn.Spatial.Spatial_range.c3min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c3max</name><description>Height over defined null, upper limit</description><unit>m</unit><ucd>pos.bodyrc.alt;stat.max</ucd><utype>Epn.Spatial.Spatial_range.c3max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>ObsCore-like footprint, valid for celestial, spherical, or body-fixed frames.</description><ucd>phys.outline;obs.field</ucd><dataType arraysize="*" extendedType="adql:REGION" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>c1_resol_min</name><description>Resolution in the first coordinate, lower limit.</description><unit>deg</unit><ucd>pos.resolution;stat.min</ucd><utype>Epn.Spatial.Spatial_resolution.c1_resol_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c1_resol_max</name><description>Resolution in the first coordinate, upper limit</description><unit>deg</unit><ucd>pos.resolution;stat.max</ucd><utype>Epn.Spatial.Spatial_resolution.c1_resol_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c2_resol_min</name><description>Resolution in the second coordinate, lower limit.</description><unit>deg</unit><ucd>pos.resolution;stat.min</ucd><utype>Epn.Spatial.Spatial_resolution.c2_resol_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c2_resol_max</name><description>Resolution in the second coordinate, upper limit</description><unit>deg</unit><ucd>pos.resolution;stat.max</ucd><utype>Epn.Spatial.Spatial_resolution.c2_resol_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c3_resol_min</name><description>Resolution in the third coordinate, lower limit.</description><unit>m</unit><ucd>pos.resolution;stat.min</ucd><utype>Epn.Spatial.Spatial_resolution.c3_resol_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>c3_resol_max</name><description>Resolution in the third coordinate, upper limit</description><unit>m</unit><ucd>pos.resolution;stat.max</ucd><utype>Epn.Spatial.Spatial_resolution.c3_resol_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>spatial_frame_type</name><description>Flavor of coordinate system, defines the nature of coordinates. From enumerated list</description><ucd>meta.code.class;pos.frame</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>incidence_min</name><description>Incidence angle (solar zenithal angle) during data acquisition, lower limit.</description><unit>deg</unit><ucd>pos.posAng;stat.min</ucd><utype>Epn.View_angle.Incidence_angle_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>incidence_max</name><description>Incidence angle (solar zenithal angle) during data acquisition, upper limit</description><unit>deg</unit><ucd>pos.posAng;stat.max</ucd><utype>Epn.View_angle.Incidence_angle_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>emergence_min</name><description>Emergence angle during data acquisition, lower limit.</description><unit>deg</unit><ucd>pos.posAng;stat.min</ucd><utype>Epn.View_angle.Emergence_angle_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>emergence_max</name><description>Emergence angle during data acquisition, upper limit</description><unit>deg</unit><ucd>pos.posAng;stat.max</ucd><utype>Epn.View_angle.Emergence_angle_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>phase_min</name><description>Phase angle during data acquisition, lower limit.</description><unit>deg</unit><ucd>pos.phaseAng;stat.min</ucd><utype>Epn.View_angle.Phase_angle_min</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>phase_max</name><description>Phase angle during data acquisition, upper limit</description><unit>deg</unit><ucd>pos.phaseAng;stat.max</ucd><utype>Epn.View_angle.Phase_angle_max</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>instrument_host_name</name><description>Standard name of the observatory or spacecraft.</description><ucd>meta.id;instr.obsty</ucd><utype>Provenance.ObsConfig.Facility.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>instrument_name</name><description>Standard name of instrument</description><ucd>meta.id;instr</ucd><utype>Provenance.ObsConfig.Instrument.name</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>measurement_type</name><description>UCD(s) defining the data, with multiple entries separated by hash (#) characters.</description><ucd>meta.ucd</ucd><utype>Epn.Measurement_type</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>processing_level</name><description>CODMAC calibration level; see the et_cal note http://dc.g-vo.org/tableinfo/titan.epn_core#note-et_cal for what values are defined here.</description><ucd>meta.code;obs.calib</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>creation_date</name><description>Date of first entry of this granule</description><ucd>time.creation</ucd><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>modification_date</name><description>Date of last modification (used to handle mirroring)</description><ucd>time.update</ucd><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>release_date</name><description>Start of public access period</description><ucd>time.release</ucd><dataType arraysize="19" extendedType="timestamp" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>service_title</name><description>Title of resource (an acronym really, will be used to handle multiservice results)</description><ucd>meta.title</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_url</name><description>URL of the data file, case sensitive. If present, next 2 paramenters must be present.</description><ucd>meta.ref.url;meta.file</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_format</name><description>File format type</description><ucd>meta.code.mime</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>access_estsize</name><description>Estimate file size in kbyte (with this spelling)</description><ucd>phys.size;meta.file</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>bib_reference</name><description>Bibcode preferred if available (does that include link?), doi, or other biblio id, URL</description><ucd>meta.bib</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>thumbnail_url</name><description>URL of a thumbnail image with predefined size (png ~200 pix, for use in a client only)</description><ucd>meta.ref.url;meta.preview</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>external_link</name><description>URL of the preview link</description><ucd>meta.ref.url</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>solar_longitude_min</name><description>Solar longitude (minimum)</description><ucd>pos.ecliptic.lon;pos.heliocentric;stat.min</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>solar_longitude_max</name><description>Solar longitude (maximum)</description><ucd>pos.ecliptic.lon;pos.heliocentric;stat.max</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>filter</name><description>Filter name</description><ucd>meta.id;instr.filter</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>reflectance_scaling_factor</name><description>Reflectance scaling factor</description><ucd>arith.factor</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>reflectance_offset</name><description>Reflectance offset</description><ucd>arith.zp</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>radiance_scaling_factor</name><description>Radiance scaling factor</description><ucd>arith.factor</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>radiance_offset</name><description>Radiance offset (unit: W*m**-2*sr**-1)</description><ucd>arith.zp</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>map_projection</name><description>Map projection parameters in libproj notation</description><ucd>pos.projection</ucd><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column><column><name>grid_size</name><description>Meters per pixel</description><ucd>pos.wcs.scale</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column><column><name>best_ground_sampling</name><description>Meters per pixel</description><ucd>pos.wcs.scale</ucd><dataType arraysize="1" xsi:type="vs:VOTableType">float</dataType><flag>nullable</flag></column></table></schema><schema><name>ivoa</name><description>Definition and support code for the ObsCore data model and table.</description><table><name>ivoa.obscore</name><description>The IVOA-defined obscore table, containing generic metadata for
datasets within this datacenter.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.id</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.id</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 arraysize="1" 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.url;meta.curation</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><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 arraysize="1" 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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>phys.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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType arraysize="1" 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, as MJD</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exporure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType arraysize="1" 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 arraysize="1" 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 arraysize="1" xsi:type="vs:VOTableType">double</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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power delta lambda/lamda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table><table><name>ivoa.emptyobscore</name><description>An empty table having all columns of the obscore table. Useful
internally, and sometimes for tricky queries.</description><column><name>dataproduct_type</name><description>High level scientific classification of the data product, taken from an enumeration</description><ucd>meta.id</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.id</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 arraysize="1" 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.url;meta.curation</ucd><utype>obscore:curation.publisherdid</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><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 arraysize="1" 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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>s_region</name><description>Region covered by the observation, as a polygon</description><ucd>phys.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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_min</name><description>Lower bound of times represented in the data set, as MJD</description><unit>d</unit><ucd>time.start;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.starttime</utype><dataType arraysize="1" 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, as MJD</description><unit>d</unit><ucd>time.end;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.bounds.limits.stoptime</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>t_exptime</name><description>Total exporure time</description><unit>s</unit><ucd>time.duration;obs.exposure</ucd><utype>obscore:char.timeaxis.coverage.support.extent</utype><dataType arraysize="1" 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 arraysize="1" 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 arraysize="1" xsi:type="vs:VOTableType">double</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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_res_power</name><description>Spectral resolving power delta lambda/lamda</description><ucd>spect.resolution</ucd><utype>obscore:char.spectralaxis.resolution.resolpower.refval</utype><dataType arraysize="1" xsi:type="vs:VOTableType">double</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">long</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 arraysize="1" xsi:type="vs:VOTableType">double</dataType><flag>nullable</flag></column><column><name>em_ucd</name><description>Nature of the product's spectral axis</description><ucd>meta.ucd</ucd><utype>obscore:Char.SpectralAxis.ucd</utype><dataType arraysize="*" xsi:type="vs:VOTableType">char</dataType><flag>nullable</flag></column></table></schema><schema><name>tap_schema</name><description> Planetary web services @ FUB's Table Access Protocol (TAP) service with
table metadata.</description><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">char</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></table><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">char</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 arraysize="1" 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></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 arraysize="1" xsi:type="vs:VOTableType">int</dataType><flag>nullable</flag></column><column><name>principal</name><description>Is column principal?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>indexed</name><description>Is there an index on this column?</description><dataType arraysize="1" xsi:type="vs:VOTableType">int</dataType></column><column><name>std</name><description>Is this a standard column?</description><dataType arraysize="1" 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 arraysize="1" 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.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">char</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></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></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 withing 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></tableset></ri:Resource>