diff --git a/CHANGES.rst b/CHANGES.rst index 17d18cca80..4248836c62 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,11 @@ New Tools and Services API changes ----------- +eso +^^^ + +- Deprecated ``open_form`` and ``cache`` in query functions [#3339] + gaia ^^^^ @@ -32,6 +37,15 @@ esa.euclid - New method, get_scientific_product_list, to retrieve scientific LE3 products. [#3313] +eso +^^^ + +- Switch querying interface from WDB to TAP in querying functions. [#3339] +- Allow plain ADQL queries via ``query_tap_service`` (with authentication as well). [#3339] +- Cone search using ``cone_ra`, ``cone_dec`, ``cone_radius`` arguments. [#3339] +- Retrieve record count before querying the archive, via ``count_only`` argument. [#3339] +- Ask query functions to print the underlying ADQL queries without issuing them. [#3339] + gaia ^^^^ diff --git a/astroquery/eso/__init__.py b/astroquery/eso/__init__.py index af287ef28a..c2b0e466fa 100644 --- a/astroquery/eso/__init__.py +++ b/astroquery/eso/__init__.py @@ -11,14 +11,14 @@ class Conf(_config.ConfigNamespace): """ row_limit = _config.ConfigItem( - 50, + 1000, 'Maximum number of rows returned (set to -1 for unlimited).') username = _config.ConfigItem( "", 'Optional default username for ESO archive.') - query_instrument_url = _config.ConfigItem( - "http://archive.eso.org/wdb/wdb/eso", - 'Root query URL for main and instrument queries.') + tap_url = _config.ConfigItem( + "https://archive.eso.org/tap_obs", + 'URL for TAP queries.') conf = Conf() diff --git a/astroquery/eso/core.py b/astroquery/eso/core.py index 421e6fd81a..0f812980cf 100644 --- a/astroquery/eso/core.py +++ b/astroquery/eso/core.py @@ -1,59 +1,55 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst +""" +===================== +ESO Astroquery Module +===================== +European Southern Observatory (ESO) +""" import base64 import email +import functools import json +import os import os.path +import sys import re import shutil import subprocess import time import warnings -import webbrowser import xml.etree.ElementTree as ET -from io import BytesIO -from typing import List, Optional, Tuple, Dict, Set +from typing import List, Optional, Tuple, Dict, Set, Union import astropy.utils.data import keyring -import requests.exceptions +import requests from astropy.table import Table, Column from astropy.utils.decorators import deprecated_renamed_argument from bs4 import BeautifulSoup +from pyvo.dal import TAPService +from pyvo.dal.exceptions import DALQueryError, DALFormatError from astroquery import log from . import conf -from ..exceptions import RemoteServiceError, NoResultsWarning, LoginError +from ..exceptions import RemoteServiceError, LoginError, \ + NoResultsWarning, MaxResultsWarning from ..query import QueryWithLogin from ..utils import schema - -__doctest_skip__ = ['EsoClass.*'] - - -def _check_response(content): - """ - Check the response from an ESO service query for various types of error - - If all is OK, return True - """ - if b"NETWORKPROBLEM" in content: - raise RemoteServiceError("The query resulted in a network " - "problem; the service may be offline.") - elif b"# No data returned !" not in content: - return True +from .utils import _UserParams, raise_if_coords_not_valid, _reorder_columns, \ + _raise_if_has_deprecated_keys, _build_adql_string, \ + DEFAULT_LEAD_COLS_PHASE3, DEFAULT_LEAD_COLS_RAW class CalSelectorError(Exception): """ Raised on failure to parse CalSelector's response. """ - pass -class AuthInfo: - def __init__(self, username: str, password: str, token: str): +class _AuthInfo: + def __init__(self, username: str, token: str): self.username = username - self.password = password self.token = token self.expiration_time = self._get_exp_time_from_token() @@ -62,15 +58,52 @@ def _get_exp_time_from_token(self) -> int: decoded_token = base64.b64decode(self.token.split(".")[1] + "==") return int(json.loads(decoded_token)['exp']) - def expired(self) -> bool: + def _expired(self) -> bool: # we anticipate the expiration time by 10 minutes to avoid issues return time.time() > self.expiration_time - 600 +class _EsoNames: + raw_table = "dbo.raw" + phase3_table = "ivoa.ObsCore" + raw_instruments_column = "instrument" + phase3_surveys_column = "obs_collection" + + @staticmethod + def ist_table(instrument_name): + """ + Returns the name of the instrument specific table (IST) + """ + return f"ist.{instrument_name}" + + apex_quicklooks_table = ist_table.__func__("apex_quicklooks") + apex_quicklooks_pid_column = "project_id" + + +def unlimited_maxrec(func): + """ + decorator to overwrite maxrec for specific queries + """ + @functools.wraps(func) + def wrapper(self, *args, **kwargs): + if not isinstance(self, EsoClass): + raise ValueError(f"Expecting EsoClass, found {type(self)}") + + tmpvar = self.maxrec + try: + self.maxrec = sys.maxsize + result = func(self, *args, **kwargs) + finally: + self.maxrec = tmpvar + return result + return wrapper + + class EsoClass(QueryWithLogin): - ROW_LIMIT = conf.row_limit + """ + User facing class to query the ESO archive + """ USERNAME = conf.username - QUERY_INSTRUMENT_URL = conf.query_instrument_url CALSELECTOR_URL = "https://archive.eso.org/calselector/v1/associations" DOWNLOAD_URL = "https://dataportal.eso.org/dataPortal/file/" AUTH_URL = "https://www.eso.org/sso/oidc/token" @@ -78,152 +111,37 @@ class EsoClass(QueryWithLogin): def __init__(self): super().__init__() - self._instrument_list = None - self._survey_list = None - self._auth_info: Optional[AuthInfo] = None + self._auth_info: Optional[_AuthInfo] = None + self._hash = None + self._maxrec = None + self.maxrec = conf.row_limit - def _activate_form(self, response, *, form_index=0, form_id=None, inputs={}, - cache=True, method=None): + @property + def maxrec(self): """ - Parameters - ---------- - method: None or str - Can be used to override the form-specified method + Getter of the maxrec attribute + Safeguard that truncates the number of records returned by a query """ - # Extract form from response - root = BeautifulSoup(response.content, 'html5lib') - if form_id is None: - form = root.find_all('form')[form_index] - else: - form = root.find_all('form', id=form_id)[form_index] - # Construct base url - form_action = form.get('action') - if "://" in form_action: - url = form_action - elif form_action.startswith('/'): - url = '/'.join(response.url.split('/', 3)[:3]) + form_action + return self._maxrec + + @maxrec.setter + def maxrec(self, value): + mr = self._maxrec + + # type check + if not (value is None or isinstance(value, int)): + raise TypeError(f"maxrec attribute must be of type int or None; found {type(value)}") + + if value is None or value < 1: + mr = sys.maxsize else: - url = response.url.rsplit('/', 1)[0] + '/' + form_action - # Identify payload format - fmt = None - form_method = form.get('method').lower() - if form_method == 'get': - fmt = 'get' # get(url, params=payload) - elif form_method == 'post': - if 'enctype' in form.attrs: - if form.attrs['enctype'] == 'multipart/form-data': - fmt = 'multipart/form-data' # post(url, files=payload) - elif form.attrs['enctype'] == 'application/x-www-form-urlencoded': - fmt = 'application/x-www-form-urlencoded' # post(url, data=payload) - else: - raise Exception("enctype={0} is not supported!".format(form.attrs['enctype'])) - else: - fmt = 'application/x-www-form-urlencoded' # post(url, data=payload) - # Extract payload from form - payload = [] - for form_elem in form.find_all(['input', 'select', 'textarea']): - value = None - is_file = False - tag_name = form_elem.name - key = form_elem.get('name') - if tag_name == 'input': - is_file = (form_elem.get('type') == 'file') - value = form_elem.get('value') - if form_elem.get('type') in ['checkbox', 'radio']: - if form_elem.has_attr('checked'): - if not value: - value = 'on' - else: - value = None - elif tag_name == 'select': - if form_elem.get('multiple') is not None: - value = [] - if form_elem.select('option[value]'): - for option in form_elem.select('option[value]'): - if option.get('selected') is not None: - value.append(option.get('value')) - else: - for option in form_elem.select('option'): - if option.get('selected') is not None: - # bs4 NavigableString types have bad, - # undesirable properties that result - # in recursion errors when caching - value.append(str(option.string)) - else: - if form_elem.select('option[value]'): - for option in form_elem.select('option[value]'): - if option.get('selected') is not None: - value = option.get('value') - # select the first option field if none is selected - if value is None: - value = form_elem.select( - 'option[value]')[0].get('value') - else: - # survey form just uses text, not value - for option in form_elem.select('option'): - if option.get('selected') is not None: - value = str(option.string) - # select the first option field if none is selected - if value is None: - value = str(form_elem.select('option')[0].string) - - if key in inputs: - if isinstance(inputs[key], list): - # list input is accepted (for array uploads) - value = inputs[key] - else: - value = str(inputs[key]) - - if (key is not None): # and (value is not None): - if fmt == 'multipart/form-data': - if is_file: - payload.append( - (key, ('', '', 'application/octet-stream'))) - else: - if type(value) is list: - for v in value: - entry = (key, ('', v)) - # Prevent redundant key, value pairs - # (can happen if the form repeats them) - if entry not in payload: - payload.append(entry) - elif value is None: - entry = (key, ('', '')) - if entry not in payload: - payload.append(entry) - else: - entry = (key, ('', value)) - if entry not in payload: - payload.append(entry) - else: - if type(value) is list: - for v in value: - entry = (key, v) - if entry not in payload: - payload.append(entry) - else: - entry = (key, value) - if entry not in payload: - payload.append(entry) - - # for future debugging - self._payload = payload - log.debug("Form: payload={0}".format(payload)) - - if method is not None: - fmt = method - - log.debug("Method/format = {0}".format(fmt)) - - # Send payload - if fmt == 'get': - response = self._request("GET", url, params=payload, cache=cache) - elif fmt == 'multipart/form-data': - response = self._request("POST", url, files=payload, cache=cache) - elif fmt == 'application/x-www-form-urlencoded': - response = self._request("POST", url, data=payload, cache=cache) - - return response + mr = value + + self._maxrec = mr + + def _tap_url(self) -> str: + url = os.environ.get('ESO_TAP_URL', conf.tap_url) + return url def _authenticate(self, *, username: str, password: str) -> bool: """ @@ -240,7 +158,7 @@ def _authenticate(self, *, username: str, password: str) -> bool: response = self._request('GET', self.AUTH_URL, params=url_params) if response.status_code == 200: token = json.loads(response.content)['id_token'] - self._auth_info = AuthInfo(username=username, password=password, token=token) + self._auth_info = _AuthInfo(username=username, token=token) log.info("Authentication successful!") return True else: @@ -271,8 +189,8 @@ def _get_auth_info(self, username: str, *, store_password: bool = False, return username, password - def _login(self, *, username: str = None, store_password: bool = False, - reenter_password: bool = False) -> bool: + def _login(self, username: str = None, store_password: bool = False, + reenter_password: bool = False, **kwargs) -> bool: """ Login to the ESO User Portal. @@ -282,11 +200,11 @@ def _login(self, *, username: str = None, store_password: bool = False, Username to the ESO Public Portal. If not given, it should be specified in the config file. store_password : bool, optional - Stores the password securely in your keyring. Default is False. + Stores the password securely in your keyring. Default is `False`. reenter_password : bool, optional Asks for the password even if it is already stored in the keyring. This is the way to overwrite an already stored passwork - on the keyring. Default is False. + on the keyring. Default is `False`. """ username, password = self._get_auth_info(username=username, @@ -296,248 +214,468 @@ def _login(self, *, username: str = None, store_password: bool = False, return self._authenticate(username=username, password=password) def _get_auth_header(self) -> Dict[str, str]: - if self._auth_info and self._auth_info.expired(): - log.info("Authentication token has expired! Re-authenticating ...") - self._authenticate(username=self._auth_info.username, - password=self._auth_info.password) - if self._auth_info and not self._auth_info.expired(): + if self._auth_info and self._auth_info._expired(): + raise LoginError( + "Authentication token has expired! Please log in again." + ) + if self._auth_info and not self._auth_info._expired(): return {'Authorization': 'Bearer ' + self._auth_info.token} else: return {} - def list_instruments(self, *, cache=True): - """ List all the available instrument-specific queries offered by the ESO archive. + def _maybe_warn_about_table_length(self, table): + """ + Issues a warning when a table is empty or when the + results are truncated + """ + if len(table) < 1: + warnings.warn("Query returned no results", NoResultsWarning) + + if len(table) == self.maxrec: + warnings.warn(f"Results truncated to {self.maxrec}. " + "To retrieve all the records set to None the maxrec attribute", + MaxResultsWarning) + + def _try_download_pyvo_table(self, + query_str: str, + tap: TAPService) -> Optional[Table]: + table_to_return = Table() + + def message(query_str): + return (f"Error executing the following query:\n\n" + f"{query_str}\n\n" + "See examples here: https://archive.eso.org/tap_obs/examples\n\n" + f"For maximum query freedom use the query_tap method:\n\n" + f' >>> Eso().query_tap( "{query_str}" )\n\n') + + try: + table_to_return = tap.search(query=query_str, maxrec=self.maxrec).to_table() + self._maybe_warn_about_table_length(table_to_return) + except DALQueryError: + log.error(message(query_str)) + except DALFormatError as e: + raise DALFormatError(message(query_str) + f"cause: {e.cause}") from e + except Exception as e: + raise RuntimeError( + f"Unhandled exception {type(e)}\n" + message(query_str)) from e + + return table_to_return + + def tap(self, authenticated: bool = False) -> TAPService: + + if authenticated and not self.authenticated(): + raise LoginError( + "It seems you are trying to issue an authenticated query without " + "being authenticated. Possible solutions:\n" + "1. Set the query function argument authenticated=False" + " OR\n" + "2. Login with your username and password: " + ".login(username=" + ) + + log.debug(f"Querying from {self._tap_url()}") + if authenticated: + h = self._get_auth_header() + self._session.headers = {**self._session.headers, **h} + tap_service = TAPService(self._tap_url(), session=self._session) + else: + tap_service = TAPService(self._tap_url()) + + return tap_service + + def query_tap(self, + query: str, *, + authenticated: bool = False, + ) -> Table: + """ + Query the ESO TAP service using a free ADQL string. + + Parameters + ---------- + query_str : str + The ADQL query string to be executed. + authenticated : bool, optional + If ``True``, the query is run as an authenticated user. + Authentication must be performed beforehand via + :meth:`astroquery.eso.EsoClass.login`. Authenticated queries + may be slower. Default is ``False``. + + Returns + ------- + astropy.table.Table + + Examples + -------- + from astroquery.eso import Eso + eso_instance = Eso() + eso_instance.query_tap("SELECT * FROM ivoa.ObsCore") + """ + table_to_return = Table() + tap_service = self.tap(authenticated) + table_to_return = self._try_download_pyvo_table(query, tap_service) + return table_to_return + + @unlimited_maxrec + @deprecated_renamed_argument('cache', None, since='0.4.11') + def list_instruments(self, cache=True) -> List[str]: + """ + List all the available instrument-specific queries offered by the ESO archive. Returns ------- instrument_list : list of strings cache : bool - Defaults to True. If set overrides global caching behavior. - See :ref:`caching documentation `. + Deprecated - unused. + """ + _ = cache # We're aware about disregarding the argument + query_str = ("select table_name from TAP_SCHEMA.tables " + "where schema_name='ist' order by table_name") + res = self.query_tap(query_str)["table_name"].data + + l_res = list(res) + + # Remove ist.apex_quicklooks, which is not actually a raw instrument + if _EsoNames.apex_quicklooks_table in l_res: + l_res.remove(_EsoNames.apex_quicklooks_table) + + l_res = list(map(lambda x: x.split(".")[1], l_res)) + return l_res + + @unlimited_maxrec + @deprecated_renamed_argument('cache', None, since='0.4.11') + def list_surveys(self, *, cache=True) -> List[str]: """ - if self._instrument_list is None: - url = "http://archive.eso.org/cms/eso-data/instrument-specific-query-forms.html" - instrument_list_response = self._request("GET", url, cache=cache) - root = BeautifulSoup(instrument_list_response.content, 'html5lib') - self._instrument_list = [] - for element in root.select("div[id=col3] a[href]"): - href = element.attrs["href"] - if u"http://archive.eso.org/wdb/wdb/eso" in href: - instrument = href.split("/")[-2] - if instrument not in self._instrument_list: - self._instrument_list.append(instrument) - return self._instrument_list - - def list_surveys(self, *, cache=True): - """ List all the available surveys (phase 3) in the ESO archive. + List all the available surveys (phase 3) in the ESO archive. Returns ------- - survey_list : list of strings + collection_list : list of strings cache : bool - Defaults to True. If set overrides global caching behavior. - See :ref:`caching documentation `. + Deprecated - unused. """ - if self._survey_list is None: - survey_list_response = self._request( - "GET", "http://archive.eso.org/wdb/wdb/adp/phase3_main/form", - cache=cache) - root = BeautifulSoup(survey_list_response.content, 'html5lib') - self._survey_list = [] - collections_table = root.find('table', id='collections_table') - other_collections = root.find('select', id='collection_name_option') - # it is possible to have empty collections or other collections... - collection_elts = (collections_table.find_all('input', type='checkbox') - if collections_table is not None - else []) - other_elts = (other_collections.find_all('option') - if other_collections is not None - else []) - for element in (collection_elts + other_elts): - if 'value' in element.attrs: - survey = element.attrs['value'] - if survey and survey not in self._survey_list and 'Any' not in survey: - self._survey_list.append(survey) - return self._survey_list - - def query_surveys(self, *, surveys='', cache=True, - help=False, open_form=False, **kwargs): + _ = cache # We're aware about disregarding the argument + t = _EsoNames.phase3_table + c = _EsoNames.phase3_surveys_column + query_str = f"select distinct {c} from {t}" + res = list(self.query_tap(query_str)[c].data) + return res + + @unlimited_maxrec + def list_column(self, table_name: str) -> None: + """ + Prints the columns contained in a given table + """ + help_query = ( + f"select column_name, datatype, xtype, unit " + # TODO: The column description renders output unmanageable + # f", description " + f"from TAP_SCHEMA.columns " + f"where table_name = '{table_name}'") + available_cols = self.query_tap(help_query) + + count_query = f"select count(*) from {table_name}" + num_records = list(self.query_tap(count_query)[0].values())[0] + + # All this block is to print nicely... + # This whole function should be better written and the output + # shown tidier + nlines = len(available_cols) + 2 + n_ = astropy.conf.max_lines + m_ = astropy.conf.max_width + astropy.conf.max_lines = nlines + astropy.conf.max_width = sys.maxsize + log.info(f"\nColumns present in the table {table_name}:\n{available_cols}\n" + f"\nNumber of records present in the table {table_name}:\n{num_records}\n") + astropy.conf.max_lines = n_ + astropy.conf.max_width = m_ + + def _query_on_allowed_values( + self, + user_params: _UserParams + ) -> Union[Table, int, str, None]: + if user_params.print_help: + self.list_column(user_params.table_name) + return + + _raise_if_has_deprecated_keys(user_params.column_filters) + + raise_if_coords_not_valid(user_params.cone_ra, user_params.cone_dec, user_params.cone_radius) + + query = _build_adql_string(user_params) + + if user_params.get_query_payload: + return query + + ret_table = self.query_tap(query=query, authenticated=user_params.authenticated) + return list(ret_table[0].values())[0] if user_params.count_only else ret_table + + @deprecated_renamed_argument(('open_form', 'cache'), (None, None), + since=['0.4.11', '0.4.11']) + def query_surveys( + self, + surveys: Union[List[str], str] = None, *, + cone_ra: float = None, cone_dec: float = None, cone_radius: float = None, + columns: Union[List, str] = None, + column_filters: Optional[dict] = None, + top: int = None, + count_only: bool = False, + get_query_payload: bool = False, + help: bool = False, + authenticated: bool = False, + open_form: bool = False, cache: bool = False, + ) -> Union[Table, int, str]: """ Query survey Phase 3 data contained in the ESO archive. Parameters ---------- - survey : string or list - Name of the survey(s) to query. Should beone or more of the - names returned by `~astroquery.eso.EsoClass.list_surveys`. If - specified as a string, should be a comma-separated list of - survey names. - cache : bool - Defaults to True. If set overrides global caching behavior. - See :ref:`caching documentation `. + surveys : str or list, optional + Name of the survey(s) to query. Should be one or more of the + names returned by :meth:`~astroquery.eso.EsoClass.list_surveys`. If specified + as a string, it should be a comma-separated list of survey names. + If not specified, returns records relative to all surveys. Default is ``None``. + cone_ra : float, optional + Cone Search Center - Right Ascension in degrees. + cone_dec : float, optional + Cone Search Center - Declination in degrees. + cone_radius : float, optional + Cone Search Radius in degrees. + columns : str or list of str, optional + Name of the columns the query should return. If specified as a string, + it should be a comma-separated list of column names. + top : int, optional + When set to ``N``, returns only the top ``N`` records. + count_only : bool, optional + If ``True``, returns only an ``int``: the count of the records + the query would return when set to ``False``. Default is ``False``. + get_query_payload : bool, optional + If ``True``, returns only a ``str``: the query string that + would be issued to the TAP service. Default is ``False``. + help : bool, optional + If ``True``, prints all the parameters accepted in ``column_filters`` + and ``columns``. Default is ``False``. + authenticated : bool, optional + If ``True``, runs the query as an authenticated user. + Authentication must be done beforehand via + :meth:`~astroquery.eso.EsoClass.login`. Authenticated queries may be slower. + Default is ``False``. + column_filters : dict or None, optional + Constraints applied to the query in ADQL syntax, + e.g., ``{"exp_start": "between '2024-12-31' and '2025-12-31'"}``. + Default is ``None``. + open_form : bool, optional + **Deprecated** - unused. + cache : bool, optional + **Deprecated** - unused. Returns ------- - table : `~astropy.table.Table` or `None` - A table representing the data available in the archive for the - specified survey, matching the constraints specified in ``kwargs``. - The number of rows returned is capped by the ROW_LIMIT - configuration item. `None` is returned when the query has no - results. - + astropy.table.Table, str, int or None + - By default, returns an :class:`~astropy.table.Table` containing records + based on the specified columns and constraints. + Returns ``None`` if the query has no results. + - When ``count_only`` is ``True``, returns an ``int`` representing the + record count for the specified filters. + - When ``get_query_payload`` is ``True``, returns the query string that + would be issued to the TAP service given the specified arguments. """ - - url = "http://archive.eso.org/wdb/wdb/adp/phase3_main/form" - if open_form: - webbrowser.open(url) - elif help: - self._print_surveys_help(url, cache=cache) - else: - survey_form = self._request("GET", url, cache=cache) - query_dict = kwargs - query_dict["wdbo"] = "csv/download" - if isinstance(surveys, str): - surveys = surveys.split(",") - query_dict['collection_name'] = surveys - if self.ROW_LIMIT >= 0: - query_dict["max_rows_returned"] = int(self.ROW_LIMIT) - else: - query_dict["max_rows_returned"] = 10000 - - survey_response = self._activate_form(survey_form, form_index=0, - form_id='queryform', - inputs=query_dict, cache=cache) - - content = survey_response.content - # First line is always garbage - content = content.split(b'\n', 1)[1] - log.debug("Response content:\n{0}".format(content)) - if _check_response(content): - table = Table.read(BytesIO(content), format="ascii.csv", - comment="^#") - return table - else: - warnings.warn("Query returned no results", NoResultsWarning) - - def query_main(self, *, column_filters={}, columns=[], - open_form=False, help=False, cache=True, **kwargs): + _ = open_form, cache # make explicit that we are aware these arguments are unused + column_filters = column_filters if column_filters else {} + user_params = _UserParams(table_name=_EsoNames.phase3_table, + column_name=_EsoNames.phase3_surveys_column, + allowed_values=surveys, + cone_ra=cone_ra, + cone_dec=cone_dec, + cone_radius=cone_radius, + columns=columns, + column_filters=column_filters, + top=top, + count_only=count_only, + get_query_payload=get_query_payload, + print_help=help, + authenticated=authenticated, + ) + t = self._query_on_allowed_values(user_params=user_params) + t = _reorder_columns(t, DEFAULT_LEAD_COLS_PHASE3) + return t + + @deprecated_renamed_argument(('open_form', 'cache'), (None, None), + since=['0.4.11', '0.4.11']) + def query_main( + self, + instruments: Union[List[str], str] = None, *, + cone_ra: float = None, cone_dec: float = None, cone_radius: float = None, + columns: Union[List, str] = None, + column_filters: Optional[dict] = None, + top: int = None, + count_only: bool = False, + get_query_payload: bool = False, + help: bool = False, + authenticated: bool = False, + open_form: bool = False, cache: bool = False, + ) -> Union[Table, int, str]: """ - Query raw data contained in the ESO archive. + Query raw data from all instruments contained in the ESO archive. Parameters ---------- - column_filters : dict - Constraints applied to the query. - columns : list of strings - Columns returned by the query. - open_form : bool - If `True`, opens in your default browser the query form - for the requested instrument. - help : bool - If `True`, prints all the parameters accepted in - ``column_filters`` and ``columns`` for the requested - ``instrument``. - cache : bool - Defaults to True. If set overrides global caching behavior. - See :ref:`caching documentation `. + instruments : str or list, optional + Name of the instruments to filter. Should be one or more of the + names returned by :meth:`~astroquery.eso.EsoClass.list_instruments`. If specified + as a string, it should be a comma-separated list of instrument names. + If not specified, returns records relative to all instruments. Default is ``None``. + cone_ra : float, optional + Cone Search Center - Right Ascension in degrees. + cone_dec : float, optional + Cone Search Center - Declination in degrees. + cone_radius : float, optional + Cone Search Radius in degrees. + columns : str or list of str, optional + Name of the columns the query should return. If specified as a string, + it should be a comma-separated list of column names. + top : int, optional + When set to ``N``, returns only the top ``N`` records. + count_only : bool, optional + If ``True``, returns only an ``int``: the count of the records + the query would return when set to ``False``. Default is ``False``. + get_query_payload : bool, optional + If ``True``, returns only a ``str``: the query string that + would be issued to the TAP service. Default is ``False``. + help : bool, optional + If ``True``, prints all the parameters accepted in ``column_filters`` + and ``columns``. Default is ``False``. + authenticated : bool, optional + If ``True``, runs the query as an authenticated user. + Authentication must be done beforehand via + :meth:`~astroquery.eso.EsoClass.login`. Authenticated queries may be slower. + Default is ``False``. + column_filters : dict or None, optional + Constraints applied to the query in ADQL syntax, + e.g., ``{"exp_start": "between '2024-12-31' and '2025-12-31'"}``. + Default is ``None``. + open_form : bool, optional + **Deprecated** - unused. + cache : bool, optional + **Deprecated** - unused. Returns ------- - table : `~astropy.table.Table` - A table representing the data available in the archive for the - specified instrument, matching the constraints specified in - ``kwargs``. The number of rows returned is capped by the - ROW_LIMIT configuration item. - + astropy.table.Table, str, int or None + - By default, returns an :class:`~astropy.table.Table` containing records + based on the specified columns and constraints. + Returns ``None`` if the query has no results. + - When ``count_only`` is ``True``, returns an ``int`` representing the + record count for the specified filters. + - When ``get_query_payload`` is ``True``, returns the query string that + would be issued to the TAP service given the specified arguments. """ - url = self.QUERY_INSTRUMENT_URL + "/eso_archive_main/form" - return self._query(url, column_filters=column_filters, columns=columns, - open_form=open_form, help=help, cache=cache, **kwargs) - - def query_instrument(self, instrument, *, column_filters={}, columns=[], - open_form=False, help=False, cache=True, **kwargs): + _ = open_form, cache # make explicit that we are aware these arguments are unused + column_filters = column_filters if column_filters else {} + user_params = _UserParams(table_name=_EsoNames.raw_table, + column_name=_EsoNames.raw_instruments_column, + allowed_values=instruments, + cone_ra=cone_ra, + cone_dec=cone_dec, + cone_radius=cone_radius, + columns=columns, + column_filters=column_filters, + top=top, + count_only=count_only, + get_query_payload=get_query_payload, + print_help=help, + authenticated=authenticated, + ) + t = self._query_on_allowed_values(user_params) + t = _reorder_columns(t, DEFAULT_LEAD_COLS_RAW) + return t + + @deprecated_renamed_argument(('open_form', 'cache'), (None, None), + since=['0.4.11', '0.4.11']) + def query_instrument( + self, + instrument: str, *, + cone_ra: float = None, cone_dec: float = None, cone_radius: float = None, + columns: Union[List, str] = None, + column_filters: Optional[dict] = None, + top: int = None, + count_only: bool = False, + get_query_payload: bool = False, + help: bool = False, + authenticated: bool = False, + open_form: bool = False, cache: bool = False, + ) -> Union[Table, int, str]: """ Query instrument-specific raw data contained in the ESO archive. Parameters ---------- - instrument : string - Name of the instrument to query, one of the names returned by - `~astroquery.eso.EsoClass.list_instruments`. - column_filters : dict - Constraints applied to the query. - columns : list of strings - Columns returned by the query. - open_form : bool - If `True`, opens in your default browser the query form - for the requested instrument. - help : bool - If `True`, prints all the parameters accepted in - ``column_filters`` and ``columns`` for the requested - ``instrument``. - cache : bool - Defaults to True. If set overrides global caching behavior. - See :ref:`caching documentation `. + instrument : str + Name of the instrument from which raw data is to be queried. + Should be ONLY ONE of the names returned by + :meth:`~astroquery.eso.EsoClass.list_instruments`. + cone_ra : float, optional + Cone Search Center - Right Ascension in degrees. + cone_dec : float, optional + Cone Search Center - Declination in degrees. + cone_radius : float, optional + Cone Search Radius in degrees. + columns : str or list of str, optional + Name of the columns the query should return. If specified as a string, + it should be a comma-separated list of column names. + top : int, optional + When set to ``N``, returns only the top ``N`` records. + count_only : bool, optional + If ``True``, returns only an ``int``: the count of the records + the query would return when set to ``False``. Default is ``False``. + get_query_payload : bool, optional + If ``True``, returns only a ``str``: the query string that + would be issued to the TAP service. Default is ``False``. + help : bool, optional + If ``True``, prints all the parameters accepted in ``column_filters`` + and ``columns``. Default is ``False``. + authenticated : bool, optional + If ``True``, runs the query as an authenticated user. + Authentication must be done beforehand via + :meth:`~astroquery.eso.EsoClass.login`. Note that authenticated queries are slower. + Default is ``False``. + column_filters : dict or None, optional + Constraints applied to the query in ADQL syntax, + e.g., ``{"exp_start": "between '2024-12-31' and '2025-12-31'"}``. + Default is ``None``. + open_form : bool, optional + **Deprecated** - unused. + cache : bool, optional + **Deprecated** - unused. Returns ------- - table : `~astropy.table.Table` - A table representing the data available in the archive for the - specified instrument, matching the constraints specified in - ``kwargs``. The number of rows returned is capped by the - ROW_LIMIT configuration item. - + astropy.table.Table, str, int, or None + - By default, returns an :class:`~astropy.table.Table` containing records + based on the specified columns and constraints. Returns ``None`` if no results. + - When ``count_only`` is ``True``, returns an ``int`` representing the + record count for the specified filters. + - When ``get_query_payload`` is ``True``, returns the query string that + would be issued to the TAP service given the specified arguments. """ - - url = self.QUERY_INSTRUMENT_URL + '/{0}/form'.format(instrument.lower()) - return self._query(url, column_filters=column_filters, columns=columns, - open_form=open_form, help=help, cache=cache, **kwargs) - - def _query(self, url, *, column_filters={}, columns=[], - open_form=False, help=False, cache=True, **kwargs): - - table = None - if open_form: - webbrowser.open(url) - elif help: - self._print_query_help(url) - else: - instrument_form = self._request("GET", url, cache=cache) - query_dict = {} - query_dict.update(column_filters) - # TODO: replace this with individually parsed kwargs - query_dict.update(kwargs) - query_dict["wdbo"] = "csv/download" - - # Default to returning the DP.ID since it is needed for header - # acquisition - query_dict['tab_dp_id'] = kwargs.pop('tab_dp_id', 'on') - - for k in columns: - query_dict["tab_" + k] = True - if self.ROW_LIMIT >= 0: - query_dict["max_rows_returned"] = int(self.ROW_LIMIT) - else: - query_dict["max_rows_returned"] = 10000 - # used to be form 0, but now there's a new 'logout' form at the top - # (form_index = -1 and 0 both work now that form_id is included) - instrument_response = self._activate_form(instrument_form, - form_index=-1, - form_id='queryform', - inputs=query_dict, - cache=cache) - - content = instrument_response.content - # First line is always garbage - content = content.split(b'\n', 1)[1] - log.debug("Response content:\n{0}".format(content)) - if _check_response(content): - table = Table.read(BytesIO(content), format="ascii.csv", - comment='^#') - return table - else: - warnings.warn("Query returned no results", NoResultsWarning) + _ = open_form, cache # make explicit that we are aware these arguments are unused + column_filters = column_filters if column_filters else {} + user_params = _UserParams(table_name=_EsoNames.ist_table(instrument), + column_name=None, + allowed_values=None, + cone_ra=cone_ra, + cone_dec=cone_dec, + cone_radius=cone_radius, + columns=columns, + column_filters=column_filters, + top=top, + count_only=count_only, + get_query_payload=get_query_payload, + print_help=help, + authenticated=authenticated) + t = self._query_on_allowed_values(user_params) + t = _reorder_columns(t, DEFAULT_LEAD_COLS_RAW) + return t def get_headers(self, product_ids, *, cache=True): """ @@ -571,7 +709,7 @@ def get_headers(self, product_ids, *, cache=True): result = [] for dp_id in product_ids: response = self._request( - "GET", "http://archive.eso.org/hdr?DpId={0}".format(dp_id), + "GET", f"https://archive.eso.org/hdr?DpId={dp_id}", cache=cache) root = BeautifulSoup(response.content, 'html5lib') hdr = root.select('pre')[0].text @@ -606,10 +744,10 @@ def get_headers(self, product_ids, *, cache=True): columns.append(key) column_types.append(type(header[key])) # Add all missing elements - for i in range(len(result)): + for item in result: for (column, column_type) in zip(columns, column_types): - if column not in result[i]: - result[i][column] = column_type() + if column not in item: + item[column] = column_type() # Return as Table return Table(result) @@ -667,14 +805,13 @@ def _download_eso_files(self, file_ids: List[str], destination: Optional[str], filename, downloaded = self._download_eso_file(file_link, destination, overwrite) downloaded_files.append(filename) if downloaded: - log.info(f"Successfully downloaded dataset" - f" {file_id} to {filename}") + log.info(f"Successfully downloaded dataset {file_id} to {filename}") except requests.HTTPError as http_error: if http_error.response.status_code == 401: log.error(f"Access denied to {file_link}") else: log.error(f"Failed to download {file_link}. {http_error}") - except Exception as ex: + except RuntimeError as ex: log.error(f"Failed to download {file_link}. {ex}") return downloaded_files @@ -756,7 +893,8 @@ def get_associated_files(self, datasets: List[str], *, mode: str = "raw", self._save_xml(xml, filename, destination) # For multiple datasets it returns a multipart message elif 'multipart/form-data' in content_type: - msg = email.message_from_string(f'Content-Type: {content_type}\r\n' + response.content.decode()) + msg = email.message_from_string( + f'Content-Type: {content_type}\r\n' + response.content.decode()) for part in msg.get_payload(): filename = part.get_filename() xml = part.get_payload(decode=True) @@ -769,9 +907,9 @@ def get_associated_files(self, datasets: List[str], *, mode: str = "raw", # remove input datasets from calselector results return list(associated_files.difference(set(datasets))) - @deprecated_renamed_argument(('request_all_objects', 'request_id'), (None, None), since=['0.4.7', '0.4.7']) - def retrieve_data(self, datasets, *, continuation=False, destination=None, with_calib=None, - request_all_objects=False, unzip=True, request_id=None): + def retrieve_data(self, datasets, *, continuation=False, destination=None, + with_calib=None, unzip=True, + request_all_objects=None, request_id=None): """ Retrieve a list of datasets form the ESO archive. @@ -801,15 +939,18 @@ def retrieve_data(self, datasets, *, continuation=False, destination=None, with_ Examples -------- - >>> dptbl = Eso.query_instrument('apex', pi_coi='ginsburg') - >>> dpids = [row['DP.ID'] for row in dptbl if 'Map' in row['Object']] - >>> files = Eso.retrieve_data(dpids) + dptbl = Eso.query_instrument('apex', pi_coi='ginsburg') + dpids = [row['DP.ID'] for row in dptbl if 'Map' in row['Object']] + files = Eso.retrieve_data(dpids) """ + _ = request_all_objects, request_id return_string = False if isinstance(datasets, str): return_string = True datasets = [datasets] + if isinstance(datasets, Column): + datasets = list(datasets) if with_calib and with_calib not in ('raw', 'processed'): raise ValueError("Invalid value for 'with_calib'. " @@ -820,10 +961,11 @@ def retrieve_data(self, datasets, *, continuation=False, destination=None, with_ log.info(f"Retrieving associated '{with_calib}' calibration files ...") try: # batch calselector requests to avoid possible issues on the ESO server - BATCH_SIZE = 100 + batch_size = 100 sorted_datasets = sorted(datasets) - for i in range(0, len(sorted_datasets), BATCH_SIZE): - associated_files += self.get_associated_files(sorted_datasets[i:i + BATCH_SIZE], mode=with_calib) + for i in range(0, len(sorted_datasets), batch_size): + associated_files += self.get_associated_files( + sorted_datasets[i:i + batch_size], mode=with_calib) associated_files = list(set(associated_files)) log.info(f"Found {len(associated_files)} associated files") except Exception as ex: @@ -837,191 +979,80 @@ def retrieve_data(self, datasets, *, continuation=False, destination=None, with_ log.info("Done!") return files[0] if files and len(files) == 1 and return_string else files - def query_apex_quicklooks(self, *, project_id=None, help=False, - open_form=False, cache=True, **kwargs): + @deprecated_renamed_argument(('open_form', 'cache'), (None, None), + since=['0.4.11', '0.4.11']) + def query_apex_quicklooks(self, + project_id: Union[List[str], str] = None, *, + columns: Union[List, str] = None, + column_filters: Optional[dict] = None, + top: int = None, + count_only: bool = False, + get_query_payload: bool = False, + help: bool = False, + authenticated: bool = False, + open_form: bool = False, cache: bool = False, + ) -> Union[Table, int, str]: """ APEX data are distributed with quicklook products identified with a - different name than other ESO products. This query tool searches by + different name than other ESO products. This query tool searches by project ID or any other supported keywords. - Examples - -------- - >>> tbl = Eso.query_apex_quicklooks(project_id='093.C-0144') - >>> files = Eso.retrieve_data(tbl['Product ID']) - """ - - apex_query_url = 'http://archive.eso.org/wdb/wdb/eso/apex_product/form' - - table = None - if open_form: - webbrowser.open(apex_query_url) - elif help: - return self._print_instrument_help(apex_query_url, 'apex') - else: - - payload = {'wdbo': 'csv/download'} - if project_id is not None: - payload['prog_id'] = project_id - payload.update(kwargs) - - apex_form = self._request("GET", apex_query_url, cache=cache) - apex_response = self._activate_form( - apex_form, form_id='queryform', form_index=0, inputs=payload, - cache=cache, method='application/x-www-form-urlencoded') - - content = apex_response.content - if _check_response(content): - # First line is always garbage - content = content.split(b'\n', 1)[1] - try: - table = Table.read(BytesIO(content), format="ascii.csv", - guess=False, # header_start=1, - comment="#", encoding='utf-8') - except ValueError as ex: - if 'the encoding parameter is not supported on Python 2' in str(ex): - # astropy python2 does not accept the encoding parameter - table = Table.read(BytesIO(content), format="ascii.csv", - guess=False, - comment="#") - else: - raise ex - else: - raise RemoteServiceError("Query returned no results") - - return table - - def _print_query_help(self, url, *, cache=True): - """ - Download a form and print it in a quasi-human-readable way - """ - log.info("List of accepted column_filters parameters.") - log.info("The presence of a column in the result table can be " - "controlled if prefixed with a [ ] checkbox.") - log.info("The default columns in the result table are shown as " - "already ticked: [x].") - - result_string = [] - - resp = self._request("GET", url, cache=cache) - doc = BeautifulSoup(resp.content, 'html5lib') - form = doc.select("html body form pre")[0] - # Unwrap all paragraphs - paragraph = form.find('p') - while paragraph: - paragraph.unwrap() - paragraph = form.find('p') - # For all sections - for section in form.select("table"): - section_title = "".join(section.stripped_strings) - section_title = "\n".join(["", section_title, - "-" * len(section_title)]) - result_string.append(section_title) - checkbox_name = "" - checkbox_value = "" - for tag in section.next_siblings: - if tag.name == u"table": - break - elif tag.name == u"input": - if tag.get(u'type') == u"checkbox": - checkbox_name = tag['name'] - checkbox_value = u"[x]" if ('checked' in tag.attrs) else u"[ ]" - name = "" - value = "" - else: - name = tag['name'] - value = "" - elif tag.name == u"select": - options = [] - for option in tag.select("option"): - options += ["{0} ({1})".format(option['value'], "".join(option.stripped_strings))] - name = tag[u"name"] - value = ", ".join(options) - else: - name = "" - value = "" - if u"tab_" + name == checkbox_name: - checkbox = checkbox_value - else: - checkbox = " " - if name != u"": - result_string.append("{0} {1}: {2}" - .format(checkbox, name, value)) - - log.info("\n".join(result_string)) - return result_string + Parameters + ---------- + project_id : str + ID of the project from which APEX quicklook data is to be queried. + columns : str or list of str, optional + Name of the columns the query should return. If specified as a string, + it should be a comma-separated list of column names. + top : int, optional + When set to ``N``, returns only the top ``N`` records. + count_only : bool, optional + If ``True``, returns only an ``int``: the count of the records + the query would return when set to ``False``. Default is ``False``. + get_query_payload : bool, optional + If ``True``, returns only a ``str``: the query string that + would be issued to the TAP service. Default is ``False``. + help : bool, optional + If ``True``, prints all the parameters accepted in ``column_filters`` + and ``columns``. Default is ``False``. + authenticated : bool, optional + If ``True``, runs the query as an authenticated user. + Authentication must be done beforehand via + :meth:`~astroquery.eso.EsoClass.login`. Note that authenticated queries + are slower. Default is ``False``. + column_filters : dict or None, optional + Constraints applied to the query in ADQL syntax, + e.g., ``{"exp_start": "between '2024-12-31' and '2025-12-31'"}``. + Default is ``None``. + open_form : bool, optional + **Deprecated** - unused. + cache : bool, optional + **Deprecated** - unused. - def _print_surveys_help(self, url, *, cache=True): - """ - Download a form and print it in a quasi-human-readable way + Returns + ------- + astropy.table.Table, str, int, or None + - By default, returns an :class:`~astropy.table.Table` containing records + based on the specified columns and constraints. Returns ``None`` if no results. + - When ``count_only`` is ``True``, returns an ``int`` representing the + record count for the specified filters. + - When ``get_query_payload`` is ``True``, returns the query string that + would be issued to the TAP service given the specified arguments. """ - log.info("List of the parameters accepted by the " - "surveys query.") - log.info("The presence of a column in the result table can be " - "controlled if prefixed with a [ ] checkbox.") - log.info("The default columns in the result table are shown as " - "already ticked: [x].") - - result_string = [] - - resp = self._request("GET", url, cache=cache) - doc = BeautifulSoup(resp.content, 'html5lib') - form = doc.select("html body form")[0] - - # hovertext from different labels are used to give more info on forms - helptext_dict = {abbr['title'].split(":")[0].strip(): ":".join(abbr['title'].split(":")[1:]) - for abbr in form.find_all('abbr') - if 'title' in abbr.attrs and ":" in abbr['title']} - - for fieldset in form.select('fieldset'): - legend = fieldset.select('legend') - if len(legend) > 1: - raise ValueError("Form parsing error: too many legends.") - elif len(legend) == 0: - continue - section_title = "\n\n" + "".join(legend[0].stripped_strings) + "\n" - - result_string.append(section_title) - - for section in fieldset.select('table'): - - checkbox_name = "" - checkbox_value = "" - for tag in section.next_elements: - if tag.name == u"table": - break - elif tag.name == u"input": - if tag.get(u'type') == u"checkbox": - checkbox_name = tag['name'] - checkbox_value = (u"[x]" - if ('checked' in tag.attrs) - else u"[ ]") - name = "" - value = "" - else: - name = tag['name'] - value = "" - elif tag.name == u"select": - options = [] - for option in tag.select("option"): - options += ["{0} ({1})".format(option['value'] if 'value' in option else "", - "".join(option.stripped_strings))] - name = tag[u"name"] - value = ", ".join(options) - else: - name = "" - value = "" - if u"tab_" + name == checkbox_name: - checkbox = checkbox_value - else: - checkbox = " " - if name != u"": - result_string.append("{0} {1}: {2}" - .format(checkbox, name, value)) - if name.strip() in helptext_dict: - result_string.append(helptext_dict[name.strip()]) - - log.info("\n".join(result_string)) - return result_string + _ = open_form, cache # make explicit that we are aware these arguments are unused + column_filters = column_filters if column_filters else {} + user_params = _UserParams(table_name=_EsoNames.apex_quicklooks_table, + column_name=_EsoNames.apex_quicklooks_pid_column, + allowed_values=project_id, + cone_ra=None, cone_dec=None, cone_radius=None, + columns=columns, + column_filters=column_filters, + top=top, + count_only=count_only, + get_query_payload=get_query_payload, + print_help=help, + authenticated=authenticated) + return self._query_on_allowed_values(user_params) Eso = EsoClass() diff --git a/astroquery/eso/tests/data/amber_query_form.html b/astroquery/eso/tests/data/amber_query_form.html deleted file mode 100644 index 1be90fe1d6..0000000000 --- a/astroquery/eso/tests/data/amber_query_form.html +++ /dev/null @@ -1,546 +0,0 @@ - - - - -ESO Science Archive - AMBER Data Products - - - - - - - -
- - - - - - - - - - -
ESO ESOSPECIAL ACCESS
SCIENCE ARCHIVE FACILITY
AMBER Raw Data
Query Form
- - - - - - - - -
How to use? -Other Instruments -Other Instruments -Archive FAQArchive Facility HOMEESO HOME
-
-
- - -
-Description -
- This form provides access to observations (raw data) performed with -AMBER -since 2004 that are stored on-line in the -Science Archive Facility in Garching. -Find more information about AMBER data on the -Quality Control web pages. -Paranal ambient conditions can be queried separately from here.
-
-
- -
- - - -
-
Special Access Info [open]
- -
-
- -
-
-
-
- -
-
-
- - -
-
Output preferences: -
-
Return max rows.

-

Target Information
    Target name.......................:  -    Coordinate System.................:      RA:      DEC:  RA: sexagesimal=hours,decimal=degrees -    Search Box........................:      Equatorial Output Format:  - Input Target List.................:  -
Observation and proposal parameters
 DATE OBS..........................:  (YYYY MM(M) DD of night begin [12:00 UT], DD MM(M) YYYY also acceptable) -  OR give a query range using the following two fields (start/end dates)
    Start.............................:      End:  - ProgId............................:  PPP.C-NNNN   (e.g. 080.A-0123*) - Program Type......................:       SV Mode:  - PI/CoI............................:  - Proposal Title....................:  -
Generic File Information
 DP.ID.............................:  archive filename of FITS file (e.g. AMBER.2010-09-04T09:40:45.174) - OB.ID.............................:  identification number of OB within ESO system - OBS.TARG.NAME.....................:  Observation block target name -

 DPR.CATG..........................:  Data category (e.g. SCIENCE) - DPR.TYPE..........................:  Observation type    User defined input:  (e.g. 2P2V or 3P2V) - DPR.TECH..........................:  Observation technique    Request all interferometry files  -

 TPL.NAME..........................:  AMBER template name - TPL.NEXP..........................:  total number of exposures within the template - TPL.START.........................:  starting time of template (UT) -
Instrument Specific Information
 DEL.FT.SENSOR.....................:  Fringe Tracker Sensor Name - DEL.FT.STATUS.....................:  Fringe Tracker Status (could be ON or OFF) - DET.NTEL..........................:  Number of telescopes - ISS.CONF.STATION1.................:  Station of telescope 1 - ISS.CONF.STATION2.................:  Station of telescope 2 - ISS.CONF.STATION3.................:  Station of telescope 3 - OCS.OBS.MODE......................:  Observation mode - OCS.OBS.SPECCONF..................:  Spectral Configuration - OCS.OBS.TYPE......................:  Observation type - INS.GRAT1.WLEN....................:  Grating central wavelength [nm] -
Ambient Parameters
 DIMM S-avg........................:  [arcsec] DIMM Seeing average over the exposure (FWHM at 0.5mue) - Airmass...........................:  +/- 0.1 - Night?............................:  Night Exposure ? - Moon Illumination.................:  Moon illumination during the exposure (percentage, negative when moon below the horizon) -
Result set
    Sort by...........................: 

Extra Columns on Tabular Output
-
-
- - Use tabular output even if only one row is returned.
- - Use full-screen output even if more than one row is returned.
-
- -
-
- - - - - - - - - - -
- - ESO HOME - - ARCHIVE HOME - - ARCHIVE FAQ
- wdb 3.0h - 21-JUL-2017 ...... - - Send comments to archive@eso.org -
-
-
- - diff --git a/astroquery/eso/tests/data/amber_sgra_query.tbl b/astroquery/eso/tests/data/amber_sgra_query.tbl deleted file mode 100644 index e7efc35cfd..0000000000 --- a/astroquery/eso/tests/data/amber_sgra_query.tbl +++ /dev/null @@ -1,60 +0,0 @@ - -# SIMBAD coordinates for Sgr A* : 17 45 40.0, -29 00 28.1. -# -Object,RA,DEC,Target Ra Dec,Target l b,ProgId,DP.ID,OB.ID,DPR.CATG,DPR.TYPE,DPR.TECH,ISS.CONF.STATION1,ISS.CONF.STATION2,ISS.CONF.STATION3,INS.GRAT1.WLEN,DIMM S-avg -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:40:03.741,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.64 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:40:19.830,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.64 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:40:35.374,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.64 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:40:50.932,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.68 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:41:07.444,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.68 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:41:24.179,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.68 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:41:39.523,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.68 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:41:55.312,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:42:12.060,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:42:29.119,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:42:44.370,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:42:59.649,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:43:16.399,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:43:32.910,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:43:48.941,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.69 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:44:04.843,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:44:21.541,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:44:38.309,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:44:53.798,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.81 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:45:10.049,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:45:26.987,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:45:43.433,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:45:58.674,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.78 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:46:14.474,200156177,SCIENCE,"CPTPIST,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.79 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:46:37.269,200156177,SCIENCE,"CPTPIST,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.79 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:47:01.474,200156177,SCIENCE,"FRNSRC,BASE31",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:50:20.362,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.74 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:50:33.223,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.74 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:50:46.632,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.74 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:50:59.556,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.74 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:51:14.547,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.78 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:51:27.935,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:51:41.670,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:51:54.480,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:52:07.271,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:52:21.824,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:52:35.051,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:52:48.928,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:53:02.492,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:53:24.007,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:53:37.858,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:53:51.137,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:54:05.106,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.76 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:54:26.021,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:54:39.202,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:54:52.656,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:55:06.685,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.77 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:55:26.262,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.78 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:55:39.382,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] -GC_IRS7,266.417056,-29.006140,17:45:40.09 -29:00:22.1,359.945774 -0.045458,076.B-0863(A),AMBER.2006-03-14T07:55:52.259,200156177,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,U1,U3,U4,-1.000,0.80 [0.01] - -# A maximum of 50 records were found matching the provided criteria - any remaining rows were ignored. -# -# -# -# \ No newline at end of file diff --git a/astroquery/eso/tests/data/main_query_form.html b/astroquery/eso/tests/data/main_query_form.html deleted file mode 100644 index 766c641da5..0000000000 --- a/astroquery/eso/tests/data/main_query_form.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - -ESO Archive Raw Data - - - - - - - -
- - - - - - - - - -
ESOSPECIAL ACCESS
SCIENCE ARCHIVE FACILITY
Observational Raw Data
Query Form
- - - - - - - - - -
How to use? -Instrument-specific Interfaces -Instruments-specific Interfaces -ESO Archive OverviewArchive FAQArchive Facility HOMEESO HOME
-
-
-
-
-Description -

-To request data you have to register as an -ESO/ST-ECF Archive user. A request can be submitted -following the instructions in the results table.
-

-
- - -
-
Output preferences: -
-
Return max rows.

-

 Input File..........:  
- Export: 
- HDR: 
-    Note................:  
-
Target Information

    Target..............:  -    Search Box..........:  If Simbad/Ned name or coordinates given -    RA..................:      Format:  J2000 (RA 05 34;Dec +22) -    DEC.................:  (J2000) - Target Ra, Dec:  -    Output Format.......:  - Stat PLOT:  -    Export File Format..:  - Night...............:  (YYYY MM(M) DD of night begin [12:00 UT], DD MM(M) YYYY also acceptable) -    nightlog............:  -   OR give a query range using the following start/end dates:
    Start...............:      End:  -
Program Information
 Program_ID..........:  -    survey..............:  - PI/CoI..............:  - s/v.................:  - Title...............:  - Prog_Type...........:  -
Observing Information
 Instrument..........:  - Stat Ins:  - Category............:  - Type................:  - Mode................:  - Dataset ID..........:  - Orig Name...........:  - Release_Date........:  - OB_Name.............:  - OB_ID...............:  - TPL ID..............:  - TPL START...........:  -
Instrumental Setup
 Exptime.............:  (seconds) - Stat Exp:  - Filter..............:  (e.g. R*) - Grism...............:  (e.g. GRIS_600*) - Grating.............:  (e.g. CD*) - Slit................:  (e.g. ~lslit1* [see also the help button]) -
Extra Columns
 MJD-OBS:  - Airmass:  - Ambient:  - INFO................:  -
Result Set

    Sort by.............:  -    aladin_colour.......: 

Extra Columns on Tabular Output
-
-
- - Use tabular output even if only one row is returned.
- - Use full-screen output even if more than one row is returned.
-
- -
-
- - - - - - - - - - -
- - ESO HOME - - ARCHIVE HOME - - ARCHIVE FAQ
- wdb 3.0h - 21-JUL-2017 ...... - - Send comments to archive@eso.org -
-
-
- - diff --git a/astroquery/eso/tests/data/main_sgra_query.tbl b/astroquery/eso/tests/data/main_sgra_query.tbl deleted file mode 100644 index 41b0428a50..0000000000 --- a/astroquery/eso/tests/data/main_sgra_query.tbl +++ /dev/null @@ -1,60 +0,0 @@ - -# SIMBAD coordinates for Sgr A* : 17 45 40.0, -29 00 28.1. -# -OBJECT,RA,DEC,Program_ID,Instrument,Category,Type,Mode,Dataset ID,Release_Date,TPL ID,TPL START,Exptime,Filter,MJD-OBS,Airmass -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:40:03.741,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.319488, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:40:19.830,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.319674, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:40:35.374,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.319854, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:40:50.932,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320034, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:41:07.444,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320225, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:41:24.179,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320419, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:41:39.523,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320596, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:41:55.312,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320779, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:42:12.060,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.320973, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:42:29.119,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.321170, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:42:44.370,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.321347, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:42:59.649,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.321524, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:43:16.399,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.321718, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:43:32.910,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.321909, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:43:48.941,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.322094, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:44:04.843,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.322278, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:44:21.541,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.322472, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:44:38.309,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.322666, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:44:53.798,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.322845, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:45:10.049,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.323033, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:45:26.987,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.323229, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:45:43.433,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.323419, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:45:58.674,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.323596, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"CPTPIST,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:46:14.474,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.323779, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"CPTPIST,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:46:37.269,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.324042, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE31",INTERFEROMETRY,AMBER.2006-03-14T07:47:01.474,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:21:16, 0.200,,53808.324323, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:50:20.362,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.326625, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:50:33.223,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.326773, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:50:46.632,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.326929, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:50:59.556,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327078, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:51:14.547,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327252, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:51:27.935,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327407, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:51:41.670,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327566, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:51:54.480,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327714, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:52:07.271,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.327862, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:52:21.824,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328030, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:52:35.051,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328183, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:52:48.928,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328344, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:53:02.492,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328501, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:53:24.007,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328750, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:53:37.858,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.328910, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:53:51.137,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329064, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:54:05.106,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329226, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:54:26.021,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329468, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:54:39.202,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329620, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:54:52.656,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329776, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:55:06.685,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.329938, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:55:26.262,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.330165, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:55:39.382,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.330317, -GC_IRS7,17:45:40.09,-29:00:22.1,076.B-0863(A),AMBER,SCIENCE,"FRNSRC,BASE12",INTERFEROMETRY,AMBER.2006-03-14T07:55:52.259,Mar 14 2007,AMBER_3Tstd_acq,2006-03-14T07:48:12, 0.100,,53808.330466, - -# A maximum of 50 records were found matching the provided criteria - any remaining rows were ignored. -# -# -# -# \ No newline at end of file diff --git a/astroquery/eso/tests/data/query_apex_ql_5.csv b/astroquery/eso/tests/data/query_apex_ql_5.csv new file mode 100644 index 0000000000..644cac6145 --- /dev/null +++ b/astroquery/eso/tests/data/query_apex_ql_5.csv @@ -0,0 +1,6 @@ +,access_estsize,access_url,instrument,instrument_type,partner,pi_coi,prog_id,prog_title,prog_type,project_id,quicklook_id,release_date +0,51,https://dataportal.eso.org/dataPortal/file/E-095.F-9802A.2015JUL15.TAR,APEXHET,Heterodyne,ESO,"Ginsburg, A",095.F-9802(A),Density and Temperature in The Brick,Normal,E-095.F-9802A-2015,E-095.F-9802A.2015JUL15.TAR,2015-07-17T03:06:23.280Z +1,461598,https://dataportal.eso.org/dataPortal/file/E-095.F-9802A.2015JUL16.TAR,APEXHET,Heterodyne,ESO,"Ginsburg, A",095.F-9802(A),Density and Temperature in The Brick,Normal,E-095.F-9802A-2015,E-095.F-9802A.2015JUL16.TAR,2015-07-18T12:07:32.713Z +2,316477,https://dataportal.eso.org/dataPortal/file/E-095.F-9802A.2015JUL19.TAR,APEXHET,Heterodyne,ESO,"Ginsburg, A",095.F-9802(A),Density and Temperature in The Brick,Normal,E-095.F-9802A-2015,E-095.F-9802A.2015JUL19.TAR,2015-09-18T11:31:15.867Z +3,729364,https://dataportal.eso.org/dataPortal/file/E-095.F-9802A.2015SEP13.TAR,APEXHET,Heterodyne,ESO,"Ginsburg, A",095.F-9802(A),Density and Temperature in The Brick,Normal,E-095.F-9802A-2015,E-095.F-9802A.2015SEP13.TAR,2015-09-15T11:06:55.663Z +4,2006384,https://dataportal.eso.org/dataPortal/file/E-095.F-9802A.2021MAR24.TAR,APEXHET,Heterodyne,ESO,"Ginsburg, A",095.F-9802(A),Density and Temperature in The Brick,Normal,E-095.F-9802A-2015,E-095.F-9802A.2021MAR24.TAR,2015-09-18T11:46:19.970Z diff --git a/astroquery/eso/tests/data/query_coll_vvv_sgra.csv b/astroquery/eso/tests/data/query_coll_vvv_sgra.csv new file mode 100644 index 0000000000..514abd04d3 --- /dev/null +++ b/astroquery/eso/tests/data/query_coll_vvv_sgra.csv @@ -0,0 +1,51 @@ +,abmaglim,access_estsize,access_format,access_url,bib_reference,calib_level,dataproduct_subtype,dataproduct_type,dp_id,em_max,em_min,em_res_power,em_xel,facility_name,filter,gal_lat,gal_lon,instrument_name,last_mod_date,multi_ob,n_obs,o_calib_status,o_ucd,obs_collection,obs_creator_did,obs_creator_name,obs_id,obs_publisher_did,obs_release_date,obs_title,obstech,p3orig,pol_states,pol_xel,preview_html,proposal_id,publication_date,release_description,s_dec,s_fov,s_pixel_scale,s_ra,s_region,s_resolution,s_xel1,s_xel2,snr,strehl,t_exptime,t_max,t_min,t_resolution,t_xel,target_name +0,17.633,501405,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:06.307,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:06.307,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00698_st_tl_cat.fits,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:17:06.307,2014-11-13T13:53:35.087Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:06.307,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91474089055,,265.9635,POLYGON J2000 264.924507 -29.610152 265.817346 -28.34784 266.996055 -28.975826 266.112393 -30.245967,0.84,,,,,16.0,55423.14637251,55423.14393939,210.221568,,b333 +1,19.839,201026,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:07.630,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:17:07.630,1.339e-06,1.166e-06,7.2399,1,ESO-VISTA,J,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00710_st_tl.fits.fz,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:17:07.630,2014-11-13T13:08:12.543Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:07.630,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91441885916,0.3412,265.9635,POLYGON J2000 264.92465500000003 -29.610057 265.817239 -28.347906 266.99594 -28.976044 266.112531 -30.246021,0.879,12766,12766,,,48.0,55423.15085105,55423.14691854,339.768864,,b333 +2,17.527,544095,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:08.123,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:08.123,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138435,359.492437,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110915_00491_st_tl_cat.fits,"MINNITI, DANTE",474702,ivo://eso.org/ID?ADP.2014-11-12T16:17:08.123,2014-11-13T13:53:34.833Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:08.123,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91522599611,,265.9662,POLYGON J2000 264.926698 -29.609205 265.820388 -28.347613 266.999253 -28.975937 266.114725 -30.245367,0.83,,,,,16.0,55820.10421808,55820.1016269,223.877952,,b333 +3,19.839,361762,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:31.970,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:31.970,1.339e-06,1.166e-06,7.2399,1,ESO-VISTA,J,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00710_st_tl_cat.fits,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:17:31.970,2014-11-13T13:53:35.360Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:31.970,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91441885916,,265.9635,POLYGON J2000 264.92465500000003 -29.610057 265.817239 -28.347906 266.99594 -28.976044 266.112531 -30.246021,0.88,,,,,48.0,55423.15085105,55423.14691854,339.768864,,b333 +4,17.456,253437,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:33.130,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:17:33.130,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141423,359.495294,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110901_00792_st_tl.fits.fz,"MINNITI, DANTE",546354,ivo://eso.org/ID?ADP.2014-11-12T16:17:33.130,2014-11-13T13:53:34.970Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:33.130,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2926,1.91537926444,0.3413,265.965,POLYGON J2000 264.925409 -29.605174 265.819081 -28.34368 266.99814100000003 -28.972084 266.113629 -30.241415,0.839,12763,12763,,,16.0,55806.151016,55806.14881443,190.215648,,b333 +5,19.981,149616,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:33.497,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:17:33.497,1.067e-06,9.74e-07,10.9731,1,ESO-VISTA,Y,0.138435,359.492437,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110823_00365_st_tl.fits.fz,"MINNITI, DANTE",478164,ivo://eso.org/ID?ADP.2014-11-12T16:17:33.497,2014-11-13T13:53:34.970Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:33.497,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91476990694,0.3413,265.9662,POLYGON J2000 264.926939 -29.609157 265.820357 -28.347617 266.999007 -28.976055 266.114748 -30.245429,0.894,12762,12762,,,40.0,55797.11820074,55797.1150754,270.029376,,b333 +6,17.456,510056,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:34.503,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:34.503,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141423,359.495294,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110901_00792_st_tl_cat.fits,"MINNITI, DANTE",546354,ivo://eso.org/ID?ADP.2014-11-12T16:17:34.503,2014-11-13T14:09:53.880Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:34.503,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2926,1.91537926444,,265.965,POLYGON J2000 264.925409 -29.605174 265.819081 -28.34368 266.99814100000003 -28.972084 266.113629 -30.241415,0.839,,,,,16.0,55806.151016,55806.14881443,190.215648,,b333 +7,19.981,170585,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:36.920,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:36.920,1.067e-06,9.74e-07,10.9731,1,ESO-VISTA,Y,0.138435,359.492437,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110823_00365_st_tl_cat.fits,"MINNITI, DANTE",478164,ivo://eso.org/ID?ADP.2014-11-12T16:17:36.920,2014-11-13T13:53:35.217Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:36.920,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91476990694,,265.9662,POLYGON J2000 264.926939 -29.609157 265.820357 -28.347617 266.999007 -28.976055 266.114748 -30.245429,0.894,,,,,40.0,55797.11820074,55797.1150754,270.029376,,b333 +8,17.289,393920,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:44.890,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:17:44.890,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141244,359.49517,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110925_00347_st_tl_cat.fits,"MINNITI, DANTE",547670,ivo://eso.org/ID?ADP.2014-11-12T16:17:44.890,2014-11-13T13:53:34.970Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:44.890,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91517381027,,265.9651,POLYGON J2000 264.925628 -29.605361 265.819122 -28.343718 266.998085 -28.972198 266.113754 -30.241676,1.051,,,,,16.0,55830.02478478,55830.02239246,206.696448,,b333 +9,17.502,254427,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:17:55.557,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:17:55.557,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138562,359.492476,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110804_00755_st_tl.fits.fz,"MINNITI, DANTE",474045,ivo://eso.org/ID?ADP.2014-11-12T16:17:55.557,2014-11-13T13:08:12.740Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:17:55.557,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2965,1.91519783027,0.3414,265.9661,POLYGON J2000 264.926709 -29.609251 265.820299 -28.347533 266.999154 -28.975796 266.114727 -30.24535,0.851,12760,12760,,,16.0,55778.19489683,55778.19256078,201.83472,,b333 +10,17.289,252319,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:03.553,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:03.553,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141244,359.49517,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110925_00347_st_tl.fits.fz,"MINNITI, DANTE",547670,ivo://eso.org/ID?ADP.2014-11-12T16:18:03.553,2014-11-13T13:08:12.543Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:03.553,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91517381027,0.3414,265.9651,POLYGON J2000 264.925628 -29.605361 265.819122 -28.343718 266.998085 -28.972198 266.113754 -30.241676,1.051,12764,12764,,,16.0,55830.02478478,55830.02239246,206.696448,,b333 +11,18.465,456981,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:18.980,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:18:18.980,1.791e-06,1.499e-06,5.6336,1,ESO-VISTA,H,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00686_st_tl_cat.fits,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:18:18.980,2014-11-13T12:43:43.563Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:18.980,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91441987361,,265.9635,POLYGON J2000 264.92467999999997 -29.610019 265.81723999999997 -28.347781 266.995955 -28.975983 266.11257 -30.246047,0.874,,,,,16.0,55423.14341899,55423.1410129,207.886176,,b333 +12,17.633,257143,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:25.687,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:25.687,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00698_st_tl.fits.fz,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:18:25.687,2014-11-13T14:09:53.880Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:25.687,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91474089055,0.3413,265.9635,POLYGON J2000 264.924507 -29.610152 265.817346 -28.34784 266.996055 -28.975826 266.112393 -30.245967,0.839,12761,12761,,,16.0,55423.14637251,55423.14393939,210.221568,,b333 +13,20.571,106473,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:27.733,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:18:27.733,9.27e-07,8.29e-07,8.9592,1,ESO-VISTA,Z,0.138509,359.492391,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110823_00377_st_tl_cat.fits,"MINNITI, DANTE",478164,ivo://eso.org/ID?ADP.2014-11-12T16:18:27.733,2014-11-13T13:28:43.100Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:27.733,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91470675444,,265.9661,POLYGON J2000 264.926933 -29.609119 265.820351 -28.347638 266.998918 -28.976004 266.114658 -30.245318,0.981,,,,,40.0,55797.12162903,55797.11859793,261.88704,,b333 +14,17.527,259416,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:30.533,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:30.533,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138435,359.492437,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110915_00491_st_tl.fits.fz,"MINNITI, DANTE",474702,ivo://eso.org/ID?ADP.2014-11-12T16:18:30.533,2014-11-13T14:09:53.643Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:30.533,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91522599611,0.3414,265.9662,POLYGON J2000 264.926698 -29.609205 265.820388 -28.347613 266.999253 -28.975937 266.114725 -30.245367,0.83,12760,12760,,,16.0,55820.10421808,55820.1016269,223.877952,,b333 +15,17.491,497384,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:37.300,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:18:37.300,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138361,359.492482,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110820_00578_st_tl_cat.fits,"MINNITI, DANTE",474702,ivo://eso.org/ID?ADP.2014-11-12T16:18:37.300,2014-11-13T13:28:42.997Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:37.300,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91517423444,,265.9663,POLYGON J2000 264.926739 -29.609069 265.820915 -28.347526 266.999354 -28.976106 266.114328 -30.245488,0.917,,,,,16.0,55794.12408581,55794.12100641,266.06016,,b333 +16,17.491,255991,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:39.687,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:39.687,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138361,359.492482,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110820_00578_st_tl.fits.fz,"MINNITI, DANTE",474702,ivo://eso.org/ID?ADP.2014-11-12T16:18:39.687,2014-11-13T14:09:53.767Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:39.687,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91517423444,0.3414,265.9663,POLYGON J2000 264.926739 -29.609069 265.820915 -28.347526 266.999354 -28.976106 266.114328 -30.245488,0.917,12759,12759,,,16.0,55794.12408581,55794.12100641,266.06016,,b333 +17,20.571,130343,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:39.980,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:39.980,9.27e-07,8.29e-07,8.9592,1,ESO-VISTA,Z,0.138509,359.492391,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110823_00377_st_tl.fits.fz,"MINNITI, DANTE",478164,ivo://eso.org/ID?ADP.2014-11-12T16:18:39.980,2014-11-13T14:09:53.643Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:39.980,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91470675444,0.3413,265.9661,POLYGON J2000 264.926933 -29.609119 265.820351 -28.347638 266.998918 -28.976004 266.114658 -30.245318,0.981,12760,12760,,,40.0,55797.12162903,55797.11859793,261.88704,,b333 +18,17.502,505929,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:54.360,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-12T16:18:54.360,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138562,359.492476,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20110804_00755_st_tl_cat.fits,"MINNITI, DANTE",474045,ivo://eso.org/ID?ADP.2014-11-12T16:18:54.360,2014-11-13T13:28:43.100Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:54.360,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2965,1.91519783027,,265.9661,POLYGON J2000 264.926709 -29.609251 265.820299 -28.347533 266.999154 -28.975796 266.114727 -30.24535,0.852,,,,,16.0,55778.19489683,55778.19256078,201.83472,,b333 +19,18.465,238328,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-12T16:18:56.040,2012A&A...537A.107S,2,tile,image,ADP.2014-11-12T16:18:56.040,1.791e-06,1.499e-06,5.6336,1,ESO-VISTA,H,0.140231,359.490862,VIRCAM,2020-10-13T13:59:53.247Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20100814_00686_st_tl.fits.fz,"MINNITI, DANTE",477583,ivo://eso.org/ID?ADP.2014-11-12T16:18:56.040,2014-11-13T13:53:35.217Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-12T16:18:56.040,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.297,1.91441987361,0.3411,265.9635,POLYGON J2000 264.92467999999997 -29.610019 265.81723999999997 -28.347781 266.995955 -28.975983 266.11257 -30.246047,0.874,12766,12766,,,16.0,55423.14341899,55423.1410129,207.886176,,b333 +20,17.496,488836,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:48.403,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:48.403,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.14131,359.494777,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120717_00285_st_tl_cat.fits,"MINNITI, DANTE",550736,ivo://eso.org/ID?ADP.2014-11-25T14:26:48.403,2014-11-26T02:22:46.647Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:48.403,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2931,1.91492523805,,265.9648,POLYGON J2000 264.925501 -29.605745 265.818721 -28.344044 266.997599 -28.972426 266.113544 -30.24196,0.905,,,,,16.0,56126.02657792,56126.02435748,191.846016,,b333 +21,17.064,289218,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:49.810,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:49.810,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.14134,359.494993,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120817_00524_st_tl_cat.fits,"MINNITI, DANTE",717351,ivo://eso.org/ID?ADP.2014-11-25T14:26:49.810,2014-11-26T02:08:09.243Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:49.810,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2929,1.91488322666,,265.9649,POLYGON J2000 264.925654 -29.60552 265.818783 -28.343722 266.997695 -28.972195 266.11373100000003 -30.241826,1.239,,,,,16.0,56157.14919656,56157.14701095,188.836704,,b333 +22,17.335,252023,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:53.697,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:26:53.697,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141257,359.494692,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120722_00283_st_tl.fits.fz,"MINNITI, DANTE",710002,ivo://eso.org/ID?ADP.2014-11-25T14:26:53.697,2014-11-26T02:08:09.243Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:53.697,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2932,1.91528331666,0.3414,265.9648,POLYGON J2000 264.92532 -29.605919 265.81878 -28.34414 266.99782600000003 -28.972524 266.113532 -30.242139,0.985,12761,12761,,,16.0,56130.99322716,56130.99109949,183.830688,,b333 +23,17.316,410250,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:54.417,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:54.417,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138479,359.492175,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120329_01206_st_tl_cat.fits,"MINNITI, DANTE",476656,ivo://eso.org/ID?ADP.2014-11-25T14:26:54.417,2014-11-26T02:42:59.430Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:54.417,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2968,1.91501986638,,265.966,POLYGON J2000 264.926561 -29.609093 265.820387 -28.347599 266.99911099999997 -28.976429 266.114439 -30.24576,1.036,,,,,16.0,56016.38066305,56016.37804151,226.501056,,b333 +24,17.54,511752,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:55.463,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:55.463,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138531,359.49226,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120428_00617_st_tl_cat.fits,"MINNITI, DANTE",477140,ivo://eso.org/ID?ADP.2014-11-25T14:26:55.463,2014-11-26T02:42:59.623Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:55.463,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2967,1.91510158555,,265.966,POLYGON J2000 264.926491 -29.609061 265.820416 -28.34756 266.99908700000003 -28.976266 266.11431500000003 -30.245605,0.877,,,,,16.0,56046.28135103,56046.27899972,203.153184,,b333 +25,17.422,260608,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:55.880,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:26:55.880,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141362,359.494862,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120611_00402_st_tl.fits.fz,"MINNITI, DANTE",548781,ivo://eso.org/ID?ADP.2014-11-25T14:26:55.880,2014-11-26T01:59:31.370Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:55.880,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.293,1.91504879416,0.3414,265.9648,POLYGON J2000 264.92547 -29.605545 265.818968 -28.343948 266.997801 -28.972437 266.113463 -30.241868,0.779,12762,12762,,,16.0,56090.12559852,56090.1230809,217.522368,,b333 +26,17.484,486411,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:57.543,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:57.543,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141288,359.494908,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120607_00358_st_tl_cat.fits,"MINNITI, DANTE",547007,ivo://eso.org/ID?ADP.2014-11-25T14:26:57.543,2014-11-26T03:07:29.677Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:57.543,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.293,1.91511216027,,265.9649,POLYGON J2000 264.925415 -29.605421 265.819323 -28.343902 266.997933 -28.972586 266.113177 -30.241942,0.893,,,,,16.0,56086.15471497,56086.15208411,227.306304,,b333 +27,17.316,250813,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:58.853,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:26:58.853,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138479,359.492175,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120329_01206_st_tl.fits.fz,"MINNITI, DANTE",476656,ivo://eso.org/ID?ADP.2014-11-25T14:26:58.853,2014-11-26T02:42:59.623Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:58.853,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2968,1.91501986638,0.3413,265.966,POLYGON J2000 264.926561 -29.609093 265.820387 -28.347599 266.99911099999997 -28.976429 266.114439 -30.24576,1.035,12767,12767,,,16.0,56016.38066305,56016.37804151,226.501056,,b333 +28,17.483,508406,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:26:59.160,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:26:59.160,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138531,359.49226,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120418_00491_st_tl_cat.fits,"MINNITI, DANTE",477100,ivo://eso.org/ID?ADP.2014-11-25T14:26:59.160,2014-11-26T03:28:17.457Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:26:59.160,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2967,1.91494735694,,265.966,POLYGON J2000 264.926666 -29.609212 265.82025699999997 -28.347504 266.99897599999997 -28.976171 266.114544 -30.245714,0.868,,,,,16.0,56036.38785956,56036.38503563,243.987552,,b333 +29,17.439,451972,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:01.450,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:01.450,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.14131,359.494777,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120731_00279_st_tl_cat.fits,"MINNITI, DANTE",552707,ivo://eso.org/ID?ADP.2014-11-25T14:27:01.450,2014-11-26T02:42:59.623Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:01.450,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2931,1.91494746666,,265.9648,POLYGON J2000 264.92554 -29.605708 265.818865 -28.34403 266.997675 -28.972413 266.113512 -30.241924,0.956,,,,,16.0,56140.0354401,56140.03307897,204.001632,,b333 +30,17.335,416479,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:02.173,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:02.173,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141257,359.494692,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120722_00283_st_tl_cat.fits,"MINNITI, DANTE",710002,ivo://eso.org/ID?ADP.2014-11-25T14:27:02.173,2014-11-26T03:07:29.567Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:02.173,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2932,1.91528331666,,265.9648,POLYGON J2000 264.92532 -29.605919 265.81878 -28.34414 266.99782600000003 -28.972524 266.113532 -30.242139,0.986,,,,,16.0,56130.99322716,56130.99109949,183.830688,,b333 +31,17.513,260144,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:02.347,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:02.347,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138457,359.492306,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120418_00527_st_tl.fits.fz,"MINNITI, DANTE",477130,ivo://eso.org/ID?ADP.2014-11-25T14:27:02.347,2014-11-26T03:07:29.777Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:02.347,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2967,1.91518809,0.3414,265.9661,POLYGON J2000 264.926576 -29.609276 265.82021 -28.347623 266.999163 -28.976195 266.114691 -30.245685,0.784,12762,12762,,,16.0,56036.40018818,56036.39751531,230.935968,,b333 +32,17.422,576607,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:03.390,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:03.390,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141362,359.494862,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120611_00402_st_tl_cat.fits,"MINNITI, DANTE",548781,ivo://eso.org/ID?ADP.2014-11-25T14:27:03.390,2014-11-26T03:07:29.973Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:03.390,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.293,1.91504879416,,265.9648,POLYGON J2000 264.92547 -29.605545 265.818968 -28.343948 266.997801 -28.972437 266.113463 -30.241868,0.779,,,,,16.0,56090.12559852,56090.1230809,217.522368,,b333 +33,17.484,255551,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:05.693,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:05.693,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141288,359.494908,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120607_00358_st_tl.fits.fz,"MINNITI, DANTE",547007,ivo://eso.org/ID?ADP.2014-11-25T14:27:05.693,2014-11-26T02:22:46.647Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:05.693,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.293,1.91511216027,0.3414,265.9649,POLYGON J2000 264.925415 -29.605421 265.819323 -28.343902 266.997933 -28.972586 266.113177 -30.241942,0.893,12762,12762,,,16.0,56086.15471497,56086.15208411,227.306304,,b333 +34,17.341,592355,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:09.897,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:09.897,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138575,359.491998,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120421_00249_st_tl_cat.fits,"MINNITI, DANTE",477110,ivo://eso.org/ID?ADP.2014-11-25T14:27:09.897,2014-11-26T02:22:46.550Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:09.897,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2969,1.915304355,,265.9658,POLYGON J2000 264.926271 -29.60944 265.819931 -28.347713 266.998971 -28.97628 266.114474 -30.245845,0.771,,,,,16.0,56039.2603558,56039.25824562,182.319552,,b333 +35,17.47,257353,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:10.043,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:10.043,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141393,359.495078,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120808_00183_st_tl.fits.fz,"MINNITI, DANTE",554009,ivo://eso.org/ID?ADP.2014-11-25T14:27:10.043,2014-11-26T03:07:29.677Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:10.043,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91490450805,0.3413,265.9649,POLYGON J2000 264.925631 -29.60532 265.819208 -28.343853 266.997843 -28.972359 266.113421 -30.24166,0.784,12763,12763,,,16.0,56148.10740754,56148.10521865,189.120096,,b333 +36,17.538,258307,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:10.177,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:10.177,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138435,359.492437,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20111009_00347_st_tl.fits.fz,"MINNITI, DANTE",475353,ivo://eso.org/ID?ADP.2014-11-25T14:27:10.177,2014-11-26T02:42:59.623Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:10.177,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2966,1.91511865694,0.3413,265.9662,POLYGON J2000 264.926778 -29.609106 265.820381 -28.347588 266.99926800000003 -28.976002 266.114826 -30.245355,0.871,12762,12762,,,16.0,55844.02404298,55844.02183378,190.87488,,b333 +37,17.372,567123,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:10.237,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:10.237,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138501,359.492044,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120418_00345_st_tl_cat.fits,"MINNITI, DANTE",477100,ivo://eso.org/ID?ADP.2014-11-25T14:27:10.237,2014-11-26T02:42:59.330Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:10.237,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2969,1.915354515,,265.9659,POLYGON J2000 264.92632000000003 -29.609609 265.81978300000003 -28.347804 266.999 -28.976246 266.114706 -30.245888,0.809,,,,,16.0,56036.3030172,56036.30044658,222.101568,,b333 +38,17.508,500662,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:14.773,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:14.773,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141318,359.495124,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120721_00373_st_tl_cat.fits,"MINNITI, DANTE",708717,ivo://eso.org/ID?ADP.2014-11-25T14:27:14.773,2014-11-26T03:28:17.553Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:14.773,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91503962444,,265.965,POLYGON J2000 264.925577 -29.605293 265.819169 -28.343748 266.997944 -28.972311 266.113509 -30.241691,0.877,,,,,16.0,56130.16141904,56130.15922641,189.443232,,b333 +39,17.47,556309,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:15.293,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:15.293,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141393,359.495078,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120808_00183_st_tl_cat.fits,"MINNITI, DANTE",554009,ivo://eso.org/ID?ADP.2014-11-25T14:27:15.293,2014-11-26T03:07:29.677Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:15.293,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91490450805,,265.9649,POLYGON J2000 264.925631 -29.60532 265.819208 -28.343853 266.997843 -28.972359 266.113421 -30.24166,0.785,,,,,16.0,56148.10740754,56148.10521865,189.120096,,b333 +40,17.483,563590,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:16.613,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:16.613,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138501,359.492044,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120406_00416_st_tl_cat.fits,"MINNITI, DANTE",477090,ivo://eso.org/ID?ADP.2014-11-25T14:27:16.613,2014-11-26T02:42:59.330Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:16.613,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2969,1.91546270805,,265.9659,POLYGON J2000 264.926189 -29.609464 265.819952 -28.34772 266.999103 -28.976357 266.114504 -30.245941,0.772,,,,,16.0,56024.26305362,56024.26079198,195.405696,,b333 +41,17.458,565715,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:17.937,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:17.937,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138627,359.492083,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120229_00538_st_tl_cat.fits,"MINNITI, DANTE",475353,ivo://eso.org/ID?ADP.2014-11-25T14:27:17.937,2014-11-26T02:22:46.647Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:17.937,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2968,1.915384215,,265.9658,POLYGON J2000 264.926196 -29.609425 265.819932 -28.34765 266.998994 -28.976269 266.114421 -30.245883,0.77,,,,,16.0,55987.37564754,55987.37350931,184.743072,,b333 +42,17.411,453268,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:22.710,2012A&A...537A.107S,2,srctbl,measurements,ADP.2014-11-25T14:27:22.710,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141393,359.495078,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120705_00903_st_tl_cat.fits,"MINNITI, DANTE",550084,ivo://eso.org/ID?ADP.2014-11-25T14:27:22.710,2014-11-26T03:07:29.567Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:22.710,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91529101222,,265.9649,POLYGON J2000 264.925246 -29.60505 265.819832 -28.343351 266.99807599999997 -28.972463 266.11262999999997 -30.242003,0.926,,,,,16.0,56114.17978672,56114.177359,209.755008,,b333 +43,17.341,261705,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:23.033,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:23.033,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138575,359.491998,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120421_00249_st_tl.fits.fz,"MINNITI, DANTE",477110,ivo://eso.org/ID?ADP.2014-11-25T14:27:23.033,2014-11-26T02:42:59.530Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:23.033,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2969,1.915304355,0.3414,265.9658,POLYGON J2000 264.926271 -29.60944 265.819931 -28.347713 266.998971 -28.97628 266.114474 -30.245845,0.771,12764,12764,,,16.0,56039.2603558,56039.25824562,182.319552,,b333 +44,17.064,245335,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:24.870,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:24.870,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.14134,359.494993,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120817_00524_st_tl.fits.fz,"MINNITI, DANTE",717351,ivo://eso.org/ID?ADP.2014-11-25T14:27:24.870,2014-11-26T02:42:59.330Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:24.870,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2929,1.91488322666,0.3413,265.9649,POLYGON J2000 264.925654 -29.60552 265.818783 -28.343722 266.997695 -28.972195 266.11373100000003 -30.241826,1.239,12766,12766,,,16.0,56157.14919656,56157.14701095,188.836704,,b333 +45,17.233,249678,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:25.370,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:25.370,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.140938,359.495006,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120719_00421_st_tl.fits.fz,"MINNITI, DANTE",710713,ivo://eso.org/ID?ADP.2014-11-25T14:27:25.370,2014-11-26T03:07:29.677Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:25.370,179.B-2002(D),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2931,1.91504044722,0.3414,265.9653,POLYGON J2000 264.925943 -29.605724 265.81906100000003 -28.344049 266.998181 -28.972404 266.114231 -30.241911,1.068,12765,12765,,,16.0,56128.19693585,56128.19463208,199.045728,,b333 +46,17.401,252691,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:26.450,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:26.450,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141288,359.494908,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120716_00589_st_tl.fits.fz,"MINNITI, DANTE",550084,ivo://eso.org/ID?ADP.2014-11-25T14:27:26.450,2014-11-26T02:42:59.330Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:26.450,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.293,1.91514868277,0.3414,265.9649,POLYGON J2000 264.92546500000003 -29.605465 265.819103 -28.34393 266.997978 -28.972506 266.113497 -30.241877,0.972,12761,12761,,,16.0,56125.10069793,56125.09834929,202.922496,,b333 +47,17.458,259850,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:27.403,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:27.403,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.138627,359.492083,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120229_00538_st_tl.fits.fz,"MINNITI, DANTE",475353,ivo://eso.org/ID?ADP.2014-11-25T14:27:27.403,2014-11-26T03:28:17.353Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:27.403,179.B-2002(B),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2968,1.915384215,0.3414,265.9658,POLYGON J2000 264.926196 -29.609425 265.819932 -28.34765 266.998994 -28.976269 266.114421 -30.245883,0.769,12762,12762,,,16.0,55987.37564754,55987.37350931,184.743072,,b333 +48,17.537,256789,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:31.373,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:31.373,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.14134,359.494993,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120617_00644_st_tl.fits.fz,"MINNITI, DANTE",549433,ivo://eso.org/ID?ADP.2014-11-25T14:27:31.373,2014-11-26T03:28:17.650Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:31.373,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2929,1.9150656475,0.3414,265.9649,POLYGON J2000 264.925456 -29.605238 265.81929 -28.343772 266.997956 -28.972507 266.113273 -30.24181,0.865,12762,12762,,,16.0,56096.15018639,56096.14753655,228.946176,,b333 +49,17.33,249655,application/x-votable+xml;content=datalink,http://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?ADP.2014-11-25T14:27:32.650,2012A&A...537A.107S,2,tile,image,ADP.2014-11-25T14:27:32.650,2.301e-06,1.992e-06,6.9466,1,ESO-VISTA,Ks,0.141021,359.495307,VIRCAM,2020-10-13T14:00:15.610Z,S,1,absolute,,VVV,ivo://eso.org/origfile?v20120719_00066_st_tl.fits.fz,"MINNITI, DANTE",550736,ivo://eso.org/ID?ADP.2014-11-25T14:27:32.650,2014-11-26T03:28:17.553Z,,"IMAGE,JITTER",EDP,,,https://archive.eso.org/dataset/ADP.2014-11-25T14:27:32.650,179.B-2002(C),2015-03-09T10:57:00Z,http://www.eso.org/rm/api/v1/public/releaseDescriptions/54,-29.2928,1.91529899444,0.3414,265.9654,POLYGON J2000 264.92596000000003 -29.605658 265.819027 -28.343714 266.998312 -28.971857 266.11442 -30.241634,1.049,12762,12762,,,16.0,56127.98354773,56127.98133923,190.8144,,b333 diff --git a/astroquery/eso/tests/data/query_inst_sinfoni_sgra.csv b/astroquery/eso/tests/data/query_inst_sinfoni_sgra.csv new file mode 100644 index 0000000000..ddf30dc5bf --- /dev/null +++ b/astroquery/eso/tests/data/query_inst_sinfoni_sgra.csv @@ -0,0 +1,51 @@ +,access_estsize,access_url,datalink_url,date_obs,dec,dec_pnt,det_chip1id,det_chop_ncycles,det_dit,det_expid,det_ndit,dp_cat,dp_id,dp_tech,dp_type,ecl_lat,ecl_lon,exp_start,exposure,filter_path,gal_lat,gal_lon,grat_path,gris_path,ins_mode,instrument,lambda_max,lambda_min,last_mod_date,mjd_obs,ob_id,ob_name,object,obs_mode,origfile,period,pi_coi,prog_id,prog_title,prog_type,ra,ra_pnt,release_date,s_region,slit_path,target,tel_airm_end,tel_airm_start,tel_alt,tel_ambi_fwhm_end,tel_ambi_fwhm_start,tel_ambi_pres_end,tel_ambi_pres_start,tel_ambi_rhum,tel_az,telescope,tpl_expno,tpl_id,tpl_name,tpl_nexp,tpl_seqno,tpl_start +0,16990,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:17:41.161,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:17:41.161,2009-05-24T10:17:41.1609,-29.00833,-29.00833,,,15.0,12847,4,SCIENCE,SINFO.2009-05-24T10:17:41.161,"IFU,NODDING",OBJECT,-5.6082,273.148291,2009-05-24T10:17:41.160Z,60.0,H+K,-0.046406,359.943787,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.137Z,54975.43,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_OBS144_0037.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41679694,266.416797,2010-05-24T10:17:41.160Z,POSITION J2000 266.416797 -29.00833,,SGRA,1.663,1.651,37.219,0.64,0.69,745.85,745.85,14.0,71.224,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +1,16991,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:15:58.031,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:15:58.031,2009-05-24T10:15:58.0314,-29.00833,-29.00833,,,15.0,12846,4,SCIENCE,SINFO.2009-05-24T10:15:58.031,"IFU,NODDING",OBJECT,-5.6082,273.148291,2009-05-24T10:15:58.310Z,60.0,H+K,-0.046406,359.943787,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.200Z,54975.43,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_OBS144_0036.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41679694,266.416797,2010-05-24T10:15:58.030Z,POSITION J2000 266.416797 -29.00833,,SGRA,1.649,1.637,37.586,0.72,0.79,745.78,745.78,14.0,71.306,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +2,15519,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:13:35.203,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:13:35.203,2009-05-24T10:13:35.2032,-28.89505,-28.89505,,,15.0,12845,4,SCIENCE,SINFO.2009-05-24T10:13:35.203,"IFU,NODDING",SKY,-5.500058,273.350059,2009-05-24T10:13:35.203Z,60.0,H+K,0.181584,359.937134,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.350Z,54975.426,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_SKY144_0024.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.190555,266.190555,2010-05-24T10:13:35.203Z,POSITION J2000 266.190555 -28.89505,,SGRA,1.638,1.626,37.885,0.83,0.74,745.82,745.78,14.0,71.518,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +3,15585,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:11:52.894,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:11:52.894,2009-05-24T10:11:52.8934,-28.89505,-28.89505,,,15.0,12844,4,SCIENCE,SINFO.2009-05-24T10:11:52.894,"IFU,NODDING",SKY,-5.500054,273.34992,2009-05-24T10:11:52.893Z,60.0,H+K,0.181466,359.937206,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.410Z,54975.426,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_SKY144_0023.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19071388,266.190714,2010-05-24T10:11:52.893Z,POSITION J2000 266.190714 -28.89505,,SGRA,1.623,1.613,38.256,0.74,0.86,745.78,745.8,14.0,71.601,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +4,16960,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:09:41.578,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:09:41.578,2009-05-24T10:09:41.5780,-29.00805,-29.00805,,,15.0,12843,4,SCIENCE,SINFO.2009-05-24T10:09:41.578,"IFU,NODDING",OBJECT,-5.60791,273.147879,2009-05-24T10:09:41.577Z,60.0,H+K,-0.046616,359.944243,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.320Z,54975.42,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_OBS144_0035.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41727388,266.417274,2010-05-24T10:09:41.577Z,POSITION J2000 266.417274 -29.00805,,SGRA,1.6,1.588,38.953,0.84,0.86,745.78,745.78,14.0,71.605,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +5,16993,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-25T10:09:31.913,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-25T10:09:31.913,2009-05-25T10:09:31.9130,-29.00802,-29.00802,,,15.0,13022,4,SCIENCE,SINFO.2009-05-25T10:09:31.913,"IFU,NODDING",OBJECT,-5.607891,273.148319,2009-05-25T10:09:31.913Z,60.0,H+K,-0.046227,359.944041,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.513Z,54976.42,200187924,GC_IRS16,SGRA,v,SINFONI_IFS_OBS145_0057.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41677388,266.416774,2010-05-25T10:09:31.913Z,POSITION J2000 266.41677400000003 -29.00802,,SGRA,1.629,1.617,38.13,0.79,0.78,745.38,745.38,15.0,71.428,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-25T10:07:40 +6,15294,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-25T10:11:39.890,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-25T10:11:39.890,2009-05-25T10:11:39.8897,-28.89502,-28.89502,,,15.0,13023,4,SCIENCE,SINFO.2009-05-25T10:11:39.890,"IFU,NODDING",SKY,-5.500036,273.350359,2009-05-25T10:11:39.890Z,60.0,H+K,0.181854,359.937004,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.477Z,54976.426,200187924,GC_IRS16,SGRA,v,SINFONI_IFS_SKY145_0027.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.190215,266.190215,2010-05-25T10:11:39.890Z,POSITION J2000 266.19021499999997 -28.89502,,SGRA,1.654,1.642,37.454,0.84,0.91,745.35,745.3,15.0,71.422,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-25T10:07:40 +7,15436,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-25T10:13:27.187,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-25T10:13:27.187,2009-05-25T10:13:27.1868,-28.89502,-28.89502,,,15.0,13024,4,SCIENCE,SINFO.2009-05-25T10:13:27.187,"IFU,NODDING",SKY,-5.50004,273.350499,2009-05-25T10:13:27.187Z,60.0,H+K,0.181973,359.936931,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.073Z,54976.426,200187924,GC_IRS16,SGRA,v,SINFONI_IFS_SKY145_0028.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19005611,266.190056,2010-05-25T10:13:27.187Z,POSITION J2000 266.190056 -28.89502,,SGRA,1.669,1.656,37.07,0.73,0.81,745.32,745.32,16.0,71.334,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-25T10:07:40 +8,16977,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T10:08:02.606,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T10:08:02.606,2009-05-24T10:08:02.6053,-29.00805,-29.00805,,,15.0,12842,4,SCIENCE,SINFO.2009-05-24T10:08:02.606,"IFU,NODDING",OBJECT,-5.60791,273.147879,2009-05-24T10:08:02.607Z,60.0,H+K,-0.046616,359.944243,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.080Z,54975.42,200187889,GC_IRS16,SGRA,v,SINFONI_IFS_OBS144_0034.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41727388,266.417274,2010-05-24T10:08:02.607Z,POSITION J2000 266.417274 -29.00805,,SGRA,1.587,1.577,39.307,0.85,0.81,745.8,745.78,14.0,71.681,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,12,2,2009-05-24T10:07:37 +9,19180,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T09:56:40.239,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T09:56:40.239,2009-05-24T09:56:40.2393,-29.01094,-29.01094,,,600.0,12841,1,SCIENCE,SINFO.2009-05-24T09:56:40.239,"IFU,NODDING",OBJECT,-5.610807,273.148145,2009-05-24T09:56:40.240Z,600.0,H+K,-0.047834,359.941601,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.210Z,54975.414,200187887,GC_huntB-20_a,SGRA,v,SINFONI_IFS_OBS144_0033.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41688888,266.416889,2010-05-24T09:56:40.240Z,POSITION J2000 266.41688899999997 -29.01094,,SGRA,1.569,1.5,41.761,0.81,0.87,745.78,745.78,14.0,72.176,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T09:34:06 +10,18959,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T09:45:30.364,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T09:45:30.364,2009-05-24T09:45:30.3633,-28.89505,-28.89505,,,600.0,12840,1,SCIENCE,SINFO.2009-05-24T09:45:30.364,"IFU,NODDING",SKY,-5.500051,273.349781,2009-05-24T09:45:30.363Z,600.0,H+K,0.181348,359.937279,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.127Z,54975.406,200187887,GC_huntB-20_a,SGRA,v,SINFONI_IFS_SKY144_0022.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19087194,266.190872,2010-05-24T09:45:30.363Z,POSITION J2000 266.190872 -28.89505,,SGRA,1.5,1.439,43.975,0.77,0.79,745.8,745.78,14.0,72.751,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T09:34:06 +11,19204,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T09:34:37.023,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T09:34:37.023,2009-05-24T09:34:37.0231,-29.01094,-29.01094,,,600.0,12839,1,SCIENCE,SINFO.2009-05-24T09:34:37.023,"IFU,NODDING",OBJECT,-5.610806,273.148117,2009-05-24T09:34:37.230Z,600.0,H+K,-0.047858,359.941616,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.063Z,54975.4,200187887,GC_huntB-20_a,SGRA,v,SINFONI_IFS_OBS144_0032.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41692111,266.416921,2010-05-24T09:34:37.023Z,POSITION J2000 266.416921 -29.01094,,SGRA,1.429,1.376,46.558,0.68,0.73,745.78,745.7,14.0,73.023,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T09:34:06 +12,18494,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T09:08:52.549,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T09:08:52.549,2009-05-24T09:08:52.5491,-28.89507,-28.89507,,,600.0,12838,1,SCIENCE,SINFO.2009-05-24T09:08:52.549,"IFU,NODDING",SKY,-5.500072,273.349814,2009-05-24T09:08:52.547Z,600.0,H+K,0.181366,359.937244,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.250Z,54975.383,200187883,GC_huntB-26_a,SGRA,v,SINFONI_IFS_SKY144_0021.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19083305,266.190833,2010-05-24T09:08:52.550Z,POSITION J2000 266.190833 -28.89507,,SGRA,1.309,1.269,51.971,0.94,0.79,745.7,745.8,14.0,73.927,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T08:57:34 +13,18531,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:57:54.252,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:57:54.252,2009-05-24T08:57:54.2513,-29.00826,-29.00826,,,600.0,12837,1,SCIENCE,SINFO.2009-05-24T08:57:54.252,"IFU,NODDING",OBJECT,-5.608112,273.147573,2009-05-24T08:57:54.250Z,600.0,H+K,-0.04698,359.94422,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.457Z,54975.375,200187883,GC_huntB-26_a,SGRA,v,SINFONI_IFS_OBS144_0031.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41761611,266.417616,2010-05-24T08:57:54.253Z,POSITION J2000 266.417616 -29.00826,,SGRA,1.263,1.227,54.58,0.76,0.63,745.78,745.78,14.0,73.976,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T08:57:34 +14,18632,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:46:41.057,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:46:41.057,2009-05-24T08:46:41.0576,-29.00808,-29.00808,,,600.0,12836,1,SCIENCE,SINFO.2009-05-24T08:46:41.057,"IFU,NODDING",OBJECT,-5.607954,273.14847,2009-05-24T08:46:41.573Z,600.0,H+K,-0.046128,359.943911,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.387Z,54975.367,200187881,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0030.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.4166,266.4166,2010-05-24T08:46:41.057Z,POSITION J2000 266.4166 -29.00808,,SGRA,1.223,1.191,57.036,0.65,0.71,745.8,745.8,13.0,74.114,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T08:24:39 +15,18519,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:35:46.888,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:35:46.888,2009-05-24T08:35:46.8874,-28.89497,-28.89497,,,600.0,12835,1,SCIENCE,SINFO.2009-05-24T08:35:46.888,"IFU,NODDING",SKY,-5.49997,273.349752,2009-05-24T08:35:46.887Z,600.0,H+K,0.181364,359.937363,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:47.367Z,54975.36,200187881,GC_SStars_F3,SGRA,v,SINFONI_IFS_SKY144_0020.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19090694,266.190907,2010-05-24T08:35:46.887Z,POSITION J2000 266.190907 -28.89497,,SGRA,1.192,1.164,59.227,0.63,0.57,745.82,745.88,14.0,74.378,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T08:24:39 +16,18604,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:24:53.546,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:24:53.546,2009-05-24T08:24:53.5462,-29.00808,-29.00808,,,600.0,12834,1,SCIENCE,SINFO.2009-05-24T08:24:53.546,"IFU,NODDING",OBJECT,-5.607954,273.148462,2009-05-24T08:24:53.547Z,600.0,H+K,-0.046135,359.943915,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:48.767Z,54975.35,200187881,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0029.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41660888,266.416609,2010-05-24T08:24:53.547Z,POSITION J2000 266.416609 -29.00808,,SGRA,1.159,1.134,61.81,0.6,0.54,745.9,745.88,13.0,74.089,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T08:24:39 +17,19438,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:19:00.161,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:19:00.161,2009-05-24T08:19:00.1609,-29.00848,-29.00848,,,300.0,12833,1,SCIENCE,SINFO.2009-05-24T08:19:00.161,"IFU,NODDING",OBJECT,-5.608377,273.14936,2009-05-24T08:19:00.160Z,300.0,H+K,-0.045572,359.943103,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.260Z,54975.348,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0028.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41557611,266.415576,2010-05-24T08:19:00.160Z,POSITION J2000 266.415576 -29.00848,,SGRA,1.133,1.121,63.098,0.52,0.6,745.88,745.9,14.0,73.996,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +18,19115,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:13:05.156,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:13:05.156,2009-05-24T08:13:05.1559,-28.89506,-28.89506,,,300.0,12832,1,SCIENCE,SINFO.2009-05-24T08:13:05.156,"IFU,NODDING",SKY,-5.500063,273.349848,2009-05-24T08:13:05.157Z,300.0,H+K,0.1814,359.937235,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.170Z,54975.344,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_SKY144_0019.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.190795,266.190795,2010-05-24T08:13:05.157Z,POSITION J2000 266.190795 -28.89506,,SGRA,1.121,1.11,64.202,0.55,0.54,745.85,745.88,13.0,74.142,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +19,19353,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:07:06.018,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:07:06.018,2009-05-24T08:07:06.0182,-29.00854,-29.00854,,,300.0,12831,1,SCIENCE,SINFO.2009-05-24T08:07:06.018,"IFU,NODDING",OBJECT,-5.608436,273.14933,2009-05-24T08:07:06.183Z,300.0,H+K,-0.045627,359.943066,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.337Z,54975.34,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0027.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41560805,266.415608,2010-05-24T08:07:06.017Z,POSITION J2000 266.415608 -29.00854,,SGRA,1.107,1.097,65.702,0.57,0.46,745.9,745.88,14.0,73.664,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +20,19354,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T08:01:36.632,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T08:01:36.632,2009-05-24T08:01:36.6323,-29.00854,-29.00854,,,300.0,12830,1,SCIENCE,SINFO.2009-05-24T08:01:36.632,"IFU,NODDING",OBJECT,-5.608436,273.14933,2009-05-24T08:01:36.633Z,300.0,H+K,-0.045627,359.943066,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.647Z,54975.336,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0026.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41560805,266.415608,2010-05-24T08:01:36.633Z,POSITION J2000 266.415608 -29.00854,,SGRA,1.097,1.087,66.904,0.46,0.6,745.88,745.88,13.0,73.429,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +21,18441,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:55:43.279,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:55:43.279,2009-05-24T07:55:43.2781,-28.89506,-28.89506,,,300.0,12829,1,SCIENCE,SINFO.2009-05-24T07:55:43.279,"IFU,NODDING",SKY,-5.500062,273.34982,2009-05-24T07:55:43.277Z,300.0,H+K,0.181376,359.937249,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:47.327Z,54975.332,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_SKY144_0018.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19082694,266.190827,2010-05-24T07:55:43.280Z,POSITION J2000 266.190827 -28.89506,,SGRA,1.087,1.078,68.003,0.56,0.57,745.85,745.88,13.0,73.465,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +22,19415,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:49:49.922,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:49:49.922,2009-05-24T07:49:49.9221,-29.00848,-29.00848,,,300.0,12828,1,SCIENCE,SINFO.2009-05-24T07:49:49.922,"IFU,NODDING",OBJECT,-5.608375,273.149304,2009-05-24T07:49:49.923Z,300.0,H+K,-0.04562,359.943132,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.500Z,54975.33,200187878,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0025.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41564,266.41564,2010-05-24T07:49:49.923Z,POSITION J2000 266.41564 -29.00848,,SGRA,1.076,1.068,69.472,0.59,0.48,745.88,745.9,14.0,72.707,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:49:26 +23,18715,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:38:59.843,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:38:59.843,2009-05-24T07:38:59.8427,-29.00808,-29.00808,,,600.0,12827,1,SCIENCE,SINFO.2009-05-24T07:38:59.843,"IFU,NODDING",OBJECT,-5.607953,273.148434,2009-05-24T07:38:59.843Z,600.0,H+K,-0.046159,359.943929,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:48.150Z,54975.32,200187875,GC_SStars_F1,SGRA,v,SINFONI_IFS_OBS144_0024.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41664111,266.416641,2010-05-24T07:38:59.843Z,POSITION J2000 266.416641 -29.00808,,SGRA,1.067,1.052,71.824,0.58,-1.0,745.88,745.98,13.0,71.69,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:16:59 +24,18494,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:28:04.840,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:28:04.840,2009-05-24T07:28:04.8396,-28.89513,-28.89513,,,600.0,12826,1,SCIENCE,SINFO.2009-05-24T07:28:04.840,"IFU,NODDING",SKY,-5.500132,273.349818,2009-05-24T07:28:04.840Z,600.0,H+K,0.18134,359.93719,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:47.470Z,54975.312,200187875,GC_SStars_F1,SGRA,v,SINFONI_IFS_SKY144_0017.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19082694,266.190827,2010-05-24T07:28:04.840Z,POSITION J2000 266.190827 -28.89513,,SGRA,1.053,1.04,74.004,-1.0,0.49,746.0,746.0,14.0,70.723,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:16:59 +25,18629,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:17:12.326,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:17:12.326,2009-05-24T07:17:12.3264,-29.00807,-29.00807,,,600.0,12825,1,SCIENCE,SINFO.2009-05-24T07:17:12.326,"IFU,NODDING",OBJECT,-5.607943,273.148427,2009-05-24T07:17:12.327Z,600.0,H+K,-0.04616,359.943942,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.463Z,54975.305,200187875,GC_SStars_F1,SGRA,v,SINFONI_IFS_OBS144_0023.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41665,266.41665,2010-05-24T07:17:12.327Z,POSITION J2000 266.41665 -29.00807,,SGRA,1.039,1.028,76.488,0.48,0.61,745.98,746.08,14.0,67.926,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T07:16:59 +26,19353,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:11:07.368,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:11:07.368,2009-05-24T07:11:07.3673,-29.00847,-29.00847,,,300.0,12824,1,SCIENCE,SINFO.2009-05-24T07:11:07.368,"IFU,NODDING",OBJECT,-5.608366,273.149323,2009-05-24T07:11:07.367Z,300.0,H+K,-0.045598,359.94313,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.567Z,54975.3,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0022.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41561805,266.415618,2010-05-24T07:11:07.367Z,POSITION J2000 266.415618 -29.00847,,SGRA,1.028,1.023,77.764,0.55,0.53,746.1,746.08,15.0,66.196,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +27,18517,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T07:05:12.363,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T07:05:12.363,2009-05-24T07:05:12.3632,-28.89505,-28.89505,,,300.0,12823,1,SCIENCE,SINFO.2009-05-24T07:05:12.363,"IFU,NODDING",SKY,-5.500052,273.349811,2009-05-24T07:05:12.363Z,300.0,H+K,0.181374,359.937263,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:48.987Z,54975.297,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_SKY144_0016.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19083694,266.190837,2010-05-24T07:05:12.363Z,POSITION J2000 266.190837 -28.89505,,SGRA,1.023,1.019,78.842,0.49,0.64,746.13,746.18,15.0,64.967,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +28,19333,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:59:20.659,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:59:20.659,2009-05-24T06:59:20.6589,-29.00853,-29.00853,,,300.0,12822,1,SCIENCE,SINFO.2009-05-24T06:59:20.659,"IFU,NODDING",OBJECT,-5.608425,273.149295,2009-05-24T06:59:20.657Z,300.0,H+K,-0.045653,359.943093,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.283Z,54975.293,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0021.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41564888,266.415649,2010-05-24T06:59:20.660Z,POSITION J2000 266.41564900000003 -29.00853,,SGRA,1.018,1.015,80.176,0.64,0.54,746.18,746.22,16.0,61.337,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +29,19351,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:53:51.274,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:53:51.274,2009-05-24T06:53:51.2741,-29.00853,-29.00853,,,300.0,12821,1,SCIENCE,SINFO.2009-05-24T06:53:51.274,"IFU,NODDING",OBJECT,-5.608425,273.149295,2009-05-24T06:53:51.273Z,300.0,H+K,-0.045653,359.943093,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.953Z,54975.29,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0020.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41564888,266.415649,2010-05-24T06:53:51.273Z,POSITION J2000 266.41564900000003 -29.00853,,SGRA,1.015,1.012,81.258,0.54,-1.0,746.22,746.28,16.0,58.04,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +30,18581,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:47:55.441,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:47:55.441,2009-05-24T06:47:55.4411,-28.89505,-28.89505,,,300.0,12820,1,SCIENCE,SINFO.2009-05-24T06:47:55.441,"IFU,NODDING",SKY,-5.500051,273.349784,2009-05-24T06:47:55.440Z,300.0,H+K,0.181351,359.937277,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.667Z,54975.285,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_SKY144_0015.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19086805,266.190868,2010-05-24T06:47:55.440Z,POSITION J2000 266.190868 -28.89505,,SGRA,1.012,1.009,82.269,0.37,0.42,746.27,746.28,16.0,54.886,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +31,19455,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:42:08.689,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:42:08.689,2009-05-24T06:42:08.6886,-29.00847,-29.00847,,,300.0,12819,1,SCIENCE,SINFO.2009-05-24T06:42:08.689,"IFU,NODDING",OBJECT,-5.608364,273.149268,2009-05-24T06:42:08.687Z,300.0,H+K,-0.045645,359.943159,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.447Z,54975.277,200187871,GC_IRS13_HK_LGS_short,SGRA,v,SINFONI_IFS_OBS144_0019.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41568111,266.415681,2010-05-24T06:42:08.690Z,POSITION J2000 266.415681 -29.00847,,SGRA,1.009,1.007,83.389,0.43,0.49,746.3,746.28,16.0,47.242,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:41:46 +32,18470,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:19:05.204,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:19:05.204,2009-05-24T06:19:05.2048,-28.89513,-28.89513,,,600.0,12818,1,SCIENCE,SINFO.2009-05-24T06:19:05.204,"IFU,NODDING",SKY,-5.500131,273.349777,2009-05-24T06:19:05.203Z,600.0,H+K,0.181305,359.937211,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.493Z,54975.26,200187867,GC_SStars_F1,SGRA,v,SINFONI_IFS_SKY144_0014.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19087388,266.190874,2010-05-24T06:19:05.203Z,POSITION J2000 266.190874 -28.89513,,SGRA,1.004,1.003,85.73,0.49,0.56,746.32,746.4,16.0,359.899,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:08:03 +33,18166,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T06:08:17.646,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T06:08:17.646,2009-05-24T06:08:17.6463,-29.00807,-29.00807,,,600.0,12817,1,SCIENCE,SINFO.2009-05-24T06:08:17.646,"IFU,NODDING",OBJECT,-5.607942,273.148385,2009-05-24T06:08:17.647Z,600.0,H+K,-0.046196,359.943964,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.043Z,54975.254,200187867,GC_SStars_F1,SGRA,v,SINFONI_IFS_OBS144_0018.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41669805,266.416698,2010-05-24T06:08:17.647Z,POSITION J2000 266.416698 -29.00807,,SGRA,1.003,1.004,84.893,0.56,0.45,746.4,746.42,16.0,329.777,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T06:08:03 +34,18626,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:55:57.060,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:55:57.060,2009-05-24T05:55:57.0605,-29.00807,-29.00807,,,600.0,12816,1,SCIENCE,SINFO.2009-05-24T05:55:57.060,"IFU,NODDING",OBJECT,-5.607942,273.148385,2009-05-24T05:55:57.603Z,600.0,H+K,-0.046196,359.943964,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.420Z,54975.246,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0017.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41669805,266.416698,2010-05-24T05:55:57.060Z,POSITION J2000 266.416698 -29.00807,,SGRA,1.004,1.007,83.06,-1.0,0.56,746.5,746.48,16.0,310.489,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +35,18439,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:44:58.760,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:44:58.760,2009-05-24T05:44:58.7598,-28.89496,-28.89496,,,600.0,12815,1,SCIENCE,SINFO.2009-05-24T05:44:58.760,"IFU,NODDING",SKY,-5.499958,273.349674,2009-05-24T05:44:58.760Z,600.0,H+K,0.181302,359.937412,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.050Z,54975.24,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_SKY144_0013.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19099611,266.190996,2010-05-24T05:44:58.760Z,POSITION J2000 266.190996 -28.89496,,SGRA,1.007,1.012,81.253,0.59,0.6,746.48,746.48,16.0,301.09,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +36,18733,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:34:11.207,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:34:11.207,2009-05-24T05:34:11.2062,-29.00807,-29.00807,,,600.0,12814,1,SCIENCE,SINFO.2009-05-24T05:34:11.207,"IFU,NODDING",OBJECT,-5.607942,273.148392,2009-05-24T05:34:11.207Z,600.0,H+K,-0.046189,359.94396,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.970Z,54975.23,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0016.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41668888,266.416689,2010-05-24T05:34:11.207Z,POSITION J2000 266.416689 -29.00807,,SGRA,1.013,1.019,78.861,0.66,0.76,746.53,746.58,15.0,295.684,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +37,18601,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:23:46.788,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:23:46.788,2009-05-24T05:23:46.7879,-29.00807,-29.00807,,,600.0,12813,1,SCIENCE,SINFO.2009-05-24T05:23:46.788,"IFU,NODDING",OBJECT,-5.607942,273.148392,2009-05-24T05:23:46.787Z,600.0,H+K,-0.046189,359.94396,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.723Z,54975.227,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0015.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41668888,266.416689,2010-05-24T05:23:46.787Z,POSITION J2000 266.416689 -29.00807,,SGRA,1.019,1.028,76.691,0.76,0.73,746.58,746.5,15.0,292.315,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +38,18386,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:12:48.488,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:12:48.488,2009-05-24T05:12:48.4882,-28.89496,-28.89496,,,600.0,12812,1,SCIENCE,SINFO.2009-05-24T05:12:48.488,"IFU,NODDING",SKY,-5.499958,273.349674,2009-05-24T05:12:48.487Z,600.0,H+K,0.181302,359.937412,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.007Z,54975.22,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_SKY144_0012.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19099611,266.190996,2010-05-24T05:12:48.487Z,POSITION J2000 266.190996 -28.89496,,SGRA,1.027,1.037,74.577,0.79,0.79,746.55,746.53,15.0,289.712,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +39,18631,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-24T05:01:55.973,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-24T05:01:55.973,2009-05-24T05:01:55.9729,-29.00807,-29.00807,,,600.0,12811,1,SCIENCE,SINFO.2009-05-24T05:01:55.973,"IFU,NODDING",OBJECT,-5.607942,273.148385,2009-05-24T05:01:55.973Z,600.0,H+K,-0.046196,359.943964,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.660Z,54975.21,200187862,GC_SStars_F3,SGRA,v,SINFONI_IFS_OBS144_0014.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41669805,266.416698,2010-05-24T05:01:55.973Z,POSITION J2000 266.416698 -29.00807,,SGRA,1.039,1.051,72.018,0.79,0.92,746.55,746.58,15.0,288.407,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-24T05:01:41 +40,18467,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T10:04:28.030,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T10:04:28.030,2009-05-23T10:04:28.0299,-29.00812,-29.00812,,,400.0,12706,1,SCIENCE,SINFO.2009-05-23T10:04:28.030,"IFU,NODDING",OBJECT,-5.60799,273.148311,2009-05-23T10:04:28.297Z,400.0,H+K,-0.046283,359.943959,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.780Z,54974.418,200187826,GC_SStars_F1-1,SGRA,v,SINFONI_IFS_OBS143_0027.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678,266.41678,2010-05-23T10:04:28.030Z,POSITION J2000 266.41678 -29.00812,,SGRA,1.572,1.525,40.922,0.5,-1.0,745.23,745.2,6.0,72.015,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T09:41:41 +41,18391,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:57:17.820,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:57:17.820,2009-05-23T09:57:17.8196,-29.00812,-29.00812,,,400.0,12705,1,SCIENCE,SINFO.2009-05-23T09:57:17.820,"IFU,NODDING",OBJECT,-5.60799,273.148311,2009-05-23T09:57:17.820Z,400.0,H+K,-0.046283,359.943959,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:50.237Z,54974.414,200187826,GC_SStars_F1-1,SGRA,v,SINFONI_IFS_OBS143_0026.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678,266.41678,2010-05-23T09:57:17.820Z,POSITION J2000 266.41678 -29.00812,,SGRA,1.523,1.479,42.476,-1.0,0.45,745.2,745.2,6.0,72.318,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T09:41:41 +42,18365,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:49:27.941,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:49:27.941,2009-05-23T09:49:27.9409,-28.89517,-28.89517,,,400.0,12704,1,SCIENCE,SINFO.2009-05-23T09:49:27.941,"IFU,NODDING",SKY,-5.500169,273.349696,2009-05-23T09:49:27.940Z,400.0,H+K,0.181216,359.937219,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:48.157Z,54974.41,200187826,GC_SStars_F1-1,SGRA,v,SINFONI_IFS_SKY143_0019.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.190965,266.190965,2010-05-23T09:49:27.940Z,POSITION J2000 266.190965 -28.89517,,SGRA,1.48,1.439,43.967,0.41,0.51,745.15,745.08,6.0,72.75,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T09:41:41 +43,18326,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:41:55.306,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:41:55.306,2009-05-23T09:41:55.3061,-29.00811,-29.00811,,,400.0,12703,1,SCIENCE,SINFO.2009-05-23T09:41:55.306,"IFU,NODDING",OBJECT,-5.60798,273.148304,2009-05-23T09:41:55.307Z,400.0,H+K,-0.046285,359.943971,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:52.300Z,54974.402,200187826,GC_SStars_F1-1,SGRA,v,SINFONI_IFS_OBS143_0025.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678888,266.416789,2010-05-23T09:41:55.307Z,POSITION J2000 266.416789 -29.00811,,SGRA,1.43,1.393,45.82,0.51,0.49,745.08,745.1,6.0,72.91,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T09:41:41 +44,19038,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:30:27.112,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:30:27.112,2009-05-23T09:30:27.1124,-28.8951,-28.8951,,,600.0,12702,1,SCIENCE,SINFO.2009-05-23T09:30:27.112,"IFU,NODDING",SKY,-5.500097,273.349647,2009-05-23T09:30:27.113Z,600.0,H+K,0.18121,359.937305,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:51.260Z,54974.395,200187823,GC_huntB-21_b,SGRA,v,SINFONI_IFS_SKY143_0018.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19102194,266.191022,2010-05-23T09:30:27.113Z,POSITION J2000 266.191022 -28.8951,,SGRA,1.391,1.342,48.112,0.51,0.6,745.08,745.08,6.0,73.431,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,3,2,2009-05-23T09:19:08 +45,19296,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:19:34.594,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:19:34.594,2009-05-23T09:19:34.5943,-29.01002,-29.01002,,,600.0,12701,1,SCIENCE,SINFO.2009-05-23T09:19:34.594,"IFU,NODDING",OBJECT,-5.609921,273.149513,2009-05-23T09:19:34.593Z,600.0,H+K,-0.046212,359.941689,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.357Z,54974.387,200187823,GC_huntB-21_b,SGRA,v,SINFONI_IFS_OBS143_0024.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41535805,266.415358,2010-05-23T09:19:34.593Z,POSITION J2000 266.41535799999997 -29.01002,,SGRA,1.335,1.292,50.691,0.6,0.7,745.08,745.1,6.0,73.597,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,3,2,2009-05-23T09:19:08 +46,18708,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T09:06:26.696,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T09:06:26.696,2009-05-23T09:06:26.6960,-29.00811,-29.00811,,,600.0,12700,1,SCIENCE,SINFO.2009-05-23T09:06:26.696,"IFU,NODDING",OBJECT,-5.60798,273.148304,2009-05-23T09:06:26.697Z,600.0,H+K,-0.046285,359.943971,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:47.387Z,54974.38,200187819,GC_SStars_F2,SGRA,v,SINFONI_IFS_OBS143_0023.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678888,266.416789,2010-05-23T09:06:26.697Z,POSITION J2000 266.416789 -29.00811,,SGRA,1.28,1.242,53.565,0.72,0.86,745.1,745.13,6.0,73.895,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T08:11:34 +47,18553,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T08:55:18.480,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T08:55:18.480,2009-05-23T08:55:18.4799,-28.895,-28.895,,,600.0,12699,1,SCIENCE,SINFO.2009-05-23T08:55:18.480,"IFU,NODDING",SKY,-5.500001,273.349803,2009-05-23T08:55:18.480Z,600.0,H+K,0.181392,359.93731,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:49.803Z,54974.37,200187819,GC_SStars_F2,SGRA,v,SINFONI_IFS_SKY143_0017.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.19084805,266.190848,2010-05-23T08:55:18.480Z,POSITION J2000 266.190848 -28.895,,SGRA,1.242,1.209,55.801,0.83,0.67,745.18,745.18,5.0,74.256,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T08:11:34 +48,18629,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T08:44:21.007,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T08:44:21.007,2009-05-23T08:44:21.0071,-29.00811,-29.00811,,,600.0,12698,1,SCIENCE,SINFO.2009-05-23T08:44:21.007,"IFU,NODDING",OBJECT,-5.60798,273.148309,2009-05-23T08:44:21.737Z,600.0,H+K,-0.04628,359.943969,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:46.697Z,54974.363,200187819,GC_SStars_F2,SGRA,v,SINFONI_IFS_OBS143_0022.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678305,266.416783,2010-05-23T08:44:21.007Z,POSITION J2000 266.416783 -29.00811,,SGRA,1.203,1.174,58.406,0.66,0.82,745.2,745.2,5.0,74.151,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T08:11:34 +49,18558,https://dataportal.eso.org/dataPortal/file/SINFO.2009-05-23T08:33:50.804,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2009-05-23T08:33:50.804,2009-05-23T08:33:50.8041,-29.00811,-29.00811,,,600.0,12697,1,SCIENCE,SINFO.2009-05-23T08:33:50.804,"IFU,NODDING",OBJECT,-5.60798,273.148309,2009-05-23T08:33:50.803Z,600.0,H+K,-0.04628,359.943969,H+K,,IR_SPECTROSCOPY,SINFONI,,,2011-07-15T03:56:48.690Z,54974.355,200187819,GC_SStars_F2,SGRA,v,SINFONI_IFS_OBS143_0021.fits,83,GENZEL/ GILLESSEN/ ALEXANDER/ MARTINS/ PAUMARD/ LEVIN/ NAYAKSHIN/ EISENHAUER/ FALCKE/ GERHARD/ CLENET/ BARTKO/ GOLDWURM/ YUSEF-ZADEH/ PORQUET/ MENTEN/ QUATAERT/ REID/ ABUTER/ HAUBOIS/ DODDS-EDEN/ BOWER/ GROSSO/ MASCETTI/ OTT/ PERETS/ PERRIN/,183.B-0100(B),THE GALACTIC CENTER: A UNIQUE LABORATORY FOR STUDYING FUNDAMENTAL PHYSICAL PROCESSES NEAR BLACK HOLES,4,266.41678305,266.416783,2010-05-23T08:33:50.803Z,POSITION J2000 266.416783 -29.00811,,SGRA,1.173,1.146,60.707,0.82,1.17,745.2,745.23,5.0,74.135,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2009-05-23T08:11:34 diff --git a/astroquery/eso/tests/data/query_list_instruments.csv b/astroquery/eso/tests/data/query_list_instruments.csv new file mode 100644 index 0000000000..6bb131fddf --- /dev/null +++ b/astroquery/eso/tests/data/query_list_instruments.csv @@ -0,0 +1,28 @@ +,table_name +0,ist.amber +1,ist.apex +2,ist.crires +3,ist.eris +4,ist.espresso +5,ist.fiat +6,ist.fors1 +7,ist.fors2 +8,ist.giraffe +9,ist.gravity +10,ist.hawki +11,ist.isaac +12,ist.kmos +13,ist.matisse +14,ist.midi +15,ist.muse +16,ist.naco +17,ist.omegacam +18,ist.pionier +19,ist.sinfoni +20,ist.sphere +21,ist.uves +22,ist.vimos +23,ist.vircam +24,ist.visir +25,ist.wlgsu +26,ist.xshooter diff --git a/astroquery/eso/tests/data/query_list_surveys.csv b/astroquery/eso/tests/data/query_list_surveys.csv new file mode 100644 index 0000000000..405b4afd66 --- /dev/null +++ b/astroquery/eso/tests/data/query_list_surveys.csv @@ -0,0 +1,87 @@ +,obs_collection +0,081.C-0827 +1,092.A-0472 +2,096.B-0054 +3,1100.A-0528 +4,1101.A-0127 +5,193.D-0232 +6,195.B-0283 +7,196.B-0578 +8,196.D-0214 +9,197.A-0384 +10,198.A-0708 +11,60.A-9284H +12,60.A-9493 +13,ADHOC +14,ALCOHOLS +15,ALLSMOG +16,ALMA +17,AMAZE +18,AMBRE +19,APEX-SciOps +20,ATLASGAL +21,CAFFEINE +22,ENTROPY +23,ePESSTOplus +24,ERIS-NIX +25,ERIS-SPIFFIER +26,ESPRESSO +27,ESSENCE +28,FDS +29,FEROS +30,Fornax3D +31,FORS2-SPEC +32,GAIAESO +33,GCAV +34,GIRAFFE +35,GOODS_FORS2 +36,GOODS_ISAAC +37,GOODS_VIMOS_IMAG +38,GOODS_VIMOS_SPEC +39,GW170817 +40,HARPS +41,HAWKI +42,HUGS +43,INSPIRE +44,KIDS +45,KMOS +46,LEGA-C +47,LESS +48,MAGIC +49,MUSE +50,MUSE-DEEP +51,MUSE-STD +52,MW-BULGE-PSFPHOT +53,NGTS +54,PENELLOPE +55,PESSTO +56,PHANGS +57,PIONIER +58,SHARKS +59,SPHERE +60,SUPER +61,UltraVISTA +62,UVES +63,UVES_SQUAD +64,VANDELS +65,VEGAS +66,VEILS +67,VEXAS +68,VHS +69,VIDEO +70,VIKING +71,VIMOS +72,VINROUGE +73,VIPERS +74,VISIONS +75,VMC +76,VPHASplus +77,VST-ATLAS +78,VVV +79,VVVX +80,XQ-100 +81,XSGRB +82,XSHOOTER +83,XShootU +84,XSL +85,ZCOSMOS diff --git a/astroquery/eso/tests/data/query_main_sgra.csv b/astroquery/eso/tests/data/query_main_sgra.csv new file mode 100644 index 0000000000..d651d98eb7 --- /dev/null +++ b/astroquery/eso/tests/data/query_main_sgra.csv @@ -0,0 +1,24 @@ +,access_estsize,access_url,datalink_url,date_obs,dec,dec_pnt,det_chip1id,det_chop_ncycles,det_dit,det_expid,det_ndit,dp_cat,dp_id,dp_tech,dp_type,ecl_lat,ecl_lon,exp_start,exposure,filter_path,gal_lat,gal_lon,grat_path,gris_path,ins_mode,instrument,lambda_max,lambda_min,last_mod_date,mjd_obs,ob_id,ob_name,object,obs_mode,origfile,period,pi_coi,prog_id,prog_title,prog_type,ra,ra_pnt,release_date,s_region,slit_path,target,tel_airm_end,tel_airm_start,tel_alt,tel_ambi_fwhm_end,tel_ambi_fwhm_start,tel_ambi_pres_end,tel_ambi_pres_start,tel_ambi_rhum,tel_az,telescope,tpl_expno,tpl_id,tpl_name,tpl_nexp,tpl_seqno,tpl_start +0,18026,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:05:24.328,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:05:24.328,2013-08-27T01:05:24.3279,-29.00877,-29.00877,,,30.0,6573,10,SCIENCE,SINFO.2013-08-27T01:05:24.328,"IFU,NODDING",OBJECT,-5.608683,273.150028,2013-08-27T01:05:24.327Z,300.0,H+K,-0.045149,359.942505,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:35.663Z,56531.047,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_OBS239_0003.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.41480694,266.414807,2014-08-27T04:03:31.840Z,POSITION J2000 266.414807 -29.00877,,SGR A,1.036,1.03,76.161,1.32,1.23,746.0,745.88,8.0,68.313,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +1,17297,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:11:59.984,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:11:59.984,2013-08-27T01:11:59.9840,-28.89525,-28.89525,,,30.0,6574,10,SCIENCE,SINFO.2013-08-27T01:11:59.984,"IFU,NODDING",SKY,-5.500259,273.350081,2013-08-27T01:11:59.983Z,300.0,H+K,0.181503,359.936949,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:36.157Z,56531.05,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_SKY239_0001.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.19052388,266.190524,2014-08-27T04:03:31.840Z,POSITION J2000 266.190524 -28.89525,,SGR A,1.044,1.037,74.582,1.43,1.32,745.98,745.98,8.0,70.285,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +2,18125,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:18:45.068,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:18:45.068,2013-08-27T01:18:45.0684,-29.00877,-29.00877,,,30.0,6575,10,SCIENCE,SINFO.2013-08-27T01:18:45.068,"IFU,NODDING",OBJECT,-5.608683,273.150015,2013-08-27T01:18:45.683Z,300.0,H+K,-0.04516,359.942512,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:31.737Z,56531.055,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_OBS239_0004.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.41482194,266.414822,2014-08-27T04:03:31.840Z,POSITION J2000 266.414822 -29.00877,,SGR A,1.051,1.044,73.302,1.63,1.41,745.93,745.98,8.0,70.815,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +3,18281,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:24:50.875,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:24:50.875,2013-08-27T01:24:50.8755,-29.00877,-29.00877,,,30.0,6576,10,SCIENCE,SINFO.2013-08-27T01:24:50.875,"IFU,NODDING",OBJECT,-5.608683,273.150015,2013-08-27T01:24:50.877Z,300.0,H+K,-0.04516,359.942512,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:35.987Z,56531.06,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_OBS239_0005.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.41482194,266.414822,2014-08-27T04:03:31.840Z,POSITION J2000 266.414822 -29.00877,,SGR A,1.059,1.051,71.986,1.37,1.63,745.98,745.93,8.0,71.611,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +4,17160,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:31:26.534,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:31:26.534,2013-08-27T01:31:26.5336,-28.89525,-28.89525,,,30.0,6577,10,SCIENCE,SINFO.2013-08-27T01:31:26.534,"IFU,NODDING",SKY,-5.500259,273.350081,2013-08-27T01:31:26.533Z,300.0,H+K,0.181503,359.936949,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:38.880Z,56531.062,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_SKY239_0002.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.19052388,266.190524,2014-08-27T04:03:31.840Z,POSITION J2000 266.190524 -28.89525,,SGR A,1.07,1.062,70.381,1.45,1.42,745.98,745.98,7.0,72.709,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +5,18094,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-27T01:38:08.024,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-27T01:38:08.024,2013-08-27T01:38:08.0242,-29.00877,-29.00877,,,30.0,6578,10,SCIENCE,SINFO.2013-08-27T01:38:08.024,"IFU,NODDING",OBJECT,-5.608683,273.150028,2013-08-27T01:38:08.243Z,300.0,H+K,-0.045149,359.942505,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-27T04:02:36.347Z,56531.066,200282039,Id362_LGS,SGR A,v,SINFONI_IFS_OBS239_0006.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.41480694,266.414807,2014-08-27T04:03:31.840Z,POSITION J2000 266.414807 -29.00877,,SGR A,1.08,1.07,69.104,1.73,1.35,745.98,745.98,8.0,72.838,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-27T01:05:10 +6,17301,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:04:56.944,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:04:56.944,2013-08-31T00:04:56.9441,-29.00465,-29.00465,,,30.0,7125,10,SCIENCE,SINFO.2013-08-31T00:04:56.944,"IFU,NODDING",OBJECT,-5.604208,273.135768,2013-08-31T00:04:56.943Z,300.0,H+K,-0.055209,359.95347,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T02:31:25.947Z,56535.004,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0001.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43115694,266.431157,2014-08-31T02:32:04.803Z,POSITION J2000 266.431157 -29.00465,,SGR A,1.006,1.004,84.621,0.59,0.7,745.1,745.1,4.0,34.744,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +7,17215,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:11:25.942,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:11:25.942,2013-08-31T00:11:25.9420,-28.89322,-28.89322,,,30.0,7126,10,SCIENCE,SINFO.2013-08-31T00:11:25.942,"IFU,NODDING",SKY,-5.498241,273.35057,2013-08-31T00:11:25.940Z,300.0,H+K,0.182933,359.938454,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T02:31:25.610Z,56535.008,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_SKY243_0001.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.19003,266.19003,2014-08-31T02:32:04.803Z,POSITION J2000 266.19003 -28.89322,,SGR A,1.008,1.006,83.578,0.67,0.59,745.18,745.1,4.0,47.181,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +8,17293,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:18:22.304,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:18:22.304,2013-08-31T00:18:22.3045,-29.00465,-29.00465,,,30.0,7127,10,SCIENCE,SINFO.2013-08-31T00:18:22.304,"IFU,NODDING",OBJECT,-5.604207,273.135747,2013-08-31T00:18:22.303Z,300.0,H+K,-0.055227,359.953481,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T03:01:12.600Z,56535.01,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0002.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43118111,266.431181,2014-08-31T03:01:49.733Z,POSITION J2000 266.431181 -29.00465,,SGR A,1.011,1.009,82.466,0.72,0.67,745.18,745.2,4.0,52.964,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +9,17327,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:24:23.954,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:24:23.954,2013-08-31T00:24:23.9539,-29.00465,-29.00465,,,30.0,7128,10,SCIENCE,SINFO.2013-08-31T00:24:23.954,"IFU,NODDING",OBJECT,-5.604207,273.135747,2013-08-31T00:24:23.953Z,300.0,H+K,-0.055227,359.953481,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T03:01:11.977Z,56535.016,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0003.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43118111,266.431181,2014-08-31T03:01:49.733Z,POSITION J2000 266.431181 -29.00465,,SGR A,1.015,1.012,81.333,0.67,0.72,745.28,745.18,4.0,57.822,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +10,17149,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:30:46.279,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:30:46.279,2013-08-31T00:30:46.2789,-28.89322,-28.89322,,,30.0,7129,10,SCIENCE,SINFO.2013-08-31T00:30:46.279,"IFU,NODDING",SKY,-5.498241,273.35057,2013-08-31T00:30:46.280Z,300.0,H+K,0.182933,359.938454,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T03:01:15.483Z,56535.02,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_SKY243_0002.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.19003,266.19003,2014-08-31T03:01:49.733Z,POSITION J2000 266.19003 -28.89322,,SGR A,1.02,1.016,79.93,0.8,0.67,745.3,745.28,4.0,62.696,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +11,17294,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T00:37:11.102,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T00:37:11.102,2013-08-31T00:37:11.1017,-29.00465,-29.00465,,,30.0,7130,10,SCIENCE,SINFO.2013-08-31T00:37:11.102,"IFU,NODDING",OBJECT,-5.604208,273.135768,2013-08-31T00:37:11.103Z,300.0,H+K,-0.055209,359.95347,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T03:35:13.150Z,56535.027,200282283,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0004.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43115694,266.431157,2014-08-31T03:36:32.320Z,POSITION J2000 266.431157 -29.00465,,SGR A,1.024,1.019,78.776,0.8,0.8,745.18,745.28,4.0,64.504,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T00:04:44 +12,17309,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:07:26.222,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:07:26.222,2013-08-31T03:07:26.2221,-29.00464,-29.00464,,,30.0,7143,10,SCIENCE,SINFO.2013-08-31T03:07:26.222,"IFU,NODDING",OBJECT,-5.6042,273.135838,2013-08-31T03:07:26.223Z,300.0,H+K,-0.055145,359.953443,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:15.870Z,56535.13,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0013.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43107805,266.431078,2014-08-31T06:33:12.430Z,POSITION J2000 266.431078 -29.00464,,SGR A,1.416,1.385,46.152,0.78,0.83,745.33,745.32,4.0,72.973,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +13,17290,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:14:01.880,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:14:01.880,2013-08-31T03:14:01.8802,-28.89321,-28.89321,,,30.0,7144,10,SCIENCE,SINFO.2013-08-31T03:14:01.880,"IFU,NODDING",SKY,-5.498233,273.350639,2013-08-31T03:14:01.880Z,300.0,H+K,0.182997,359.938426,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:18.587Z,56535.133,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_SKY243_0007.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.18995111,266.189951,2014-08-31T06:33:12.430Z,POSITION J2000 266.189951 -28.89321,,SGR A,1.459,1.426,44.485,0.76,0.78,745.38,745.33,4.0,72.85,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +14,17375,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:20:39.207,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:20:39.207,2013-08-31T03:20:39.2071,-29.00464,-29.00464,,,30.0,7145,10,SCIENCE,SINFO.2013-08-31T03:20:39.207,"IFU,NODDING",OBJECT,-5.604199,273.135817,2013-08-31T03:20:39.207Z,300.0,H+K,-0.055163,359.953454,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:15.333Z,56535.14,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0014.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43110194,266.431102,2014-08-31T06:33:12.430Z,POSITION J2000 266.431102 -29.00464,,SGR A,1.493,1.457,43.27,0.79,0.76,745.38,745.38,4.0,72.476,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +15,17287,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:26:45.025,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:26:45.025,2013-08-31T03:26:45.0254,-29.00464,-29.00464,,,30.0,7146,10,SCIENCE,SINFO.2013-08-31T03:26:45.025,"IFU,NODDING",OBJECT,-5.604199,273.135817,2013-08-31T03:26:45.250Z,300.0,H+K,-0.055163,359.953454,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:23.893Z,56535.145,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0015.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43110194,266.431102,2014-08-31T06:33:12.430Z,POSITION J2000 266.431102 -29.00464,,SGR A,1.532,1.494,41.946,0.93,0.81,745.37,745.37,4.0,72.227,ESO-VLT-U4,4,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +16,17232,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:33:19.851,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:33:19.851,2013-08-31T03:33:19.8505,-28.89321,-28.89321,,,30.0,7147,10,SCIENCE,SINFO.2013-08-31T03:33:19.851,"IFU,NODDING",SKY,-5.498233,273.350639,2013-08-31T03:33:19.850Z,300.0,H+K,0.182997,359.938426,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:17.413Z,56535.15,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_SKY243_0008.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.18995111,266.189951,2014-08-31T06:33:12.430Z,POSITION J2000 266.189951 -28.89321,,SGR A,1.586,1.544,40.293,0.83,0.88,745.28,745.3,4.0,72.045,ESO-VLT-U4,5,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +17,17369,https://dataportal.eso.org/dataPortal/file/SINFO.2013-08-31T03:39:58.009,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2013-08-31T03:39:58.009,2013-08-31T03:39:58.0084,-29.00464,-29.00464,,,30.0,7148,10,SCIENCE,SINFO.2013-08-31T03:39:58.009,"IFU,NODDING",OBJECT,-5.6042,273.135838,2013-08-31T03:39:58.867Z,300.0,H+K,-0.055145,359.953443,H+K,,IR_SPECTROSCOPY,SINFONI,,,2013-08-31T06:32:15.603Z,56535.152,200282301,Can_3_71_NGS2-TF_new,SGR A,v,SINFONI_IFS_OBS243_0016.fits,91,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ FRITZ/ BLIND,091.B-0088(B),WATCHING THE GAS CLOUD G2 DISRUPT AS IT APPROACHES THE MASSIVE BLACK HOLE IN THE GALACTIC CENTRE,3,266.43107805,266.431078,2014-08-31T06:33:12.430Z,POSITION J2000 266.431078 -29.00464,,SGR A,1.628,1.584,39.084,0.79,0.92,745.28,745.28,4.0,71.644,ESO-VLT-U4,6,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2013-08-31T03:07:12 +18,18552,https://dataportal.eso.org/dataPortal/file/SINFO.2014-04-23T08:12:02.019,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2014-04-23T08:12:02.019,2014-04-23T08:12:02.0183,-28.99103,-28.99103,,,50.0,13784,10,SCIENCE,SINFO.2014-04-23T08:12:02.019,"IFU,NODDING",OBJECT,-5.590857,273.146784,2014-04-23T08:12:02.187Z,500.0,H+K,-0.039043,359.959561,H+K,,IR_SPECTROSCOPY,SINFONI,,,2014-04-23T10:31:00.453Z,56770.34,200310543,Can_2_234_noAO,SGR A,v,SINFONI_IFS_OBS113_0032.fits,93,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ PLEWA/ FRITZ,093.B-0217(F),STELLAR DYNAMICS IN THE CENTRAL ARCSECOND AROUND THE MASSIVE BLACK HOLE IN THE GALACTIC CENTER,0,266.41900694,266.419007,2015-04-23T10:31:32.880Z,POSITION J2000 266.41900699999997 -28.99103,,SGR A,1.003,1.004,84.985,3.19,3.01,742.92,743.02,19.0,331.133,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2014-04-23T08:11:36 +19,18250,https://dataportal.eso.org/dataPortal/file/SINFO.2014-04-23T08:21:51.181,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2014-04-23T08:21:51.181,2014-04-23T08:21:51.1813,-28.89485,-28.89485,,,50.0,13785,10,SCIENCE,SINFO.2014-04-23T08:21:51.181,"IFU,NODDING",SKY,-5.499849,273.34971,2014-04-23T08:21:51.180Z,500.0,H+K,0.181388,359.937488,H+K,,IR_SPECTROSCOPY,SINFONI,,,2014-04-23T10:45:59.603Z,56770.348,200310543,Can_2_234_noAO,SGR A,v,SINFONI_IFS_SKY113_0020.fits,93,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ PLEWA/ FRITZ,093.B-0217(F),STELLAR DYNAMICS IN THE CENTRAL ARCSECOND AROUND THE MASSIVE BLACK HOLE IN THE GALACTIC CENTER,0,266.19095805,266.190958,2015-04-23T10:46:31.193Z,POSITION J2000 266.190958 -28.89485,,SGR A,1.003,1.003,85.73,2.92,3.19,742.95,742.92,20.0,359.197,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2014-04-23T08:11:36 +20,18976,https://dataportal.eso.org/dataPortal/file/SINFO.2014-04-23T08:33:17.662,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2014-04-23T08:33:17.662,2014-04-23T08:33:17.6622,-28.99409,-28.99409,,,300.0,13786,1,SCIENCE,SINFO.2014-04-23T08:33:17.662,"IFU,NODDING",OBJECT,-5.594256,273.160374,2014-04-23T08:33:17.660Z,300.0,H+K,-0.029023,359.949861,H+K,,IR_SPECTROSCOPY,SINFONI,,,2014-04-23T10:45:57.513Z,56770.355,200310552,SI-VI,SGR A,v,SINFONI_IFS_OBS113_0033.fits,93,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ PLEWA/ FRITZ,093.B-0217(F),STELLAR DYNAMICS IN THE CENTRAL ARCSECOND AROUND THE MASSIVE BLACK HOLE IN THE GALACTIC CENTER,0,266.40345111,266.403451,2015-04-23T10:50:39.520Z,POSITION J2000 266.403451 -28.99409,,SGR A,1.005,1.004,85.064,2.74,2.72,742.92,742.92,20.0,27.189,ESO-VLT-U4,1,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2014-04-23T08:32:49 +21,19003,https://dataportal.eso.org/dataPortal/file/SINFO.2014-04-23T08:39:09.454,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2014-04-23T08:39:09.454,2014-04-23T08:39:09.4545,-28.89485,-28.89485,,,300.0,13787,1,SCIENCE,SINFO.2014-04-23T08:39:09.454,"IFU,NODDING",SKY,-5.499849,273.34971,2014-04-23T08:39:09.453Z,300.0,H+K,0.181388,359.937488,H+K,,IR_SPECTROSCOPY,SINFONI,,,2014-04-23T11:01:00.957Z,56770.36,200310552,SI-VI,SGR A,v,SINFONI_IFS_SKY113_0021.fits,93,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ PLEWA/ FRITZ,093.B-0217(F),STELLAR DYNAMICS IN THE CENTRAL ARCSECOND AROUND THE MASSIVE BLACK HOLE IN THE GALACTIC CENTER,0,266.19095805,266.190958,2015-04-23T11:01:33.150Z,POSITION J2000 266.190958 -28.89485,,SGR A,1.007,1.005,84.279,3.07,2.74,742.87,742.92,20.0,40.81,ESO-VLT-U4,2,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2014-04-23T08:32:49 +22,18970,https://dataportal.eso.org/dataPortal/file/SINFO.2014-04-23T08:45:02.078,https://archive.eso.org/datalink/links?ID=ivo://eso.org/ID?SINFO.2014-04-23T08:45:02.078,2014-04-23T08:45:02.0788,-28.99409,-28.99409,,,300.0,13788,1,SCIENCE,SINFO.2014-04-23T08:45:02.078,"IFU,NODDING",OBJECT,-5.59426,273.160513,2014-04-23T08:45:02.783Z,300.0,H+K,-0.028905,359.949789,H+K,,IR_SPECTROSCOPY,SINFONI,,,2014-04-23T11:01:00.803Z,56770.363,200310552,SI-VI,SGR A,v,SINFONI_IFS_OBS113_0034.fits,93,GILLESSEN/ GENZEL/ EISENHAUER/ OTT/ PFUHL/ PLEWA/ FRITZ,093.B-0217(F),STELLAR DYNAMICS IN THE CENTRAL ARCSECOND AROUND THE MASSIVE BLACK HOLE IN THE GALACTIC CENTER,0,266.40329305,266.403293,2015-04-23T11:01:33.150Z,POSITION J2000 266.403293 -28.99409,,SGR A,1.009,1.007,83.411,2.96,3.07,742.88,742.87,18.0,47.27,ESO-VLT-U4,3,SINFONI_ifs_obs_GenericOffset,Imaging with jitter and nod,6,2,2014-04-23T08:32:49 diff --git a/astroquery/eso/tests/data/vvv_sgra_form.html b/astroquery/eso/tests/data/vvv_sgra_form.html deleted file mode 100644 index d469a145b6..0000000000 --- a/astroquery/eso/tests/data/vvv_sgra_form.html +++ /dev/null @@ -1,822 +0,0 @@ - - - - -ESO Science Archive - Data Products - - - - - - - - - - - - - - - - - - - - - - - - -
ESO - - - - - - - - - -
- GENERIC  - - SPECTRAL  - - IMAGING  - - VISTA  -
PHASE3 ARCHIVE INTERFACES
- - - - - - - -
-HELP -REDUCED DATA TYPES DESCRIPTION -FAQ -DATA RELEASES
-
-
Generic Data Products
Query Form
-
-Please be aware of an important announcement about the flux calibration of XSHOOTER UVB data products.
-This form provides access to reduced or fully calibrated data sets, and derived catalogs, -that were contributed by PIs of ESO programmes or produced by ESO (using ESO calibration pipelines with the best available calibration data), and then -integrated into the ESO Science Archive Facility starting April 2011, through the -Phase 3 process. Included are optical, infrared, and APEX (millimetre, submillimetre) data products. -Each available data set is fully described; please see the list of contributed data releases and pipeline-processed data streams including their corresponding descriptions. -This form allows generic query constraints for all types of data products. -More specific forms, customised for each particular data type, are available for optical and infrared imaging, -for spectra, -and for VISTA data products. -Other data not yet migrated to the Phase 3 infrastructure are available via different user interfaces; please check the archive home page. -

Note: The FITS format of the spectra retrievable via this query form complies to the ESO Science Data Product standard [PDF]. The 1d spectra help page provides a list of tools that support this format and a quick guide to read and display these spectra in IDL and IRAF.

-
-