CDS services in Jupyter notebooks#
Katarina A. Lutz¹, Manon Marchand¹
Université de Strasbourg, CNRS, Observatoire Astronomique de Strasbourg, UMR 7550, F-67000, Strasbourg, France
Introduction#
Welcome to a Jupyter notebook demonstrating how to access some of the services provided by the Strasbourg astronomical Data Center (CDS) with Python.
In this tutorial, we will:
overlay the sources of this catalog on the sky view in the Aladin Lite widget,
# Astronomy tools
import astropy.units as u
# Access astronomical databases
from astroquery.simbad import Simbad
from astroquery.vizier import Vizier
from astroquery.xmatch import XMatch
# Sky visualization
from ipyaladin import Aladin
Step #1: Gather information on NGC4038#
As a first step, we check what information is directly available from the Simbad python module. Let’s use the method query_object
to gather information. Note that you can look at the methods available for the Simbad
class with the help(Simbad)
command:
Simbad.query_object("NGC4038")
main_id | ra | dec | coo_err_maj | coo_err_min | coo_err_angle | coo_wavelength | coo_bibcode | matched_id |
---|---|---|---|---|---|---|---|---|
deg | deg | mas | mas | deg | ||||
object | float64 | float64 | float32 | float32 | int16 | str1 | object | object |
NGC 4038 | 180.47084166666667 | -18.86758888888889 | -- | -- | -- | I | 2006AJ....131.1163S | NGC 4038 |
We get basic information, like the position of NCG4038
. This search function can be personalized by adding fields to the response. Let’s list the possible fields:
fields = Simbad.list_votable_fields()
fields
name | description | type |
---|---|---|
object | object | object |
mesDiameter | Collection of stellar diameters. | table |
mesPM | Collection of proper motions. | table |
mesISO | Infrared Space Observatory (ISO) observing log. | table |
mesSpT | Collection of spectral types. | table |
allfluxes | all flux/magnitudes U,B,V,I,J,H,K,u_,g_,r_,i_,z_ | table |
ident | Identifiers of an astronomical object | table |
flux | Magnitude/Flux information about an astronomical object | table |
mesPLX | Collection of trigonometric parallaxes. | table |
otypedef | all names and definitions for the object types | table |
mesDistance | Collection of distances (pc, kpc or Mpc) by several means. | table |
otypes | List of all object types associated with an object | table |
mesVar | Collection of stellar variability types and periods. | table |
mesXmm | XMM observing log. | table |
... | ... | ... |
R | Magnitude R | filter name |
I | Magnitude I | filter name |
J | Magnitude J | filter name |
H | Magnitude H | filter name |
K | Magnitude K | filter name |
u | Magnitude SDSS u | filter name |
g | Magnitude SDSS g | filter name |
r | Magnitude SDSS r | filter name |
i | Magnitude SDSS i | filter name |
z | Magnitude SDSS z | filter name |
G | Magnitude Gaia G | filter name |
F150W | JWST NIRCam F150W | filter name |
F200W | JWST NIRCam F200W | filter name |
F444W | JWST NIRCan F444W | filter name |
We get a list of the available fields we could add to the SIMBAD response.
simbad = Simbad() # we create an instance that we can personalize
simbad.add_votable_fields("otype", "alltypes", "dim")
info_simbad = simbad.query_object("NGC4038")
info_simbad
main_id | ra | dec | coo_err_maj | coo_err_min | coo_err_angle | coo_wavelength | coo_bibcode | otype | otypes | galdim_majaxis_prec | galdim_minaxis_prec | galdim_bibcode | galdim_majaxis | galdim_minaxis | galdim_qual | galdim_angle | galdim_wavelength | matched_id |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
deg | deg | mas | mas | deg | arcmin | arcmin | deg | |||||||||||
object | float64 | float64 | float32 | float32 | int16 | str1 | object | object | object | int16 | int16 | object | float32 | float32 | str1 | int16 | str1 | object |
NGC 4038 | 180.47084166666667 | -18.86758888888889 | -- | -- | -- | I | 2006AJ....131.1163S | EmG | AG?|EmG|G|GiP|HI|IG|PaG|Rad | 1 | 1 | 2007ApJS..173..185G | 5.2 | 3.1 | D | 80 | NGC 4038 |
We added the object type with the field otype
. We now know the main object type of NGC4038: “Emission line Galaxy” EmG
.
We can also read the object dimensions, that we added with the field dim
. (major axis galdim_majaxis
, minor axis galdim_minaxis
, inclination angle galdim_angle
…, and the related bibliographic reference galdim_bibcode
where the dimension information was extracted).
We can also see the full list of object types attributed to NGC4038 in the past (ex: HI
HI (21cm) Source, G
Galaxy, GiP
Galaxy in Pair, Rad
Radio Source…). This comes from the fact that an object can have a lot of descriptions, a galaxy can very well also be a radio source. Sometimes, our understanding evolved with time and some of these former types won’t be compatible. The descriptions and relations between object types can be explored on Simbad’s webpages.
As we saw that NGC4038 is a galaxy in a pair, let’s search for the second galaxy in the pair. Let’s first identify the pair by looking into NGC4038
’s parents:
simbad.reset_votable_fields()
simbad.add_votable_fields("otype")
siblings = simbad.query_hierarchy("NGC4038", hierarchy="parents")
siblings
main_id | ra | dec | coo_err_maj | coo_err_min | coo_err_angle | coo_wavelength | coo_bibcode | otype |
---|---|---|---|---|---|---|---|---|
deg | deg | mas | mas | deg | ||||
object | float64 | float64 | float32 | float32 | int16 | str1 | object | object |
NAME Antennae | 180.47154166666667 | -18.8772 | -- | -- | -- | I | 2006AJ....131.1163S | IG |
NAME NGC 4038 Group | 179.98833333333332 | -19.2725 | -- | -- | -- | O | 1993A&AS..100...47G | GrG |
[T2015] nest 100219 | 179.8429 | -18.9931 | -- | -- | -- | O | 2015AJ....149..171T | GrG |
[TSK2008] 409 | 179.85802908705062 | -19.40075160642234 | -- | -- | -- | O | 2013AJ....146...86T | GrG |
The Antennae Interacting Galaxies (of object type IG
) ais the parent. Let’s now look at its children. We also add a filter on the type of objects with the criteria
argument in which we select any type of galaxies (that’s the notation G..
)
siblings = simbad.query_hierarchy(
"Antennae", hierarchy="children", criteria="otype='G..'"
)
siblings
main_id | ra | dec | coo_err_maj | coo_err_min | coo_err_angle | coo_wavelength | coo_bibcode | otype |
---|---|---|---|---|---|---|---|---|
deg | deg | mas | mas | deg | ||||
object | float64 | float64 | float32 | float32 | int16 | str1 | object | object |
NGC 4038 | 180.47084166666667 | -18.86758888888889 | -- | -- | -- | I | 2006AJ....131.1163S | EmG |
NGC 4039 | 180.47295999999997 | -18.88619 | -- | -- | -- | O | 2020MNRAS.494.1784A | GiP |
You can learn more on the features of the Simbad python module here: https://astroquery.readthedocs.io/en/latest/simbad/simbad.html
and on the Simbad query criteria: http://simbad.cds.unistra.fr/simbad/sim-fsam
Step #2: Visualise the source on a sky map#
We now open the Aladin Lite widget. We set it first to center on the Antennae galaxies, have a field of view of 0.5 \(^\circ\) and show color images from the Digitized Sky Survey (DSS). Typing aladin
in the second line of code tells the notebook to display the widget.
aladin = Aladin(target="Antennae", fov=0.5, survey="P/DSS2/color", height=600)
aladin
As with any Aladin Lite implementation, you can interact with this widget. Try to:
scroll with your mouse pointer on the image to zoom in and out,
select other image surveys and manage the current view with
look at another target using the search field
find more information on something with the target tool
do a right click to discover more tools
You can also directly change the properties of the variable aladin
. For example, to focus on M101 instead of the Antennae galaxies:
aladin.target = "M101"
Feel free to explore other targets and methods available for the Aladin widget.
Step #3: Find and visualize additional data#
We want to look for data related to HII regions in these interacting galaxies. We make a query in Simbad for HII regions within 14 arcmins around the Antennae galaxies.
simbad.reset_votable_fields()
# biblio contains the bibcodes of all papers where the SIMBAD team found the object
simbad.add_votable_fields("otype", "biblio")
table_simbad = simbad.query_region("Antennae", radius="14m", criteria="otype='HII'")
table_simbad
main_id | ra | dec | coo_err_maj | coo_err_min | coo_err_angle | coo_wavelength | coo_bibcode | otype | biblio |
---|---|---|---|---|---|---|---|---|---|
deg | deg | mas | mas | deg | |||||
object | float64 | float64 | float32 | float32 | int16 | str1 | object | object | object |
[ZFB2014] HII 47 | 180.46208333333334 | -18.86958333333333 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z |
[ZBF2015] Arp244 175 | 180.4625 | -18.861666666666668 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 77 | 180.47750000000002 | -18.881194444444443 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 120 | 180.47916666666669 | -18.88586111111111 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 252 | 180.47208333333333 | -18.885027777777776 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 264 | 180.4754166666667 | -18.867416666666667 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 233 | 180.48125000000002 | -18.86836111111111 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 195 | 180.4779166666667 | -18.867416666666667 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 271 | 180.47333333333336 | -18.886583333333334 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
RX J120155.4-185209 | 180.48083333333335 | -18.86916666666667 | -- | -- | -- | HII | 1995MNRAS.277..397R|1997ApJ...478..542F | ||
[MDL92] I | 180.36370833333336 | -19.015194444444447 | -- | -- | -- | 2004AJ....127..660S | HII | 1992A&A...256L..19M|2001AJ....122.2969H|2004AJ....127..660S | |
[ZBF2015] Arp244 187 | 180.47750000000002 | -18.878333333333334 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 189 | 180.46125 | -18.871333333333336 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
[ZBF2015] Arp244 61 | 180.47750000000002 | -18.868972222222222 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 198 | 180.48333333333335 | -18.876055555555556 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 234 | 180.4779166666667 | -18.874194444444445 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 150 | 180.4779166666667 | -18.88111111111111 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 204 | 180.4691666666667 | -18.869 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 275 | 180.47833333333335 | -18.880694444444444 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[HMR2016] N4038 H29 | 180.481 | -18.880719444444445 | -- | -- | -- | O | 2016ApJ...830...10H | HII | 2016ApJ...830...10H |
[ZBF2015] Arp244 45 | 180.48125000000002 | -18.873250000000002 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 155 | 180.46333333333334 | -18.875500000000002 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 158 | 180.46583333333334 | -18.875416666666666 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 202 | 180.47708333333335 | -18.88138888888889 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 224 | 180.47750000000002 | -18.87863888888889 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
[ZBF2015] Arp244 211 | 180.4691666666667 | -18.858333333333334 | -- | -- | -- | O | 2014MNRAS.445.1412Z | HII | 2014MNRAS.445.1412Z|2015MNRAS.451.1307Z |
Once we have identified a bibliographic reference of interest, we can search the corresponding catalogs on VizieR. Here, the Biblio column has quite some occurrences of the reference '2015MNRAS.451.1307Z'
.
Note that by default VizieR will only return 50 entries (as in the web interface). To get all sources, set ROW_LIMIT=-1
.
A good practice is to check first what data are available by querying only a subsample, then customize your Vizier query with the useful rows and columns before downloading the entire catalog.
cat_viz = Vizier(row_limit=10).get_catalogs("2015MNRAS.451.1307Z")
cat_viz
WARNING: UnitsWarning: The unit 'pix' has been deprecated in the VOUnit standard. [astropy.units.format.utils]
TableList with 2 tables:
'0:J/MNRAS/451/1307/HIIreg' with 15 column(s) and 10 row(s)
'1:J/MNRAS/451/1307/list' with 13 column(s) and 10 row(s)
In the example above, we see that 2 tables are associated with the reference 2015MNRAS.451.1307Z
: a table called ‘HIIreg’ accessible by the index [0] and a table called ‘list’ accessible by the index [1]. The number of rows has been fixed by the parameter row_limit=10
.
Let’s check the ‘HIIreg’ table:
# print the metadata
cat_viz[0].meta
{'ID': 'J_MNRAS_451_1307_HIIreg',
'name': 'J/MNRAS/451/1307/HIIreg',
'description': 'Physical properties of the brightest HII regions in interacting galaxies (table A1) and isolated galaxies (table A2)'}
# print the table itself
cat_viz[0]
Seq | n_Name | Name | Nf | RAJ2000 | DEJ2000 | logLHa | R | logMHII | rhoHII | sigma | alpVir | EWHa | logAge | Simbad |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
log(1e-07W) | pc | log(solMass) | solMass / pc3 | km / s | 0.1 nm | log(yr) | ||||||||
int16 | str3 | str7 | int16 | str10 | str11 | float32 | int16 | float32 | float32 | float32 | float32 | float32 | float32 | str6 |
1 | int | NGC2146 | 3 | 06 18 39.4 | +78 21 18.2 | 39.040 | 114 | 5.90 | 0.1270 | 15.0 | 40.0 | 159.79 | 6.770 | Simbad |
2 | int | NGC2146 | 3 | 06 18 38.1 | +78 21 26.8 | 38.830 | 116 | 5.80 | 0.0970 | 17.0 | 60.0 | 54.70 | 6.810 | Simbad |
3 | int | NGC2146 | 3 | 06 18 44.6 | +78 21 50.6 | 38.590 | 142 | 5.80 | 0.0550 | 11.0 | 30.0 | 125.30 | 6.780 | Simbad |
4 | int | NGC2146 | 3 | 06 18 27.7 | +78 22 21.0 | 38.470 | 155 | 5.81 | 0.0410 | 8.6 | 20.0 | 119.64 | 6.780 | Simbad |
5 | int | NGC2146 | 3 | 06 18 35.0 | +78 21 28.0 | 38.440 | 124 | 5.65 | 0.0560 | 15.0 | 80.0 | 103.35 | 6.790 | Simbad |
6 | int | NGC2146 | 3 | 06 18 42.8 | +78 21 58.1 | 38.410 | 136 | 5.70 | 0.0470 | 4.0 | -- | 155.86 | 6.770 | Simbad |
7 | int | NGC2146 | 3 | 06 18 39.8 | +78 21 22.5 | 38.350 | 81 | 5.30 | 0.0960 | 15.0 | 100.0 | 109.47 | 6.790 | Simbad |
8 | int | NGC2146 | 3 | 06 18 48.0 | +78 21 43.3 | 38.320 | 144 | 5.69 | 0.0390 | 4.0 | -- | 81.89 | 6.800 | Simbad |
9 | int | NGC2146 | 3 | 06 18 42.1 | +78 21 12.0 | 38.310 | 94 | 5.40 | 0.0730 | 4.0 | -- | 103.95 | 6.790 | Simbad |
10 | int | NGC2146 | 3 | 06 18 44.2 | +78 21 00.9 | 38.300 | 96 | 5.40 | 0.0700 | 4.0 | -- | 67.87 | 6.800 | Simbad |
As for every function in python, we can call help(Vizier)
in a code cell and run it to print the documentation.
We won’t do it here as it is quite long, but if we did, we could have read that columns
should be a list, column_filters
a dictionary, and row_limits
is an int for which -1 means infinity. Now we can customize our VizieR query by selecting columns, filtering to keep only the interacting galaxies (n_Name='int'
), and keeping only the first region for each galaxy (Seq=1
, for visualization purposes).
cat_hii = Vizier(
columns=["Name", "RAJ2000", "DEJ2000", "logLHa", "R", "sigma"],
column_filters={"Seq": "==1", "n_Name": "int"},
row_limit=-1,
).get_catalogs("2015MNRAS.451.1307Z")[0]
cat_hii
Name | RAJ2000 | DEJ2000 | logLHa | R | sigma |
---|---|---|---|---|---|
log(1e-07W) | pc | km / s | |||
str7 | str10 | str11 | float32 | int16 | float32 |
NGC2146 | 06 18 39.4 | +78 21 18.2 | 39.040 | 114 | 15.0 |
Arp244 | 12 01 54.6 | -18 53 03.1 | 40.200 | 280 | 32.8 |
NGC520 | 01 24 33.3 | +03 48 04.6 | 39.120 | 255 | 14.1 |
UGC3995 | 07 44 09.2 | +29 14 51.3 | 40.290 | 270 | 43.0 |
NGC3788 | 11 39 41.4 | +31 54 23.3 | 39.700 | 280 | 11.9 |
NGC3786 | 11 39 45.1 | +31 55 46.3 | 39.860 | 300 | 16.5 |
NGC2782 | 09 14 05.3 | +40 06 50.4 | 39.800 | 166 | 28.0 |
NGC2993 | 09 45 48.3 | -14 22 05.9 | 40.070 | 258 | 12.0 |
NGC2992 | 09 45 41.9 | -14 19 33.4 | 39.180 | 100 | 16.0 |
NGC3991 | 11 57 31.7 | +32 20 29.6 | 40.440 | 470 | 20.9 |
Arp270 | 10 49 55.8 | +32 59 28.0 | 40.220 | 229 | 20.4 |
NGC3769 | 11 37 43.7 | +47 53 24.4 | 38.310 | 66 | 4.0 |
We can also display the table on Aladin.
We use aladin.add_table
aladin.add_table(cat_hii)
Go up to the Aladin Lite widget, zoom out to see all the sources, then rotate and zoom in to see the interacting galaxies. You can click on one source to display the information in the table.
Change the view to the AllWISE Infrared survey, either in the widget:
Base image layer -> The Wide-field Infrared Survey Explorer
or in the command line below.
You can find the list of available sky maps at https://aladin.u-strasbg.fr/hips/list
aladin.survey = "P/allWISE/color"
If you want to overlay the survey instead of replacing it:
aladin.overlay_survey= 'P/allWISE/color'
aladin.overlay_survey_opacity = 0.5
Exercise:
Retrieve the second table from Zaragoza-Cardiel+, 2015 (2015MNRAS.451.1307Z) containing data related to the image fits files and try to answer the questions:
What are the typical sizes of the fits images?
What is the approximate resolution of the images? [arcsec/pix]
# write your code here
Step #5: Cross-match tables#
We have HII data for a sample of interacting galaxies. Since we are also interested in the infrared fluxes we search for the Wide-field Infrared Survey Explorer (AllWISE) data release.
We want to match the sources in J/MNRAS/451/1307/HIIreg with the AllWISE source catalog that contains 747 million objects!
We use the X-Match python module for cross-identification of objects. It is particularly efficient and fast with very large catalogs, like AllWISE. All we need are the names of the catalogs, the names of the columns containing the coordinates of the sources, and the desired maximum distance for the match (optionally the area as well, otherwise all-sky is the default).
# What is the AllWISE catalogue reference in VizieR?
cat_allwise = Vizier.get_catalogs("AllWISE")
cat_allwise
TableList with 1 tables:
'0:II/328/allwise' with 28 column(s) and 50 row(s)
xmatch_zbf_wise = XMatch.query(
cat1="vizier:J/MNRAS/451/1307/HIIreg",
cat2="vizier:II/328/allwise",
max_distance=10 * u.arcsec,
colRA1="RAJ2000",
colDec1="DEJ2000",
colRA2="RAJ2000",
colDec2="DEJ2000",
)
xmatch_zbf_wise
angDist | _RAJ2000 | _DEJ2000 | recno | Seq | n_Name | Name | Nf | RAJ2000 | DEJ2000 | logLHa | R | logMHII | rhoHII | sigma | alpVir | EWHa | logAge | Simbad | AllWISE | RAJ20002 | DEJ20002 | eeMaj | eeMin | eePA | W1mag | W2mag | W3mag | W4mag | Jmag | Hmag | Kmag | e_W1mag | e_W2mag | e_W3mag | e_W4mag | e_Jmag | e_Hmag | e_Kmag | ID | ccf | ex | var | qph | pmRA | e_pmRA | pmDE | e_pmDE | d2M |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
arcsec | deg | deg | log(1e-07W) | pc | log(solMass) | solMass.pc**-3 | km / s | 0.1 nm | log(yr) | deg | deg | arcsec | arcsec | deg | mag | mag | mag | mag | mag | mag | mag | mag | mag | mag | mag | mag | mag | mag | ||||||||||||||||||||
float64 | float64 | float64 | int32 | int16 | str3 | str7 | int16 | str10 | str11 | float32 | int16 | float32 | float32 | float32 | float32 | float32 | float32 | object | str19 | float64 | float64 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | float32 | int64 | str4 | str1 | str4 | str4 | int32 | int32 | int32 | int32 | float32 |
9.439952 | 250.775 | 36.839056 | 1820 | 27 | iso | NGC6207 | 0 | 16 43 06.0 | +36 50 20.6 | 37.69 | 66 | 4.9 | 0.06 | 4.0 | -- | 134.26 | 6.78 | Simbad | J164305.83+365029.8 | 250.7743217 | 36.8416214 | 0.0374 | 0.0369 | 67.0 | 12.87 | 12.918 | 8.29 | 5.588 | -- | -- | -- | 0.073 | 0.025 | 0.022 | 0.037 | -- | -- | -- | 2499136301351044678 | 0000 | 3 | 3000 | AAAA | 10 | 40 | 359 | 42 | -- |
6.754932 | 250.767917 | 36.834944 | 1821 | 28 | iso | NGC6207 | 0 | 16 43 04.3 | +36 50 05.8 | 37.66 | 101 | 5.1 | 0.031 | 4.0 | -- | 22.27 | 6.91 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |
8.575258 | 250.767917 | 36.834944 | 1821 | 28 | iso | NGC6207 | 0 | 16 43 04.3 | +36 50 05.8 | 37.66 | 101 | 5.1 | 0.031 | 4.0 | -- | 22.27 | 6.91 | Simbad | J164303.79+364959.7 | 250.7658199 | 36.8332538 | 0.0379 | 0.0338 | 158.6 | 10.953 | 10.936 | 7.758 | 5.483 | -- | -- | -- | 0.023 | 0.022 | 0.024 | 0.066 | -- | -- | -- | 2499136301351044647 | d0d0 | 5 | 3200 | AAAA | 113 | 31 | 484 | 32 | -- |
5.99581 | 250.76375 | 36.833083 | 1822 | 29 | iso | NGC6207 | 0 | 16 43 03.3 | +36 49 59.1 | 37.66 | 87 | 5.0 | 0.039 | 4.0 | -- | 20.6 | 6.93 | Simbad | J164303.79+364959.7 | 250.7658199 | 36.8332538 | 0.0379 | 0.0338 | 158.6 | 10.953 | 10.936 | 7.758 | 5.483 | -- | -- | -- | 0.023 | 0.022 | 0.024 | 0.066 | -- | -- | -- | 2499136301351044647 | d0d0 | 5 | 3200 | AAAA | 113 | 31 | 484 | 32 | -- |
7.312318 | 250.76375 | 36.833083 | 1822 | 29 | iso | NGC6207 | 0 | 16 43 03.3 | +36 49 59.1 | 37.66 | 87 | 5.0 | 0.039 | 4.0 | -- | 20.6 | 6.93 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |
3.802161 | 250.766667 | 36.832444 | 1823 | 30 | iso | NGC6207 | 0 | 16 43 04.0 | +36 49 56.8 | 37.66 | 91 | 5.1 | 0.036 | 4.0 | -- | 8.9 | 7.09 | Simbad | J164303.79+364959.7 | 250.7658199 | 36.8332538 | 0.0379 | 0.0338 | 158.6 | 10.953 | 10.936 | 7.758 | 5.483 | -- | -- | -- | 0.023 | 0.022 | 0.024 | 0.066 | -- | -- | -- | 2499136301351044647 | d0d0 | 5 | 3200 | AAAA | 113 | 31 | 484 | 32 | -- |
7.648264 | 250.766667 | 36.832444 | 1823 | 30 | iso | NGC6207 | 0 | 16 43 04.0 | +36 49 56.8 | 37.66 | 91 | 5.1 | 0.036 | 4.0 | -- | 8.9 | 7.09 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |
9.762527 | 250.769167 | 36.832833 | 1825 | 34 | iso | NGC6207 | 0 | 16 43 04.6 | +36 49 58.2 | 37.49 | 57 | 4.7 | 0.06 | 4.0 | -- | 18.26 | 6.98 | Simbad | J164303.79+364959.7 | 250.7658199 | 36.8332538 | 0.0379 | 0.0338 | 158.6 | 10.953 | 10.936 | 7.758 | 5.483 | -- | -- | -- | 0.023 | 0.022 | 0.024 | 0.066 | -- | -- | -- | 2499136301351044647 | d0d0 | 5 | 3200 | AAAA | 113 | 31 | 484 | 32 | -- |
4.218263 | 250.775 | 36.840583 | 1830 | 41 | iso | NGC6207 | 0 | 16 43 06.0 | +36 50 26.1 | 37.26 | 33 | 4.2 | 0.1 | 4.0 | -- | 255.83 | 6.75 | Simbad | J164305.83+365029.8 | 250.7743217 | 36.8416214 | 0.0374 | 0.0369 | 67.0 | 12.87 | 12.918 | 8.29 | 5.588 | -- | -- | -- | 0.073 | 0.025 | 0.022 | 0.037 | -- | -- | -- | 2499136301351044678 | 0000 | 3 | 3000 | AAAA | 10 | 40 | 359 | 42 | -- |
0.814803 | 40.89875 | 1.377222 | 1834 | 1 | iso | NGC1073 | 0 | 02 43 35.7 | +01 22 38.0 | 39.22 | 124 | 6.04 | 0.138 | 13.4 | 23.0 | 522.67 | 6.59 | Simbad | J024335.67+012237.2 | 40.8986511 | 1.3770184 | 0.0807 | 0.0757 | 126.3 | 14.868 | 14.664 | 10.041 | 7.24 | -- | -- | -- | 0.033 | 0.065 | 0.066 | 0.129 | -- | -- | -- | 408101501351028660 | 0000 | 3 | nnnn | AAAB | 0 | 0 | 0 | 0 | -- |
9.556441 | 40.89875 | 1.377222 | 1834 | 1 | iso | NGC1073 | 0 | 02 43 35.7 | +01 22 38.0 | 39.22 | 124 | 6.04 | 0.138 | 13.4 | 23.0 | 522.67 | 6.59 | Simbad | J024335.06+012236.8 | 40.8961145 | 1.3768984 | 0.0777 | 0.0726 | 113.5 | 14.665 | 14.547 | 10.116 | 7.751 | -- | -- | -- | 0.032 | 0.059 | 0.07 | 0.201 | -- | -- | -- | 408101501351028659 | 0000 | 3 | nnnn | AAAB | 519 | 113 | 184 | 115 | -- |
2.050378 | 40.91625 | 1.398056 | 1835 | 2 | iso | NGC1073 | 0 | 02 43 39.9 | +01 23 53.0 | 38.87 | 87 | 5.64 | 0.16 | 9.9 | 23.0 | 641.02 | 6.54 | Simbad | J024339.95+012351.1 | 40.9164643 | 1.3975283 | 0.0891 | 0.0842 | 142.7 | 15.058 | 15.11 | 10.021 | 7.007 | -- | -- | -- | 0.036 | 0.101 | 0.062 | 0.092 | -- | -- | -- | 408101501351028680 | 0000 | 2 | 1111 | AAAA | 342 | 161 | -432 | 166 | -- |
6.778978 | 40.917083 | 1.375444 | 1836 | 3 | iso | NGC1073 | 0 | 02 43 40.1 | +01 22 31.6 | 38.69 | 115 | 5.73 | 0.084 | 7.2 | 13.0 | 63.08 | 6.8 | Simbad | J024340.51+012234.1 | 40.9188331 | 1.3761402 | 0.0422 | 0.0408 | 84.4 | 12.252 | 12.259 | 8.977 | 6.376 | 15.101 | 14.573 | 14.292 | 0.025 | 0.025 | 0.029 | 0.063 | 0.16 | 0.241 | 0.16 | 408101501351028598 | 0000 | 5 | 1100 | AAAA | -153 | 48 | 62 | 47 | 0.394 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
2.461872 | 262.364583 | 75.690333 | 1789 | 75 | iso | NGC6412 | 0 | 17 29 27.5 | +75 41 25.2 | 37.54 | 100 | 5.1 | 0.026 | 4.0 | -- | 1.63 | 7.24 | Simbad | J172927.37+754122.7 | 262.3640507 | 75.6896619 | 0.0403 | 0.0374 | 77.5 | 12.05 | 12.097 | 12.917 | 9.369 | 12.52 | 12.177 | 12.107 | 0.023 | 0.021 | -- | -- | 0.022 | 0.019 | 0.025 | 2613175701351028212 | 0000 | 2 | 11nn | AAUU | -48 | 34 | 26 | 34 | 0.157 |
6.919677 | 262.364583 | 75.690333 | 1789 | 75 | iso | NGC6412 | 0 | 17 29 27.5 | +75 41 25.2 | 37.54 | 100 | 5.1 | 0.026 | 4.0 | -- | 1.63 | 7.24 | Simbad | J172925.67+754123.7 | 262.3569903 | 75.6899173 | 0.3268 | 0.1897 | 101.4 | 16.104 | 16.518 | 12.619 | 9.184 | -- | -- | -- | 0.126 | 0.248 | -- | -- | -- | -- | -- | 2613175701351029820 | 0000 | 2 | 3nnn | BBUU | -253 | 460 | 362 | 559 | -- |
9.385763 | 262.399167 | 75.702444 | 1791 | 77 | iso | NGC6412 | 0 | 17 29 35.8 | +75 42 08.8 | 37.47 | 100 | 5.0 | 0.027 | 4.0 | -- | 10.6 | 7.06 | Simbad | J172937.39+754216.1 | 262.405793 | 75.7044738 | 0.0336 | 0.033 | 78.6 | 11.656 | 11.636 | 8.119 | 5.815 | 14.424 | 13.639 | 13.506 | 0.022 | 0.022 | 0.019 | 0.037 | 0.082 | 0.094 | 0.086 | 2613175701351028211 | 0000 | 5 | 4200 | AAAA | 0 | 30 | 0 | 30 | 0.861 |
2.430664 | 262.36375 | 75.690333 | 1792 | 78 | iso | NGC6412 | 0 | 17 29 27.3 | +75 41 25.2 | 37.3 | 80 | 4.8 | 0.03 | 4.0 | -- | 1.43 | 7.25 | Simbad | J172927.37+754122.7 | 262.3640507 | 75.6896619 | 0.0403 | 0.0374 | 77.5 | 12.05 | 12.097 | 12.917 | 9.369 | 12.52 | 12.177 | 12.107 | 0.023 | 0.021 | -- | -- | 0.022 | 0.019 | 0.025 | 2613175701351028212 | 0000 | 2 | 11nn | AAUU | -48 | 34 | 26 | 34 | 0.157 |
6.198088 | 262.36375 | 75.690333 | 1792 | 78 | iso | NGC6412 | 0 | 17 29 27.3 | +75 41 25.2 | 37.3 | 80 | 4.8 | 0.03 | 4.0 | -- | 1.43 | 7.25 | Simbad | J172925.67+754123.7 | 262.3569903 | 75.6899173 | 0.3268 | 0.1897 | 101.4 | 16.104 | 16.518 | 12.619 | 9.184 | -- | -- | -- | 0.126 | 0.248 | -- | -- | -- | -- | -- | 2613175701351029820 | 0000 | 2 | 3nnn | BBUU | -253 | 460 | 362 | 559 | -- |
2.619531 | 262.364167 | 75.690389 | 1794 | 80 | iso | NGC6412 | 0 | 17 29 27.4 | +75 41 25.4 | 36.9 | 60 | 4.4 | 0.03 | 4.0 | -- | 3.33 | 7.12 | Simbad | J172927.37+754122.7 | 262.3640507 | 75.6896619 | 0.0403 | 0.0374 | 77.5 | 12.05 | 12.097 | 12.917 | 9.369 | 12.52 | 12.177 | 12.107 | 0.023 | 0.021 | -- | -- | 0.022 | 0.019 | 0.025 | 2613175701351028212 | 0000 | 2 | 11nn | AAUU | -48 | 34 | 26 | 34 | 0.157 |
6.607669 | 262.364167 | 75.690389 | 1794 | 80 | iso | NGC6412 | 0 | 17 29 27.4 | +75 41 25.4 | 36.9 | 60 | 4.4 | 0.03 | 4.0 | -- | 3.33 | 7.12 | Simbad | J172925.67+754123.7 | 262.3569903 | 75.6899173 | 0.3268 | 0.1897 | 101.4 | 16.104 | 16.518 | 12.619 | 9.184 | -- | -- | -- | 0.126 | 0.248 | -- | -- | -- | -- | -- | 2613175701351029820 | 0000 | 2 | 3nnn | BBUU | -253 | 460 | 362 | 559 | -- |
5.639364 | 250.76375 | 36.834722 | 1795 | 1 | iso | NGC6207 | 0 | 16 43 03.3 | +36 50 05.0 | 39.51 | 154 | 6.33 | 0.14 | 18.0 | 27.0 | 68.4 | 6.8 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |
7.969164 | 250.76375 | 36.834722 | 1795 | 1 | iso | NGC6207 | 0 | 16 43 03.3 | +36 50 05.0 | 39.51 | 154 | 6.33 | 0.14 | 18.0 | 27.0 | 68.4 | 6.8 | Simbad | J164303.79+364959.7 | 250.7658199 | 36.8332538 | 0.0379 | 0.0338 | 158.6 | 10.953 | 10.936 | 7.758 | 5.483 | -- | -- | -- | 0.023 | 0.022 | 0.024 | 0.066 | -- | -- | -- | 2499136301351044647 | d0d0 | 5 | 3200 | AAAA | 113 | 31 | 484 | 32 | -- |
7.499991 | 250.764583 | 36.836306 | 1796 | 2 | iso | NGC6207 | 0 | 16 43 03.5 | +36 50 10.7 | 39.36 | 131 | 6.15 | 0.148 | 13.9 | 21.0 | 138.94 | 6.78 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |
3.3028 | 250.775 | 36.842361 | 1797 | 3 | iso | NGC6207 | 0 | 16 43 06.0 | +36 50 32.5 | 38.88 | 138 | 5.94 | 0.079 | 6.0 | 7.0 | 264.23 | 6.75 | Simbad | J164305.83+365029.8 | 250.7743217 | 36.8416214 | 0.0374 | 0.0369 | 67.0 | 12.87 | 12.918 | 8.29 | 5.588 | -- | -- | -- | 0.073 | 0.025 | 0.022 | 0.037 | -- | -- | -- | 2499136301351044678 | 0000 | 3 | 3000 | AAAA | 10 | 40 | 359 | 42 | -- |
2.552215 | 250.774583 | 36.840944 | 1806 | 12 | iso | NGC6207 | 0 | 16 43 05.9 | +36 50 27.4 | 38.26 | 72 | 5.2 | 0.1 | 4.0 | -- | 264.14 | 6.75 | Simbad | J164305.83+365029.8 | 250.7743217 | 36.8416214 | 0.0374 | 0.0369 | 67.0 | 12.87 | 12.918 | 8.29 | 5.588 | -- | -- | -- | 0.073 | 0.025 | 0.022 | 0.037 | -- | -- | -- | 2499136301351044678 | 0000 | 3 | 3000 | AAAA | 10 | 40 | 359 | 42 | -- |
7.317245 | 250.764583 | 36.83625 | 1817 | 24 | iso | NGC6207 | 0 | 16 43 03.5 | +36 50 10.5 | 37.73 | 72 | 4.9 | 0.056 | 4.0 | -- | 200.19 | 6.76 | Simbad | J164303.76+365003.8 | 250.7656686 | 36.8344125 | 0.0212 | 0.0201 | 135.0 | 10.792 | 11.24 | 7.028 | 4.232 | 12.866 | 12.603 | 12.523 | 0.03 | 0.019 | 0.013 | 0.021 | 0.043 | 0.056 | 0.058 | 2499136301351044679 | hd00 | 3 | n9n3 | AAAA | -929 | 25 | -1205 | 26 | 0.458 |