{% extends "mdb.html" %} {% load i18n %} {% block header %}

Back to SRG.ArXiv

Retrieve an ICRS object by using an online name resolving service to retrieve coordinates for the specified name using get_icrs_coordinates. By default, this will search all available databases until a match is found.

HEALPix elements (nside=2048) are selected within maxdist parameter via healpix cone search . Then, all matches are selected within Rmax parameter.

{% endblock %} {% block content %}

{% csrf_token %}
{% csrf_token %} {{ form }}

{% if notresolved %}
Not resolved

Failed to find {{ form.name.value }} in all available databases.

{% endif %}
{% if ra %}

Requested coordinates: RA={{ ra|floatformat:4 }} Dec={{ dec|floatformat:4 }} {% if skymap %} are found in Plate {{ skymap }} {% endif %}

{% endif %}

ART-XC sources

{% for src in srcs %} {% endfor %}
Source CName Flux Separation Type Notes
{{ src }} {{ src.cname }} {{ src.flux|stringformat:"1.2e" }} {{ src.separation|floatformat:2 }} {{ src.get_otype }} {% for paper in src.catalog.all %} {{ paper }}, {% endfor %}
{% endblock %}