@@ -662,6 +662,72 @@ And the columns in the output can be reset to their default value with
662
662
A detailed description on the ways to add fluxes is available in the
663
663
:ref: `optical filters ` section.
664
664
665
+ Measurement fields vs. Basic fields
666
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
667
+
668
+ Some field names start with ``mes ``. These denote what SIMBAD calls a
669
+ "measurement table". These tables store the history on past measurements of a physical
670
+ parameter for each object.
671
+
672
+ Let's look at the star ``HD 200207 `` with the parallax measurements table ``mesplx ``:
673
+
674
+ .. doctest-remote-data ::
675
+
676
+ >>> from astroquery.simbad import Simbad
677
+ >>> simbad = Simbad()
678
+ >>> simbad.add_votable_fields(" mesplx" )
679
+ >>> hd_200207 = simbad.query_object(" HD 200207" )
680
+ >>> hd_200207[[" main_id" , " mesplx.plx" , " mesplx.plx_err" , " mesplx.bibcode" ]]
681
+ <Table length=5>
682
+ main_id mesplx.plx mesplx.plx_err mesplx.bibcode
683
+ mas mas
684
+ object float32 float32 object
685
+ --------- ---------- -------------- -------------------
686
+ HD 200207 3.4084 0.0195 2020yCat.1350....0G
687
+ HD 200207 3.4552 0.0426 2018yCat.1345....0G
688
+ HD 200207 3.35 0.76 1997A&A...323L..49P
689
+ HD 200207 3.72 0.62 2007A&A...474..653V
690
+ HD 200207 3.25 0.22 2016A&A...595A...2G
691
+
692
+ This field adds one line per parallax measurement: five articles have measured it
693
+ for this star.
694
+
695
+ If you are only interested in the most precise measure recorded by the SIMBAD team, some
696
+ measurements fields have an equivalent in the basic fields. These fields only give one
697
+ line per object with the most precise currently known value:
698
+
699
+ +-------------------+---------------+
700
+ | measurement field | basic field |
701
+ +===================+===============+
702
+ | mesplx | parallax |
703
+ +-------------------+---------------+
704
+ | mespm | propermotions |
705
+ +-------------------+---------------+
706
+ | messpt | sp |
707
+ +-------------------+---------------+
708
+ | mesvelocities | velocity |
709
+ +-------------------+---------------+
710
+
711
+ Here, ``mesplx `` has an equivalent in the basic fields so we could have done:
712
+
713
+ .. doctest-remote-data ::
714
+
715
+ >>> from astroquery.simbad import Simbad
716
+ >>> simbad = Simbad()
717
+ >>> simbad.add_votable_fields(" parallax" )
718
+ >>> hd_200207 = simbad.query_object(" HD 200207" )
719
+ >>> hd_200207[[" main_id" , " plx_value" , " plx_err" , " plx_bibcode" ]]
720
+ <Table length=1>
721
+ main_id plx_value plx_err plx_bibcode
722
+ mas mas
723
+ object float64 float32 object
724
+ --------- --------- ------- -------------------
725
+ HD 200207 3.4084 0.0195 2020yCat.1350....0G
726
+
727
+ And we only have one line per object with the value selected by SIMBAD's team.
728
+
729
+ Thus, choosing to add a measurement field or a basic field depends on your goal.
730
+
665
731
Additional criteria
666
732
-------------------
667
733
0 commit comments