Skip to content

Commit

Permalink
docs: increase font size in simbad graph
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Nov 22, 2023
1 parent 4613a0e commit f776ef8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
22 changes: 11 additions & 11 deletions docs/simbad/query_tap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ can be useful. Here we look for possible links with the ``mesDiameter`` table
The output indicates that the ``mesDiameter`` table can be linked to ``basic`` with the following
join statement: ``[...] mesDiameter JOIN basic ON mesDiameter.oidref = basic.oid [...]``.


.. graphviz:: simbad-er.gv
:layout: neato
:caption: A quick view of SIMBAD's tables. Hover the links to see the linked columns.
Expand Down Expand Up @@ -163,18 +162,19 @@ in the column name or in its description. This is not case-sensitive.

>>> from astroquery.simbad import Simbad
>>> Simbad.list_columns(keyword="Radial velocity")
<Table length=8>
table_name column_name ... unit ucd
object object ... object object
------------- --------------- ... ------ -----------------------------------
basic rvz_bibcode ... meta.bib.bibcode;spect.dopplerVeloc
basic rvz_err ... km.s-1 stat.error;spect.dopplerVeloc
basic rvz_err_prec ...
basic rvz_qual ... meta.code.qual;spect.dopplerVeloc
basic rvz_radvel ... km.s-1 spect.dopplerVeloc.opt
<Table length=9>
table_name column_name ... unit ucd
object object ... object object
------------- --------------- ... ------ -------------------------------------
basic rvz_bibcode ... meta.bib.bibcode;spect.dopplerVeloc
basic rvz_err ... km.s-1 stat.error;spect.dopplerVeloc
basic rvz_err_prec ...
basic rvz_qual ... meta.code.qual;spect.dopplerVeloc
basic rvz_radvel ... km.s-1 spect.dopplerVeloc.opt
basic rvz_radvel_prec ...
basic rvz_type ...
mesVelocities origin ... meta.note
basic rvz_wavelength ... instr.bandpass;spect.dopplerVeloc.opt
mesVelocities origin ... meta.note

Example TAP queries
^^^^^^^^^^^^^^^^^^^
Expand Down
36 changes: 18 additions & 18 deletions docs/simbad/simbad-er.gv
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ graph "Simbad Relational Database" {
node [color=lightgray penwidth=6 shape=box style=filled]
graph [esep="+0" mode=major overlap=false sep=0 splines=polyline]
edge [color=lightgray labelOverlay="100%" penwidth=7]
"Measurement tables" [label="{mesHerschel | mesXmm | mesVelocities | mesVar | mesRot | mesPM | mesPLX | mesIUE | mesISO | mesFe_h | mesDiameter | mesDistance | mesSpT }" shape=record]
"Measurement tables" [label="{mesHerschel | mesXmm | mesVelocities | mesVar | mesRot | mesPM | mesPLX | mesIUE | mesISO | mesFe_h | mesDiameter | mesDistance | mesSpT }" fontsize=16 shape=record]
basic -- "Measurement tables" [color="#9EADC8" tooltip="oid:oidref"]
allfluxes [tooltip="all flux/magnitudes U,B,V,I,J,H,K,u_,g_,r_,i_,z_"]
alltypes [tooltip="all object types concatenated with pipe"]
author [tooltip="Author of a bibliographic reference"]
basic [tooltip="General data about an astronomical object"]
biblio [tooltip=Bibliography]
cat [tooltip="Catalogues name"]
filter [tooltip="Description of a flux filter"]
flux [tooltip="Magnitude/Flux information about an astronomical object"]
h_link [tooltip="hierarchy of membership measure"]
has_ref [tooltip="Associations between astronomical objects and their bibliographic references"]
ident [tooltip="Identifiers of an astronomical object"]
ids [tooltip="all names concatenated with pipe"]
journals [tooltip="Description of all used journals in the database"]
keywords [tooltip="List of keywords in a paper"]
otypedef [tooltip="all names and definitions for the object types"]
otypes [tooltip="List of all object types associated with an object"]
ref [tooltip="Bibliographic reference"]
allfluxes [fontsize=16 tooltip="all flux/magnitudes U,B,V,I,J,H,K,u_,g_,r_,i_,z_"]
alltypes [fontsize=16 tooltip="all object types concatenated with pipe"]
author [fontsize=16 tooltip="Author of a bibliographic reference"]
basic [fontsize=16 tooltip="General data about an astronomical object"]
biblio [fontsize=16 tooltip=Bibliography]
cat [fontsize=16 tooltip="Catalogues name"]
filter [fontsize=16 tooltip="Description of a flux filter"]
flux [fontsize=16 tooltip="Magnitude/Flux information about an astronomical object"]
h_link [fontsize=16 tooltip="hierarchy of membership measure"]
has_ref [fontsize=16 tooltip="Associations between astronomical objects and their bibliographic references"]
ident [fontsize=16 tooltip="Identifiers of an astronomical object"]
ids [fontsize=16 tooltip="all names concatenated with pipe"]
journals [fontsize=16 tooltip="Description of all used journals in the database"]
keywords [fontsize=16 tooltip="List of keywords in a paper"]
otypedef [fontsize=16 tooltip="all names and definitions for the object types"]
otypes [fontsize=16 tooltip="List of all object types associated with an object"]
ref [fontsize=16 tooltip="Bibliographic reference"]
ids -- basic [color="#C7FFDA" tooltip="oidref:oid"]
otypedef -- otypes [color="#FEC1A7" tooltip="otype:otype"]
otypedef -- basic [color="#4CE0B3" tooltip="otype:otype"]
Expand Down

0 comments on commit f776ef8

Please sign in to comment.