Example with dummy data#


Author: Adrien CR Thob

© 2022 Adrien CR Thob

This notebook is part of the py-ananke project, which is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). The full copyright notice, including terms governing use, modification, and redistribution, is contained in the files LICENSE and COPYRIGHT, which can be found at the root of the source code distribution tree

Updated On: 2026-04-11


This notebook shows a simplified use case utilizing a dummy set of randomly generated particle data. It is by default set to simulate a catalog of stars with Gaia DR2 astrometry & photometry, but you may change the parameters defined below to your liking. In short, the pipeline is accessible via the class Ananke, which method run can eventually be called after creation of an Ananke object to run the full ananke pipeline. The method run is designed to returns the catalog in the form of an Output object of the submodule galaxia_ananke which can be used as a vaex dataframe.

Below are the packages that this notebook must import:

import numpy as np
import ananke as an
an.__version__
'0.5.0'

We define here some dummy input data. Ananke has a method make_dummy_particles_input to produce such data in a dictionary formatted output. Below we show how to call it and the keys that compose that dictionary.

np.random.seed(0)
p = an.Ananke.make_dummy_particles_input()
p.keys()
dict_keys(['pos3', 'vel3', 'mass', 'age', 'feh', 'helium', 'carbon', 'nitrogen', 'oxygen', 'neon', 'magnesium', 'silicon', 'sulphur', 'calcium', 'alpha', 'parentid', 'partitionid', 'dform', 'id', 'log10_NH'])

The input data must be formatted as a dictionary of equal-length arrays. The dictionary must have the following entries:

  • key pos3: particle position coordinates in \(kpc\) (shape Nx3)

  • key vel3: particle velocity coordinates in \(km.s^{-1}\) (shape Nx3)

  • key mass: particle stellar mass in solar masses

  • key age: particle log10 stellar age in years

  • key feh: particle stellar metallicity [Fe/H] in dex relative to solar

Additionally, the following entries can optionally be added:

  • key parentid: index to give to the parent particle

  • key id: additional index to classify the parent particle

  • key log10_NH: log10 hydrogen column densities between Observer position and particle in \(cm^{-2}\) - must be provided to estimate extinctions

  • key dform: particle formation distance

  • keys helium, carbon, nitrogen, oxygen, neon, magnesium, silicon, sulphur, calcium: particle various chemical abundances [X/H]

  • key alpha: particle alpha chemical abundances [Mg/Fe]

Ananke will compute the phase space densities that are used to determine particle smoothing lengths, but one can include pre-computed densities with the following entries:

  • key rho_pos: particle density in position space in \(kpc^{-3}\)

  • key rho_vel: particle density in velocity space in \(km^{-3}.s^{3}\)

At any time, you may access this format via the helper of the Ananke.make_dummy_particles_input method using

help(an.Ananke.make_dummy_particles_input)

We define below some parameters for Ananke such as

  • the observer position observer

  • the shell of particles to mask rshell

  • the sampling factor fsample

  • the photometric system of choice photo_sys (in our case Gaia DR2)

  • the CMD cmd_magnames and its box limits cmd_box

D = 200 # *units.kpc

observer = np.nan*np.ones(3)
while not np.linalg.norm(observer)<1:
    observer = 2*np.random.rand(3)-1

observer *= D/np.linalg.norm(observer)

rshell = [0, 2*D]

fsample = 0.01

photo_sys = 'padova/GAIA__DR2'

cmd_magnames = {'magnitude': 'G',
                'color_minuend': 'Gbp',
                'color_subtrahend': 'Grp'}

cmd_box = {
           'abs_mag_lim_lo': -1000,
           'abs_mag_lim_hi': 1000,
        #    'app_mag_lim_lo' : -1000,
           'app_mag_lim_hi': 30,
        #    'color_lim_lo' : -1000,
        #    'color_lim_hi' : 1000
           }

For more details regarding these parameters and more, you may consult the docstring associated to the class Ananke via the lines:

help(an.Ananke.__init__)

or

help(an.Ananke)

Note that among those are 3 special parameters, d_params, e_params and err_params, which receive dictionaries of subparameters to configure the sub-steps of the pipeline corresponding respectively to the phase space density estimation, the extinction mapping and the instrument error modeling. Each have further documentation that can be accessed calling the following methods:

an.display_density_docs() for d_params

an.display_extinction_docs() for e_params

an.display_errormodel_docs() for err_params

We show below how to create the Ananke pipeline object before calling run, using the parameters we defined above.

name = 'sim'
ananke = an.Ananke(p, name, fsample=fsample,
                   observer=observer, rshell=rshell,
                   photo_sys=photo_sys, cmd_magnames=cmd_magnames,
                   **cmd_box)
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/utils.py:45: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
  self._record_of_all_used_keys = set()
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/utils.py:45: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
  self._record_of_all_used_keys = set()

As mentioned above, the Ananke method run runs the pipeline once it has been created. Some additional parameters can be provided to this method, which are listed in its docstring (accessible by calling help(ananke.run)). Those include:

  • input_dir, output_dir, i_o_dir - Optional arguments to specify paths for the directories where ananke should generate input and output data. If the i_o_dir keyword argument is provided, it overrides any path given to the input_dir and output_dir keyword arguments.

  • k_factor – Scaling factor applied to the kernels lengths to adjust all the kernels sizes uniformly. Lower values reduces the kernels extents, while higher values increases them. Default to 1 (no adjustment).

  • surveyname – Optional name Galaxia should use for the output files. Default to 'survey'.

  • n_jobs – Number of independent catalog generations ran in parallel. Default to 1.

  • verbose – Verbose boolean flag to allow pipeline to print what it’s doing to stdout. Default to True.

  • rand_seed – Seed to be used by Galaxia’s pseudorandom number generator. Default to 17052

  • nstart – Index at which to start indexing synthetic stars. Default to 0 For our example however, we will use the method as it is.

Warning

Some of the run method parameters are currently not properly implemented, using them may lead to unexpected results

survey = ananke.run()
Dimensions = 3
Normalization constant of Kernel type 3: 0.596831
Reading ASCII format file: to_enbid 
Read 300000 records
Allocated 3.8147 MByte for particle storage.
Type = 1 Particles = 100000
Total particles = 100000
Allocated 22.1252 MByte for Binary-Tree and Entropy bins.

Scaling Co-ordinates as x[i]=x[i]/h[i] with h[i]->
1 1 1 

Starting to Build Tree .......
Particle Type = 1 First node number = 1
                  Last node number  = 199999
Total number of nodes = 199999
Treebuild time = 0.11409 s 

Density Calculation. Smoothing .....
Evaluated =   1 % Time Left = 0.795160 s of 0.803200 s Par no = 96805 Density = 4.540411e-02 
Evaluated =   2 % Time Left = 0.769978 s of 0.785700 s Par no = 55454 Density = 4.964532e-03 
Evaluated =   3 % Time Left = 0.794228 s of 0.818800 s Par no = 27717 Density = 1.827217e-01 
Evaluated =   4 % Time Left = 0.801304 s of 0.834700 s Par no = 42234 Density = 2.712376e-02 
Evaluated =   5 % Time Left = 0.788910 s of 0.830440 s Par no = 99785 Density = 2.988043e-01 
Evaluated =   6 % Time Left = 0.787680 s of 0.837967 s Par no = 88021 Density = 1.791133e-01 
Evaluated =   7 % Time Left = 0.797134 s of 0.857143 s Par no = 75708 Density = 1.165058e-01 
Evaluated =   8 % Time Left = 0.783210 s of 0.851325 s Par no = 45579 Density = 7.255407e-02 
Evaluated =   9 % Time Left = 0.761470 s of 0.836789 s Par no = 30351 Density = 8.828938e-02 
Evaluated =  10 % Time Left = 0.759061 s of 0.843410 s Par no = 89176 Density = 1.775999e-01 
Evaluated =  11 % Time Left = 0.753061 s of 0.846145 s Par no = 60361 Density = 8.299880e-02 
Evaluated =  12 % Time Left = 0.748277 s of 0.850325 s Par no = 90082 Density = 2.203585e-01 
Evaluated =  13 % Time Left = 0.743125 s of 0.854177 s Par no = 26814 Density = 1.910994e-02 
Evaluated =  14 % Time Left = 0.732085 s of 0.851271 s Par no = 74297 Density = 2.157650e-02 
Evaluated =  15 % Time Left = 0.728385 s of 0.856933 s Par no = 94905 Density = 9.119637e-02 
Evaluated =  16 % Time Left = 0.722948 s of 0.860662 s Par no = 51653 Density = 9.666827e-02 
Evaluated =  17 % Time Left = 0.713655 s of 0.859835 s Par no = 39308 Density = 1.287774e-01 
Evaluated =  18 % Time Left = 0.706945 s of 0.862139 s Par no = 7800 Density = 4.130107e-02 
Evaluated =  19 % Time Left = 0.697802 s of 0.861495 s Par no = 42838 Density = 5.914271e-02 
Evaluated =  20 % Time Left = 0.690035 s of 0.862555 s Par no = 49016 Density = 1.554842e-01 
Evaluated =  21 % Time Left = 0.681931 s of 0.863214 s Par no = 29173 Density = 5.981785e-02 
Evaluated =  22 % Time Left = 0.670671 s of 0.859845 s Par no = 14018 Density = 4.713366e-02 
Evaluated =  23 % Time Left = 0.661662 s of 0.859313 s Par no = 90617 Density = 4.088210e-02 
Evaluated =  24 % Time Left = 0.655653 s of 0.862712 s Par no = 20588 Density = 1.273882e-01 
Evaluated =  25 % Time Left = 0.647577 s of 0.863448 s Par no = 15465 Density = 1.274245e-01 
Evaluated =  26 % Time Left = 0.642539 s of 0.868308 s Par no = 99360 Density = 2.044210e-01 
Evaluated =  27 % Time Left = 0.632812 s of 0.866878 s Par no = 71132 Density = 2.079416e-02 
Evaluated =  28 % Time Left = 0.621727 s of 0.863521 s Par no = 6665 Density = 4.366049e-03 
Evaluated =  29 % Time Left = 0.615400 s of 0.866772 s Par no = 44439 Density = 1.463732e-01 
Evaluated =  30 % Time Left = 0.606434 s of 0.866347 s Par no = 6386 Density = 1.825200e-01 
Evaluated =  31 % Time Left = 0.598471 s of 0.867361 s Par no = 2716 Density = 1.495580e-01 
Evaluated =  32 % Time Left = 0.589766 s of 0.867316 s Par no = 69470 Density = 6.785184e-02 
Evaluated =  33 % Time Left = 0.582467 s of 0.869367 s Par no = 95884 Density = 1.793627e-01 
Evaluated =  34 % Time Left = 0.573543 s of 0.869018 s Par no = 73768 Density = 1.295312e-02 
Evaluated =  35 % Time Left = 0.565417 s of 0.869886 s Par no = 47898 Density = 1.088661e-01 
Evaluated =  36 % Time Left = 0.555316 s of 0.867694 s Par no = 66396 Density = 3.959183e-02 
Evaluated =  37 % Time Left = 0.546699 s of 0.867789 s Par no = 16463 Density = 1.572218e-01 
Evaluated =  38 % Time Left = 0.540338 s of 0.871526 s Par no = 55669 Density = 1.712036e-01 
Evaluated =  39 % Time Left = 0.533905 s of 0.875269 s Par no = 97705 Density = 1.234432e-01 
Evaluated =  40 % Time Left = 0.524561 s of 0.874283 s Par no = 43442 Density = 6.719712e-02 
Evaluated =  41 % Time Left = 0.516467 s of 0.875383 s Par no = 10242 Density = 2.102901e-01 
Evaluated =  42 % Time Left = 0.510045 s of 0.879402 s Par no = 40929 Density = 1.391802e-01 
Evaluated =  43 % Time Left = 0.502198 s of 0.881065 s Par no = 5720 Density = 6.551559e-02 
Evaluated =  44 % Time Left = 0.492836 s of 0.880080 s Par no = 66730 Density = 9.093650e-02 
Evaluated =  45 % Time Left = 0.484401 s of 0.880744 s Par no = 48819 Density = 2.248662e-01 
Evaluated =  46 % Time Left = 0.476852 s of 0.883076 s Par no = 32014 Density = 9.211309e-02 
Evaluated =  47 % Time Left = 0.468079 s of 0.883185 s Par no = 31533 Density = 2.932795e-02 
Evaluated =  48 % Time Left = 0.458642 s of 0.882021 s Par no = 86677 Density = 1.263195e-01 
Evaluated =  49 % Time Left = 0.450736 s of 0.883814 s Par no = 81951 Density = 8.802204e-02 
Evaluated =  50 % Time Left = 0.442416 s of 0.884850 s Par no = 80149 Density = 1.559104e-01 
Evaluated =  51 % Time Left = 0.433414 s of 0.884537 s Par no = 25229 Density = 5.093939e-02 
Evaluated =  52 % Time Left = 0.425109 s of 0.885662 s Par no = 89731 Density = 4.987880e-02 
Evaluated =  53 % Time Left = 0.415386 s of 0.883819 s Par no = 76366 Density = 1.511494e-01 
Evaluated =  54 % Time Left = 0.406704 s of 0.884159 s Par no = 73159 Density = 1.548675e-02 
Evaluated =  55 % Time Left = 0.397968 s of 0.884393 s Par no = 54007 Density = 8.763470e-02 
Evaluated =  56 % Time Left = 0.388747 s of 0.883536 s Par no = 36235 Density = 5.465964e-02 
Evaluated =  57 % Time Left = 0.379722 s of 0.883095 s Par no = 62068 Density = 4.050222e-02 
Evaluated =  58 % Time Left = 0.369800 s of 0.880498 s Par no = 37661 Density = 2.656841e-02 
Evaluated =  59 % Time Left = 0.361328 s of 0.881310 s Par no = 67914 Density = 1.940649e-01 
Evaluated =  60 % Time Left = 0.353032 s of 0.882602 s Par no = 64732 Density = 5.859731e-02 
Evaluated =  61 % Time Left = 0.343306 s of 0.880295 s Par no = 88788 Density = 7.161247e-03 
Evaluated =  62 % Time Left = 0.334523 s of 0.880347 s Par no = 44083 Density = 2.877787e-02 
Evaluated =  63 % Time Left = 0.325391 s of 0.879459 s Par no = 14045 Density = 3.265437e-02 
Evaluated =  64 % Time Left = 0.315847 s of 0.877377 s Par no = 93621 Density = 5.216302e-02 
Evaluated =  65 % Time Left = 0.306657 s of 0.876188 s Par no = 9132 Density = 8.411557e-02 
Evaluated =  66 % Time Left = 0.298232 s of 0.877177 s Par no = 702 Density = 1.110411e-02 
Evaluated =  67 % Time Left = 0.289850 s of 0.878360 s Par no = 45670 Density = 2.465222e-02 
Evaluated =  68 % Time Left = 0.280703 s of 0.877224 s Par no = 53860 Density = 1.580593e-02 
Evaluated =  69 % Time Left = 0.271518 s of 0.875891 s Par no = 79719 Density = 4.454536e-02 
Evaluated =  70 % Time Left = 0.262252 s of 0.874201 s Par no = 96401 Density = 1.035200e-02 
Evaluated =  71 % Time Left = 0.253052 s of 0.872623 s Par no = 48105 Density = 3.704987e-02 
Evaluated =  72 % Time Left = 0.243959 s of 0.871314 s Par no = 75056 Density = 2.642116e-02 
Evaluated =  73 % Time Left = 0.235081 s of 0.870701 s Par no = 97912 Density = 1.775965e-01 
Evaluated =  74 % Time Left = 0.226201 s of 0.870039 s Par no = 87879 Density = 7.451773e-02 
Evaluated =  75 % Time Left = 0.217639 s of 0.870591 s Par no = 85159 Density = 1.462781e-02 
Evaluated =  76 % Time Left = 0.209220 s of 0.871786 s Par no = 78132 Density = 5.302110e-02 
Evaluated =  77 % Time Left = 0.200351 s of 0.871127 s Par no = 21990 Density = 3.497640e-03 
Evaluated =  78 % Time Left = 0.191220 s of 0.869219 s Par no = 16462 Density = 2.482335e-02 
Evaluated =  79 % Time Left = 0.182406 s of 0.868639 s Par no = 22311 Density = 3.571432e-02 
Evaluated =  80 % Time Left = 0.173464 s of 0.867365 s Par no = 43269 Density = 1.776266e-02 
Evaluated =  81 % Time Left = 0.164900 s of 0.867938 s Par no = 43142 Density = 1.532303e-02 
Evaluated =  82 % Time Left = 0.156212 s of 0.867894 s Par no = 52197 Density = 3.049044e-02 
Evaluated =  83 % Time Left = 0.147398 s of 0.867100 s Par no = 74476 Density = 1.449572e-01 
Evaluated =  84 % Time Left = 0.138788 s of 0.867481 s Par no = 8891 Density = 1.050831e-02 
Evaluated =  85 % Time Left = 0.130103 s of 0.867411 s Par no = 1559 Density = 1.452041e-03 
Evaluated =  86 % Time Left = 0.121417 s of 0.867328 s Par no = 20602 Density = 2.028735e-01 
Evaluated =  87 % Time Left = 0.112858 s of 0.868207 s Par no = 54383 Density = 2.137116e-01 
Evaluated =  88 % Time Left = 0.104397 s of 0.870047 s Par no = 70246 Density = 2.757094e-03 
Evaluated =  89 % Time Left = 0.095777 s of 0.870783 s Par no = 51472 Density = 5.058417e-04 
Evaluated =  90 % Time Left = 0.086998 s of 0.870071 s Par no = 66269 Density = 3.630537e-02 
Evaluated =  91 % Time Left = 0.078431 s of 0.871547 s Par no = 62858 Density = 1.776033e-01 
Evaluated =  92 % Time Left = 0.069876 s of 0.873562 s Par no = 84061 Density = 1.439860e-01 
Evaluated =  93 % Time Left = 0.061222 s of 0.874720 s Par no = 78610 Density = 4.029672e-03 
Evaluated =  94 % Time Left = 0.052545 s of 0.875898 s Par no = 3871 Density = 1.597447e-01 
Evaluated =  95 % Time Left = 0.043888 s of 0.877941 s Par no = 68736 Density = 1.582606e-01 
Evaluated =  96 % Time Left = 0.035201 s of 0.880235 s Par no = 30472 Density = 6.743145e-02 
Evaluated =  97 % Time Left = 0.026422 s of 0.881018 s Par no = 86838 Density = 1.353215e-03 
Evaluated =  98 % Time Left = 0.017635 s of 0.882213 s Par no = 92913 Density = 5.211162e-02 
Evaluated =  99 % Time Left = 0.008832 s of 0.884067 s Par no = 30015 Density = 9.179291e-04 
Evaluated = 100 % Time Left = -0.000009 s of 0.886423 s Par no = 86525 Density = 1.579017e-04 

Total Smoothing Time = 0.886436 s
1 3

writing snapshot file ....
to_enbid_d3n64.est
done with snapshot.

Total Time = 1.28961 s 
Dimensions = 3
Normalization constant of Kernel type 3: 0.596831
Reading ASCII format file: to_enbid 
Read 300000 records
Allocated 3.8147 MByte for particle storage.
Type = 1 Particles = 100000
Total particles = 100000
Allocated 22.1252 MByte for Binary-Tree and Entropy bins.

Scaling Co-ordinates as x[i]=x[i]/h[i] with h[i]->
1 1 1 

Starting to Build Tree .......
Particle Type = 1 First node number = 1
                  Last node number  = 199999
Total number of nodes = 199999
Treebuild time = 0.115493 s 

Density Calculation. Smoothing .....
Evaluated =   1 % Time Left = 0.817732 s of 0.826000 s Par no = 3379 Density = 1.586355e-02 
Evaluated =   2 % Time Left = 0.804817 s of 0.821250 s Par no = 75725 Density = 4.756319e-02 
Evaluated =   3 % Time Left = 0.821582 s of 0.847000 s Par no = 95160 Density = 6.928090e-03 
Evaluated =   4 % Time Left = 0.805312 s of 0.838875 s Par no = 40983 Density = 2.235913e-02 
Evaluated =   5 % Time Left = 0.810588 s of 0.853260 s Par no = 79587 Density = 2.321368e-02 
Evaluated =   6 % Time Left = 0.820408 s of 0.872783 s Par no = 62143 Density = 2.106821e-02 
Evaluated =   7 % Time Left = 0.804481 s of 0.865043 s Par no = 48098 Density = 2.322558e-02 
Evaluated =   8 % Time Left = 0.799644 s of 0.869187 s Par no = 73424 Density = 1.566558e-02 
Evaluated =   9 % Time Left = 0.792864 s of 0.871289 s Par no = 41738 Density = 1.527212e-02 
Evaluated =  10 % Time Left = 0.784683 s of 0.871880 s Par no = 34821 Density = 3.462067e-02 
Evaluated =  11 % Time Left = 0.785918 s of 0.883064 s Par no = 99566 Density = 5.806165e-02 
Evaluated =  12 % Time Left = 0.778600 s of 0.884783 s Par no = 59443 Density = 1.071449e-02 
Evaluated =  13 % Time Left = 0.763021 s of 0.877046 s Par no = 7663 Density = 2.551240e-03 
Evaluated =  14 % Time Left = 0.761595 s of 0.885586 s Par no = 69540 Density = 2.717029e-02 
Evaluated =  15 % Time Left = 0.749652 s of 0.881953 s Par no = 28859 Density = 1.270314e-02 
Evaluated =  16 % Time Left = 0.733485 s of 0.873206 s Par no = 77774 Density = 2.211896e-02 
Evaluated =  17 % Time Left = 0.727716 s of 0.876776 s Par no = 65109 Density = 3.644556e-03 
Evaluated =  18 % Time Left = 0.716357 s of 0.873617 s Par no = 17146 Density = 6.157028e-03 
Evaluated =  19 % Time Left = 0.711580 s of 0.878505 s Par no = 79145 Density = 2.474514e-02 
Evaluated =  20 % Time Left = 0.703183 s of 0.878990 s Par no = 84563 Density = 3.054690e-02 
Evaluated =  21 % Time Left = 0.693841 s of 0.878290 s Par no = 35101 Density = 3.370794e-02 
Evaluated =  22 % Time Left = 0.684973 s of 0.878182 s Par no = 31911 Density = 1.401559e-03 
Evaluated =  23 % Time Left = 0.676634 s of 0.878757 s Par no = 96514 Density = 1.869492e-02 
Evaluated =  24 % Time Left = 0.667958 s of 0.878904 s Par no = 41208 Density = 4.063115e-02 
Evaluated =  25 % Time Left = 0.659007 s of 0.878688 s Par no = 50899 Density = 1.130457e-03 
Evaluated =  26 % Time Left = 0.649205 s of 0.877315 s Par no = 25354 Density = 2.573581e-02 
Evaluated =  27 % Time Left = 0.640393 s of 0.877263 s Par no = 38397 Density = 1.824382e-02 
Evaluated =  28 % Time Left = 0.636188 s of 0.883607 s Par no = 99925 Density = 5.098955e-02 
Evaluated =  29 % Time Left = 0.630917 s of 0.888628 s Par no = 67233 Density = 3.835664e-02 
Evaluated =  30 % Time Left = 0.623693 s of 0.891003 s Par no = 21415 Density = 1.821073e-02 
Evaluated =  31 % Time Left = 0.613154 s of 0.888642 s Par no = 39830 Density = 5.986182e-03 
Evaluated =  32 % Time Left = 0.601766 s of 0.884962 s Par no = 62656 Density = 1.851001e-03 
Evaluated =  33 % Time Left = 0.595004 s of 0.888079 s Par no = 48049 Density = 1.832367e-02 
Evaluated =  34 % Time Left = 0.586836 s of 0.889159 s Par no = 71467 Density = 3.566542e-02 
Evaluated =  35 % Time Left = 0.578562 s of 0.890109 s Par no = 94467 Density = 8.080338e-03 
Evaluated =  36 % Time Left = 0.567900 s of 0.887358 s Par no = 24663 Density = 3.556317e-02 
Evaluated =  37 % Time Left = 0.558473 s of 0.886478 s Par no = 55355 Density = 2.436876e-02 
Evaluated =  38 % Time Left = 0.550703 s of 0.888245 s Par no = 77628 Density = 3.192216e-02 
Evaluated =  39 % Time Left = 0.542736 s of 0.889746 s Par no = 6428 Density = 3.955819e-02 
Evaluated =  40 % Time Left = 0.533660 s of 0.889447 s Par no = 29219 Density = 3.686058e-04 
Evaluated =  41 % Time Left = 0.524544 s of 0.889073 s Par no = 11475 Density = 1.075123e-02 
Evaluated =  42 % Time Left = 0.517497 s of 0.892252 s Par no = 25064 Density = 3.927625e-02 
Evaluated =  43 % Time Left = 0.508553 s of 0.892214 s Par no = 14672 Density = 1.066699e-02 
Evaluated =  44 % Time Left = 0.498464 s of 0.890130 s Par no = 46917 Density = 2.114631e-02 
Evaluated =  45 % Time Left = 0.488983 s of 0.889076 s Par no = 35522 Density = 9.714150e-03 
Evaluated =  46 % Time Left = 0.480956 s of 0.890676 s Par no = 10564 Density = 2.478037e-03 
Evaluated =  47 % Time Left = 0.471848 s of 0.890296 s Par no = 90836 Density = 3.490644e-02 
Evaluated =  48 % Time Left = 0.463035 s of 0.890469 s Par no = 91231 Density = 8.647473e-03 
Evaluated =  49 % Time Left = 0.454860 s of 0.891900 s Par no = 16819 Density = 9.508127e-03 
Evaluated =  50 % Time Left = 0.444781 s of 0.889580 s Par no = 30766 Density = 4.927925e-03 
Evaluated =  51 % Time Left = 0.435856 s of 0.889520 s Par no = 9459 Density = 7.940475e-03 
Evaluated =  52 % Time Left = 0.426338 s of 0.888223 s Par no = 76505 Density = 8.072356e-03 
Evaluated =  53 % Time Left = 0.416675 s of 0.886562 s Par no = 52019 Density = 3.462386e-03 
Evaluated =  54 % Time Left = 0.407605 s of 0.886117 s Par no = 56938 Density = 1.337130e-02 
Evaluated =  55 % Time Left = 0.397887 s of 0.884213 s Par no = 33321 Density = 2.006831e-02 
Evaluated =  56 % Time Left = 0.388972 s of 0.884048 s Par no = 4046 Density = 2.271462e-02 
Evaluated =  57 % Time Left = 0.380751 s of 0.885488 s Par no = 68529 Density = 3.147267e-02 
Evaluated =  58 % Time Left = 0.373468 s of 0.889231 s Par no = 23845 Density = 3.357711e-02 
Evaluated =  59 % Time Left = 0.365215 s of 0.890790 s Par no = 57420 Density = 3.986822e-02 
Evaluated =  60 % Time Left = 0.356246 s of 0.890637 s Par no = 89896 Density = 3.369183e-03 
Evaluated =  61 % Time Left = 0.347292 s of 0.890516 s Par no = 39610 Density = 1.535302e-03 
Evaluated =  62 % Time Left = 0.337415 s of 0.887958 s Par no = 26107 Density = 4.015532e-03 
Evaluated =  63 % Time Left = 0.328377 s of 0.887529 s Par no = 98943 Density = 1.799383e-03 
Evaluated =  64 % Time Left = 0.319120 s of 0.886469 s Par no = 99085 Density = 1.412553e-02 
Evaluated =  65 % Time Left = 0.310010 s of 0.885768 s Par no = 17 Density = 1.179375e-02 
Evaluated =  66 % Time Left = 0.300400 s of 0.883556 s Par no = 3087 Density = 1.429490e-02 
Evaluated =  67 % Time Left = 0.292265 s of 0.885679 s Par no = 86468 Density = 2.256122e-02 
Evaluated =  68 % Time Left = 0.283261 s of 0.885219 s Par no = 52080 Density = 4.635496e-03 
Evaluated =  69 % Time Left = 0.273761 s of 0.883128 s Par no = 26417 Density = 1.433997e-02 
Evaluated =  70 % Time Left = 0.264921 s of 0.883100 s Par no = 79634 Density = 7.429452e-03 
Evaluated =  71 % Time Left = 0.256227 s of 0.883570 s Par no = 97643 Density = 2.184668e-04 
Evaluated =  72 % Time Left = 0.247611 s of 0.884357 s Par no = 78794 Density = 5.369595e-03 
Evaluated =  73 % Time Left = 0.238316 s of 0.882686 s Par no = 45708 Density = 1.294336e-02 
Evaluated =  74 % Time Left = 0.229173 s of 0.881468 s Par no = 66525 Density = 2.125199e-03 
Evaluated =  75 % Time Left = 0.220132 s of 0.880561 s Par no = 21984 Density = 8.619656e-04 
Evaluated =  76 % Time Left = 0.211240 s of 0.880204 s Par no = 43799 Density = 2.740289e-03 
Evaluated =  77 % Time Left = 0.202118 s of 0.878814 s Par no = 63854 Density = 3.854665e-03 
Evaluated =  78 % Time Left = 0.193027 s of 0.877437 s Par no = 91160 Density = 2.256671e-03 
Evaluated =  79 % Time Left = 0.184179 s of 0.877082 s Par no = 1891 Density = 1.555006e-04 
Evaluated =  80 % Time Left = 0.175523 s of 0.877658 s Par no = 17306 Density = 9.342227e-04 
Evaluated =  81 % Time Left = 0.166766 s of 0.877763 s Par no = 83119 Density = 2.469888e-02 
Evaluated =  82 % Time Left = 0.158067 s of 0.878198 s Par no = 73346 Density = 1.956386e-03 
Evaluated =  83 % Time Left = 0.149114 s of 0.877195 s Par no = 98412 Density = 4.288590e-03 
Evaluated =  84 % Time Left = 0.140566 s of 0.878593 s Par no = 52509 Density = 8.264857e-03 
Evaluated =  85 % Time Left = 0.132129 s of 0.880918 s Par no = 76716 Density = 3.547589e-02 
Evaluated =  86 % Time Left = 0.123607 s of 0.882970 s Par no = 95957 Density = 2.923764e-02 
Evaluated =  87 % Time Left = 0.114785 s of 0.883029 s Par no = 3295 Density = 1.361911e-02 
Evaluated =  88 % Time Left = 0.106015 s of 0.883532 s Par no = 4026 Density = 3.781490e-02 
Evaluated =  89 % Time Left = 0.097306 s of 0.884683 s Par no = 78656 Density = 6.492402e-02 
Evaluated =  90 % Time Left = 0.088728 s of 0.887369 s Par no = 9255 Density = 4.661644e-02 
Evaluated =  91 % Time Left = 0.080003 s of 0.889016 s Par no = 89389 Density = 2.612382e-03 
Evaluated =  92 % Time Left = 0.071007 s of 0.887701 s Par no = 91357 Density = 1.136847e-02 
Evaluated =  93 % Time Left = 0.062246 s of 0.889352 s Par no = 75212 Density = 1.186542e-02 
Evaluated =  94 % Time Left = 0.053523 s of 0.892204 s Par no = 79246 Density = 4.605766e-02 
Evaluated =  95 % Time Left = 0.044693 s of 0.894046 s Par no = 93038 Density = 2.164083e-02 
Evaluated =  96 % Time Left = 0.035773 s of 0.894542 s Par no = 65384 Density = 2.308048e-02 
Evaluated =  97 % Time Left = 0.026803 s of 0.893742 s Par no = 32352 Density = 1.225704e-03 
Evaluated =  98 % Time Left = 0.017887 s of 0.894815 s Par no = 16971 Density = 3.436726e-02 
Evaluated =  99 % Time Left = 0.008950 s of 0.895930 s Par no = 22517 Density = 2.430708e-02 
Evaluated = 100 % Time Left = -0.000009 s of 0.897636 s Par no = 42877 Density = 2.940734e-06 

Total Smoothing Time = 0.897649 s
1 3

writing snapshot file ....
to_enbid_d3n64.est
done with snapshot.

Total Time = 1.30174 s 

Executing JOB 1/1 = /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/.cache/galaxia_ananke/bin/galaxia -r --hdim=6 --nfile=sim --ngen=0 /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey_params
JOB 1/1 | CODEDATAPATH=/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/.cache/galaxia_ananke/GalaxiaData/
JOB 1/1 | Reading Parameter file-             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey_params
JOB 1/1 | --------------------------------------------------------
JOB 1/1 | outputFile               survey                  
JOB 1/1 | outputDir                /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter
JOB 1/1 | photoCateg               padova                  
JOB 1/1 | photoSys                 GAIA__DR2               
JOB 1/1 | magcolorNames            G,Gbp-Grp               
JOB 1/1 | appMagLimits[0]          -1000                   
JOB 1/1 | appMagLimits[1]          30                      
JOB 1/1 | absMagLimits[0]          -1000                   
JOB 1/1 | absMagLimits[1]          1000                    
JOB 1/1 | colorLimits[0]           -1000                   
JOB 1/1 | colorLimits[1]           1000                    
JOB 1/1 | geometryOption           0                       
JOB 1/1 | surveyArea               207.455                 
JOB 1/1 | fSample                  0.01                    
JOB 1/1 | popID                    10                      
JOB 1/1 | warpFlareOn              0                       
JOB 1/1 | longitude                76.273                  
JOB 1/1 | latitude                 13.4725                 
JOB 1/1 | starType                 0                       
JOB 1/1 | photoError               0                       
JOB 1/1 | seed                     17052                   
JOB 1/1 | r_max                    400                     
JOB 1/1 | r_min                    0                       
JOB 1/1 | nres                     64                      
JOB 1/1 | nstart                   0                       
JOB 1/1 | rSun[0]                  194.95682580382552      
JOB 1/1 | rSun[1]                  -34.20370085093144      
JOB 1/1 | rSun[2]                  28.669546919977957      
JOB 1/1 | vSun[0]                  12.9                    
JOB 1/1 | vSun[1]                  245.6                   
JOB 1/1 | vSun[2]                  7.78                    
JOB 1/1 | --------------------------------------------------------
JOB 1/1 | Reading Halo Sat File=/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/.cache/galaxia_ananke/GalaxiaData/nbody1/filenames/sim.txt
JOB 1/1 | nbody1/sim/
JOB 1/1 | 
JOB 1/1 | 	1	1
JOB 1/1 | 
JOB 1/1 | path nbody1/sim/ sats 1 x[0] 1
JOB 1/1 | Halo 1 Sat 0 fname nbody1/sim/sim.ebf 0
JOB 1/1 | nbody1/sim/sim.ebf 0
JOB 1/1 | No of Satellites   =1
JOB 1/1 | Generating catalog. Max allowed stars is 18446744073709551615
JOB 1/1 | Source numbering will start at 0
JOB 1/1 | Writing to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.ebf
JOB 1/1 | Using geometry:                     All Sky
JOB 1/1 | setting center to 194.957 -34.2037 28.6695 12.9 245.6 7.78
JOB 1/1 | Reading Isochrones from dir-        /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/.cache/galaxia_ananke/GalaxiaData/Isochrones/padova/GAIA__DR2
JOB 1/1 | Isochrone Grid Size:                (Age bins=71,Feh bins=34,Alpha bins=1)
JOB 1/1 | Time Isochrone Reading              2.34162     
JOB 1/1 | ------------------------------
JOB 1/1 | nbody1/sim/sim.ebf  Sat No=0
JOB 1/1 | Particles=100000
JOB 1/1 | Satellite Info
JOB 1/1 | Particles=100000 Mass=5.49989e+08 0.379706
JOB 1/1 | Total Stars=2213240 accepted=1611712 rejected=601528
JOB 1/1 | -----------Done---------------
JOB 1/1 | Total stars written                 1611712                 
JOB 1/1 | 31
JOB 1/1 | File written-                       /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.ebf
JOB 1/1 | Calculating magnitudes in GAIA__DR2 system................
JOB 1/1 | initializing isochrone data
JOB 1/1 | interpolating on isochrone tables
JOB 1/1 | Total Time=                         5.61306     
Exported the following quantities from /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.ebf to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5 for partition 0

['age', 'alpha', 'calcium', 'carbon', 'dform', 'dmod', 'feh', 'gaia__dr2_g', 'gaia__dr2_gbp', 'gaia__dr2_grp', 'grav', 'helium', 'lum', 'mact', 'magnesium', 'mtip', 'neon', 'nitrogen', 'oxygen', 'parentid', 'partid', 'partitionid', 'px', 'py', 'pz', 'rad', 'satid', 'silicon', 'smass', 'sulphur', 'teff', 'vx', 'vy', 'vz']

Running convert_cartesian_to_galactic post-processing pipeline
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['mub', 'vr', 'glon', 'glat', 'mul']

Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['rad']

Running convert_galactic_to_icrs post-processing pipeline
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['ra', 'mudec', 'mura', 'dec']

Running last_conversions post-processing pipeline
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['pi']

Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['lum', 'teff']

[04/15/26 03:06:34] WARNING  could not close memmap for column                                   dataset_mmap.py:94
                             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkout                   
                             s/main/docs/source/temp/jupyter/survey.sim.0.h5                                       
Running observed_magnitudes post-processing pipeline
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['gaia__dr2_g_Intrinsic', 'gaia__dr2_grp_Intrinsic', 'gaia__dr2_gbp_Intrinsic']

Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['gaia__dr2_g', 'gaia__dr2_gbp', 'gaia__dr2_grp']

[04/15/26 03:06:35] WARNING  could not close memmap for column                                   dataset_mmap.py:94
                             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkout                   
                             s/main/docs/source/temp/jupyter/survey.sim.0.h5                                       
Running extinctions post-processing pipeline
Preparing interpolator
Now parallelizing extinctions pipeline
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['A_gaia__dr2_gbp', 'A_gaia__dr2_g', 'A_gaia__dr2_grp', 'log10_NH', 'E(B-V)', 'A_0']

Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['gaia__dr2_g', 'gaia__dr2_gbp', 'gaia__dr2_grp']

[04/15/26 03:06:43] WARNING  could not close memmap for column                                   dataset_mmap.py:94
                             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkout                   
                             s/main/docs/source/temp/jupyter/survey.sim.0.h5                                       
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/_default_error_model.py:51: RuntimeWarning: overflow encountered in power
  grvs = rpmag + 132.32 - 377.28*ggrp + 402.32*ggrp**2 - 190.97*ggrp**3 + 34.026*ggrp**4
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/_default_error_model.py:51: RuntimeWarning: overflow encountered in multiply
  grvs = rpmag + 132.32 - 377.28*ggrp + 402.32*ggrp**2 - 190.97*ggrp**3 + 34.026*ggrp**4
Running error_modeling post-processing pipeline
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/utils.py:45: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
  self._record_of_all_used_keys = set()
/home/docs/checkouts/readthedocs.org/user_builds/py-ananke/envs/main/lib/python3.9/site-packages/ananke/ErrorModelDriver.py:137: FutureWarning: The behavior of Series.argmax/argmin with skipna=False and NAs, or with all-NAs is deprecated. In a future version this will raise ValueError.
  i_max_err = np.abs(df[prop_err_name] if isinstance(df, pd.DataFrame) else df[prop_err_name].to_pandas_series()).argmax()
Exported the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['pi_Sig', 'gaia__dr2_gbp_Sig', 'vr_Clean', 'gaia__dr2_grp_Sig', 'gaia__dr2_grp_Err', 'dec_Sig', 'ra_Sig', 'dec_Clean', 'mura_Sig', 'vr_Err', 'vr_Sig', 'ra_Clean', 'dec_Err', 'gaia__dr2_g_Err', 'mudec_Sig', 'pi_Clean', 'mudec_Err', 'gaia__dr2_gbp_Err', 'mudec_Clean', 'gaia__dr2_g_Sig', 'mura_Err', 'ra_Err', 'pi_Err', 'mura_Clean']

Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['dec', 'mura', 'vr', 'mudec', 'gaia__dr2_gbp', 'gaia__dr2_g', 'pi', 'ra', 'gaia__dr2_grp']

[04/15/26 03:06:45] WARNING  could not close memmap for column                                   dataset_mmap.py:94
                             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkout                   
                             s/main/docs/source/temp/jupyter/survey.sim.0.h5                                       
Running convert_icrs_to_galactic post-processing pipeline
Overwritten the following quantities to /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkouts/main/docs/source/temp/jupyter/survey.sim.0.h5

['glat', 'glon', 'mul', 'mub']

[04/15/26 03:06:46] WARNING  could not close memmap for column                                   dataset_mmap.py:94
                             /home/docs/checkouts/readthedocs.org/user_builds/py-ananke/checkout                   
                             s/main/docs/source/temp/jupyter/survey.sim.0.h5                                       

The output is saved as a vaex dataframe, with its columns organized in alphabetical order. The photometry is stored in columns that are named according to their associated photometric system and filter name. The keys are in the lowercase format photosys_filtername where photo_sys is the photometric system and filtername is the filter name. In this example, the apparent photometry in filters gbp, grp & g of the Gaia DR2 system (identified as GAIA__DR2 in Galaxia) are respectively under keys gaia__dr2_gbp, gaia__dr2_grp & gaia__dr2_g. Beside these, the columns include:

  • key A_0 for the reference extinction which extinction coefficients are based on (at \(\lambda = 550 \, nm\) in the case of Gaia DR2)

  • key A_{filter_name} for the extinction value in each filter designated by filter_name (here A_gaia__dr2_g, A_gaia__dr2_gbp & A_gaia__dr2_grp)

  • key E(B-V) for the reddening index

  • key age for the \(log_{10}\) stellar age in years

  • key alpha, calcium, carbon, helium, magnesium, neon, nitrogen, oxygen, silicon, sulphur for the various chemical abundances as given as input

  • key dec, ra for the astrometric declination and right ascension celestial coordinates in degrees

  • key dform for the formation distance as given as input

  • key dmod for the distance modulus

  • key feh for the stellar metallicity [Fe/H] in dex relative to solar

  • key {filter_name}_Intrinsic for the intrinsic stellar photometry in each filter designated by filter_name (here gaia__dr2_g_Intrinsic, gaia__dr2_gbp_Intrinsic & gaia__dr2_grp_Intrinsic)

  • key glat, glon for the astrometric galactic latitude and longitude celestrial coordinates in degrees

  • key grav for the \(log_{10}\) surface gravity in CGS units

  • key log10_NH for the \(log_{10}\) hydrogen column density between Observer position and star in \(cm^{-2}\)

  • key lum for the stellar luminosity in solar luminosities

  • key mact, mtip, smass for respectively the current stellar mass, the mass of that same star at tip of giant branch for its given age & metallicity and its stellar mass on zero-age main sequence, all in solar masses

  • key mub, mudec, mul, mura for the astrometric proper motions, respectively in the direction of the galactic latitude, declination, galactic longitude and right ascension, all in milliarcseconds per year

  • key parentid for the parent particle index as given as input

  • key partid for the flag that identifies stars that are not central relatively to their parent particle

  • key pi for the star parallax in milliarcseconds

  • key px, py, pz for the star position cartesian coordinates in \(kpc\) relative to the Observer’s position

  • key rad for the star distance to the Observer in \(kpc\)

  • key satid for the index id the population the parent particle is part of

  • key teff for the star effective temperature in Kelvin

  • key vr for the star astrometric radial velocity in \(km.s^{-1}\)

  • key vx, vy, vz for the star velocity cartesian coordinates in \(km.s^{-1}\) relative to the Observer’s velocity

Additionally, astrometric and photometric quantities X all have associated columns identified as:

  • key {X}_Sig for the standard error on the quantity X

  • key {X}_Err for the actual drawn gaussian error on the quantity X

Taking the photometry as an example of the latter, the standard errors are stored under gaia__dr2_g_Sig, gaia__dr2_gbp_Sig & gaia__dr2_grp_Sig, while the drawn errors are under gaia__dr2_g_Err, gaia__dr2_gbp_Err & gaia__dr2_grp_Err.

survey
# A_0 A_gaia__dr2_g A_gaia__dr2_gbp A_gaia__dr2_grp E(B-V) age alpha calcium carbon dec dec_Clean dec_Err dec_Sig dform dmod feh gaia__dr2_g gaia__dr2_g_Err gaia__dr2_g_Intrinsic gaia__dr2_g_Sig gaia__dr2_gbp gaia__dr2_gbp_Err gaia__dr2_gbp_Intrinsic gaia__dr2_gbp_Sig gaia__dr2_grp gaia__dr2_grp_Err gaia__dr2_grp_Intrinsic gaia__dr2_grp_Sig glat glon grav helium log10_NH lum mact magnesium mtip mub mudec mudec_Clean mudec_Err mudec_Sig mul mura mura_Clean mura_Err mura_Sig neon nitrogen oxygen parentid partid partitionid pi pi_Clean pi_Err pi_Sig px py pz ra ra_Clean ra_Err ra_Sig rad satid silicon smass sulphur teff vr vr_Clean vr_Err vr_Sig vx vy vz
0 0.709397791159409 0.52206985445396150.70919313390714510.4055614050521911 0.2288379971481964410.0163259506225590.3380742371082306-1.1830222606658936-0.39430123567581177nan 43.89190561692207 nan nan 0.0 20.87123488088669 -0.8867433071136475nan nan 7.8221183 nan nan nan 8.470699 nan nan nan 7.0639534 nan nan nan 4.769691 -0.7315406799316406 5.72094992870491e+21 0.0710139650.50516033-0.5486690402030945 0.886202 nan nan -0.2413280326361944 nan nan nan nan 0.29630942610455613nan nan -0.7326117157936096-0.652482807636261-0.66972786188125610 0 0 nan 0.006695037652823929nan nan -142.0352559796067746.20841677042607 0.692591828190988 nan 73.8027984762779 nan nan 149.364357880527480 -0.75635123252868650.5054699889829319 -1.09243309497833254285.4614-156.7385192430598 -156.7385192430598 nan nan 67.38685760498046 -300.3354850769043 55.13861343383789
1 0.75668220632303720.55145941111718480.75344249911562390.431195670717931630.2440910342977539210.0163259506225590.3380742371082306-1.1830222606658936-0.39430123567581177nan 43.735186299167324nan nan 0.0 20.87527071994942 -0.8867433071136475nan nan 7.993824 nan nan nan 8.668457 nan nan nan 7.2174444 nan nan nan 4.7857795-0.7315406799316406 6.102275857443847e+21 0.06093182 0.48871416-0.5486690402030945 0.886202 nan nan -0.2400807670326527 nan nan nan nan 0.2913066369253816 nan nan -0.7326117157936096-0.652482807636261-0.66972786188125610 1 0 nan 0.006682605995616206nan nan -142.2608617629229 46.417971376138425-0.11534282804241303nan 73.42607530130886nan nan 149.642220513374670 -0.75635123252868650.48905900859965035-1.09243309497833254198.5107-156.97767104891037-156.97767104891037nan nan 67.7484200428451 -298.2995731452656452.69162146715175
2 136.646478240550922904.232391673386 1370.444979191366478.0267597826084 44.07950910985514 10.0163259506225590.3380742371082306-1.1830222606658936-0.39430123567581177nan 44.364568278584706nan nan 0.0 20.888157433594138-0.8867433071136475nan nan 8.71385 nan nan nan 9.517461 nan nan nan 7.8597684 nan nan nan 4.8554068-0.7315406799316406 1.1019877277463783e+240.03486588 0.42435014-0.5486690402030945 0.886202 nan nan -0.2386371745348873 nan nan nan nan 0.2958006234265731 nan nan -0.7326117157936096-0.652482807636261-0.66972786188125610 1 0 nan 0.006643065174432655nan nan -142.9270461828407 47.20842184009032 1.8396875936103703 nan 74.0498933920498 nan nan 150.5329202321734 0 -0.75635123252868650.4250665825385847 -1.09243309497833253935.5205-158.4535061010785 -158.4535061010785 nan nan 68.03093236871236 -301.4758806839234 56.09200627357448
3 0.71509160840002480.59382870248778010.75988277212997570.422318035751309160.2306747123871047710.0163259506225590.3380742371082306-1.1830222606658936-0.39430123567581177nan 43.896210339393534nan nan 0.0 20.86868071849355 -0.8867433071136475nan nan 5.1929526 nan nan nan 5.4745564 nan nan nan 4.7391353 nan nan nan 4.5336547-0.7315406799316406 5.766867809677618e+21 0.64096755 0.74067265-0.5486690402030945 0.886202 nan nan -0.24429902665121836nan nan nan nan 0.29405926894230183nan nan -0.7326117157936096-0.652482807636261-0.66972786188125610 1 0 nan 0.006702917225320306nan nan -141.8805554620097746.1152954631301 0.7600375956495637 nan 73.8447277872187 nan nan 149.188773542136940 -0.75635123252868650.7407077517512485 -1.09243309497833255891.964 -156.7353025299949 -156.7353025299949 nan nan 67.38594209547328 -300.6020691055117 52.577100775679746
4 1.18695442936753710.81358271517667041.15634729390904580.6614930768091819 0.3828885256024313 10.0163259506225590.3380742371082306-1.1830222606658936-0.39430123567581177nan 43.93297434426074 nan nan 0.0 20.879530213898438-0.8867433071136475nan nan 8.90345 nan nan nan 9.740426 nan nan nan 8.03157 nan nan nan 4.877773 -0.7315406799316406 9.572213140060782e+21 0.0298318920.4045688 -0.5486690402030945 0.886202 nan nan -0.24092819622063052nan nan nan nan 0.29637706857623414nan nan -0.7326117157936096-0.652482807636261-0.66972786188125610 1 0 nan 0.006669510447933344nan nan -142.5205780120727 46.5650255517057160.6324477943182366 nan 73.713875054752 nan nan 149.936042203797170 -0.75635123252868650.4050935914883408 -1.09243309497833253882.1643-156.2199566593424 -156.2199566593424 nan nan 66.21987999393174 -301.0910757394999655.35190950080388
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1,611,7079.849335135566944 5.90503445098853 8.99882368409236 5.115782383513529 3.17720488244095 9.99021053314209 0.7036365270614624-0.89319157600402830.053123194724321365nan 52.47591875749927 nan nan 0.0 21.61297084448185 -0.8060703873634338nan nan 6.9566293 nan nan nan 7.4624496 nan nan nan 6.302246 nan nan nan 4.7021213-0.051267735660076147.943012206102374e+22 0.1396583 0.5802463 -0.102433867752552030.8955961nan nan -0.1151919563604325 nan nan nan nan 0.08138204404640034nan nan -0.56209683418273930.0669776126742363-1.214622616767883399999 1 0 nan 0.004757796156067555nan nan -186.3597503860402896.74107735172117 9.349095600452486 nan 67.0515975296681 nan nan 210.181345984046230 -1.247308373451233 0.5813063179170757 -0.99559468030929574714.4536-90.2409497740284 -90.2409497740284 nan nan 15.159623414379855-164.46277627244382-24.763303315808546
1,611,70813.3052868969287657.972572810389155 12.1990440944498646.734497001850922 4.292028031267344 9.99021053314209 0.7036365270614624-0.89319157600402830.053123194724321365nan 52.10502299677406 nan nan 0.0 21.608894668241703-0.8060703873634338nan nan 5.3323083 nan nan nan 5.6339135 nan nan nan 4.8603163 nan nan nan 4.551513 -0.051267735660076141.0730070078168358e+230.5618677 0.73399246-0.102433867752552030.8955961nan nan -0.11464220238473408nan nan nan nan 0.08162295523810108nan nan -0.56209683418273930.0669776126742363-1.214622616767883399999 1 0 nan 0.004766735633863891nan nan -186.0710412860122796.61308355256259 7.357869720071437 nan 66.41106254567475nan nan 209.787174454523950 -1.247308373451233 0.7344738879028191 -0.99559468030929575773.816 -90.25301122452501 -90.25301122452501 nan nan 15.649286825866614-163.9671077947139 -24.555644142144015
1,611,70918.18659863039707511.42519172980502916.50377702486021 8.639310462536832 5.866644719482927 9.99021053314209 0.7036365270614624-0.89319157600402830.053123194724321365nan 52.28163950097439 nan nan 0.0 21.614814425414835-0.8060703873634338nan nan 6.256601 nan nan nan 6.6638975 nan nan nan 5.6850376 nan nan nan 4.654846 -0.051267735660076141.4666611798707317e+230.2484262 0.6444424 -0.102433867752552030.8955961nan nan -0.1154129178537172 nan nan nan nan 0.08405587899877405nan nan -0.56209683418273930.0669776126742363-1.214622616767883399999 1 0 nan 0.0047537584994812 nan nan -186.4011878505479897.17315223354157 7.952910951827342 nan 66.48740383323538nan nan 210.3598658007416 0 -1.247308373451233 0.6446346203563409 -0.99559468030929575160.5283-89.2744102255874 -89.2744102255874 nan nan 13.274847794294757-165.87604067238016-23.46408831673764
1,611,71017.80165910608414 10.99406360503620316.2662064130328558.558298042503163 5.742470679381981 9.99021053314209 0.7036365270614624-0.89319157600402830.053123194724321365nan 52.6030894919513 nan nan 0.0 21.625589300459197-0.8060703873634338nan nan 5.077172 nan nan nan 5.3556504 nan nan nan 4.6276927 nan nan nan 4.507982 -0.051267735660076141.435617669845495e+23 0.71100533 0.7585091 -0.102433867752552030.8955961nan nan -0.11182195701593675nan nan nan nan 0.08124741721522438nan nan -0.56209683418273930.0669776126742363-1.214622616767883399999 1 0 nan 0.004730228712270713nan nan -186.3828534065042499.48057937118065 7.593190154300346 nan 65.72063877969379nan nan 211.406268243625140 -1.247308373451233 0.7591386913124265 -0.99559468030929575922.259 -91.18185681851935 -91.18185681851935 nan nan 15.256838439138757-163.3252054589539 -24.379336029180863
1,611,7118.816373078046519 5.566795304062381 8.328230058759425 4.706684597638086 2.843991315498877 9.99021053314209 0.7036365270614624-0.89319157600402830.053123194724321365nan 52.47916141482985 nan nan 0.0 21.613667682089748-0.8060703873634338nan nan 5.4040017 nan nan nan 5.7124815 nan nan nan 4.925138 nan nan nan 4.5628715-0.051267735660076147.109978288747192e+22 0.52572614 0.7271273 -0.102433867752552030.8955961nan nan -0.11483079993084422nan nan nan nan 0.08279535335029264nan nan -0.56209683418273930.0669776126742363-1.214622616767883399999 1 0 nan 0.004756269597697463nan nan -186.461344941416 96.6796112442321 9.475214471500287 nan 67.12279484473645nan nan 210.248805173723870 -1.247308373451233 0.7273869656881858 -0.99559468030929575729.2954-88.7516720457417 -88.7516720457417 nan nan 13.603362480412988-164.48282279687962-23.355289452640978

Please refer to vaex’s documentation for further help on how to use vaex dataframes: the following line for example isolate only the rows with non-NaN photometry.

survey[~survey.gaia__dr2_g.isna()]
# A_0 A_gaia__dr2_g A_gaia__dr2_gbp A_gaia__dr2_grp E(B-V) age alpha calcium carbon dec dec_Clean dec_Err dec_Sig dform dmod feh gaia__dr2_g gaia__dr2_g_Err gaia__dr2_g_Intrinsic gaia__dr2_g_Sig gaia__dr2_gbp gaia__dr2_gbp_Err gaia__dr2_gbp_Intrinsic gaia__dr2_gbp_Sig gaia__dr2_grp gaia__dr2_grp_Err gaia__dr2_grp_Intrinsic gaia__dr2_grp_Sig glat glon grav helium log10_NH lum mact magnesium mtip mub mudec mudec_Clean mudec_Err mudec_Sig mul mura mura_Clean mura_Err mura_Sig neon nitrogen oxygen parentid partid partitionid pi pi_Clean pi_Err pi_Sig px py pz ra ra_Clean ra_Err ra_Sig rad satid silicon smass sulphur teff vr vr_Clean vr_Err vr_Sig vx vy vz
0 0.358846324020237360.2624818507694532 0.358017907591372030.204661728531405130.11575687871620559 9.6928701400756840.3099161982536316 -1.1548902988433838-0.4665657579898834 18.86801579630566318.8680157785651871.7740477296505672e-08 1.691274e-07 0.0 21.118883008502078-0.4829272329807281519.868202 0.012658170630218355 -1.5258217 0.009227399 20.504751 -0.16132866071418359 -0.8108196 0.17850117 18.7721 -0.22652792657603063 -2.3249161 0.17850117 -14.991976836287705-177.956902949767941.2548169 -0.278090775012969972.8939219679051393e+21448.282441.1287807 -0.173011064529418951.1379396 -0.15521054578348675-1.3589967238651148 -0.3270482743773746 -1.0319484494877402 1.0656426 1.570216570810097 0.8017470282407725 0.163268426759695440.638478601481077 1.0656426 -0.7034189105033875 -0.09953558444976807-0.4723181426525116 49 1 0 -0.6145466549364363 0.0059734247671244375-0.6205200797035608 0.60885864-161.6071229139394 -5.765154922998849-43.30577433967765 74.02626514013622 74.02626502725049 1.1288572264651892e-07 1.691274e-07 167.408151769758150 -0.60188096761703491.1408413190663447-0.7073405385017395 4129.926 69.84271348583249 69.84271348583249 nan nan -44.649975087957735-287.75369665394226-65.06155285732873
1 0.5999316419840474 0.3951491437418692 0.5843014320686067 0.327567946448566570.19352633612388626 9.9881792068481450.117806412279605870.09089594334363937-0.2674128711223602328.32392700064622 28.323927151103444-1.5045722692676327e-077.903525e-08 0.0 21.313550824736375-0.6772944927215576 19.078148 0.007681412416285324 -2.6382327 0.005971381 20.259933 -0.07032803519170927 -1.5675896 0.09647448 17.950785 -0.07180883013983862 -3.6185248 0.09647448 -18.53644276160895 165.70363972881054 0.3074857 -0.213550269603729254.838158403097156e+21 1852.92180.85137147-0.55948805809021 0.912569340.3131789409812662 -0.10381565378748778-0.149861869114885 0.04604621532739723 0.55013824 0.4828607626532535 0.5660899886174509 0.1728590301091314 0.393230958508319460.55013824-0.3997773826122284 -0.7002913355827332 -0.08155464380979538144 1 0 -0.152748911588277470.005461222050076331 -0.1582101336383538 0.2845269 -168.233346583228 42.8707615557611 -58.21183715231835 59.86462922169792559.86462915929865 6.239927571995072e-08 7.903525e-08 183.109199887967040 -0.31031048297882080.914106032084624 -0.380739361047744753662.81 -25.762507382985724-25.762507382985724nan nan -27.923177997805908-197.6293933960381316.189820511232778
2 0.176081952679943030.1377033942738126 0.1808537019520944 0.102556633208450360.0568006298967558149.579007148742676-0.6709350943565369-0.9936923980712891-0.9404328465461731 33.04906634892175 33.0490663487199262.0182171922849153e-10 3.6569543e-070.0 21.38615087842112 -0.9346992373466492 20.56803 -0.03600744374280186 -0.9198183 0.014033196 21.098215 -0.07126815067421044 -0.3975206 0.32202673 19.32279 -0.5803682522135298 -1.585548 0.32202673 -8.484585766867522 168.82659578503788 1.813334 -0.152460306882858281.4200157474188952e+21204.612841.146 -1.605634331703186 1.1506394 -0.3324971332482147 -1.1621686215766727 -0.12728573316172526-1.0348828884149475 2.0831733 1.2421141410353265 0.5502417450546461 0.134199265859046320.4160424791955997 2.0831733 -0.9467113018035889 -0.7777135372161865 -0.36034896969795227355 1 0 -2.8237769876652146 0.005281652504745024 -2.8290586401699596 1.3165035 -183.7130045148962336.287543243958545-27.93507061765806770.77774203758443 70.77774167688843 3.6069600030252607e-07 3.6569543e-07189.334682488407250 -0.71507573127746581.1526367829812323-0.128577053546905524663.502 -75.65222985360518 -75.65222985360518 nan nan 38.83221747966123 -175.9006125758071 28.874331454692708
3 0.178611749883683750.1289203334992838 0.177478230315429720.101347475205828610.05761669351086572 9.481425285339355-1.1020725965499878-1.0413920879364014-0.5413622856140137 28.23936555420345228.2393653806581181.735453331636329e-07 2.606068e-07 0.0 21.781771243448272-0.2500181496143341 20.272312 -0.006433955642751986 -1.6319455 0.0116908895 21.282545 0.17120013764702185 -0.8479041 0.24911553 19.201895 -0.20884711491488975 -2.4723763 0.24911553 -4.592810387657224 177.86633782029148 1.2065276 -0.8023523092269897 1.4404173377716428e+21537.386 1.3710679 -1.3520907163619995 1.369177 0.887907765579917 0.7300725836482986 -0.217375011185357960.9474475948336566 1.551452 -0.279021704775568 0.5772584642238549 0.150781561917897570.426476902305957251.551452 -0.6431713700294495 -0.4919672906398773 -0.6521893739700317 359 1 0 0.4967736437882954 0.004401956548212814 0.4923716872400826 0.93818444-226.2852534985749 8.430630112877303 -18.19051182758227480.6929868604775 80.69298721775455 -3.572770414100613e-07 2.606068e-07 227.171710817090660 -0.75073283910751341.3773316962276039-0.6594099998474121 4003.227827.33035105089606 27.33035105089606 nan nan -38.03903369359221 -283.6631352491681 0.4139964206713862
4 0.9458204736945293 0.6678443096074762 0.9305774830300428 0.5330434047236324 0.30510337861113845 9.6038694381713870.19408565759658813-0.6169882416725159-0.7964903116226196 32.35306966051205532.35306979227988 -1.3176782507459781e-071.0227677e-070.0 21.17193983212506 -0.869421124458313 19.34399 -0.0006781485567268116-2.495115 0.0069470913 20.299686 -0.07008269042370177 -1.7327482 0.11953725 18.383387 -3.715706189872538e-05-3.3215604 0.11953725 -6.795830400723485 171.12720912421037 0.82894164-1.036791443824768 7.627584465278461e+21 1142.33591.1365215 -0.6753354668617249 1.1560693 -0.14185023766522223-0.09612761524104924-0.3959260269578005 0.29979841171675126 0.6884891 0.010582078436602273 -0.104847278924096370.23107472902875995-0.33592200795285630.6884891 -0.7131249904632568 -1.3325629234313965 -0.8150839805603027 490 1 0 0.3358544398487548 0.00582924130497861240.33002519854377615 0.36819637-168.3051656639284226.27400588210036 -20.29967534295857 74.04671686055354 74.04671679787202 6.268152637233299e-08 1.0227677e-07171.548911373067450 -0.327743262052536 1.159396049264403 -0.090744525194168094076.2021-19.64436147888908 -19.64436147888908 nan nan -31.620475053741032-368.72625625434716-49.06766686013123
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
6740.151018003458935430.118293240257224120.155223255710962820.088000214666360220.04871548498675336 9.5345153808593751.2677661180496216 -0.4057428538799286-0.59430992603302 21.34353415994132 21.343534771358275-6.11416954624569e-07 3.1462778e-070.0 21.592642702411716-1.1074150800704956 20.454937 -0.005222778643958658 -1.2507769 0.012943381 21.053337 0.03625308061370761 -0.73078275 0.2874478 19.719486 -0.045624436526205674 -1.9155316 0.2874478 -17.503740519827858176.74776898058968 1.6993186 -0.453119516372680661.2178871246688339e+21276.454651.174 0.16035111248493195 1.1788915 -0.20376656041788466-0.11886161920922567-0.246695959583550950.12783434037432528 1.8276072 -0.014066707641402144-0.166104180824460820.13304276676793136-0.29914694759239221.8276072 -0.48284637928009033-0.3429383337497711 -0.361402690410614 99192 1 0 1.1484148018479465 0.004802545183696617 1.14361225666425 1.13266 -198.2618205019604711.265869808201476-62.62680511726111468.59347486776853 68.59347435969207 5.080764713807229e-07 3.1462778e-07208.2229238352068 0 -1.429317593574524 1.1812293030115915-0.138396084308624274680.429 35.33961960826008 35.33961960826008 nan nan -32.91202385958913 -269.96195551855874-61.869312861074555
6750.9635104765596736 0.7031919691501277 0.959837437511121 0.5493862070334281 0.3108098311482818 9.3014926910400390.18354283273220062-0.7873296141624451-0.5832746028900146 36.29390846857704 36.29390899617847 -5.276014372685639e-07 5.21441e-07 0.0 21.986108149698197-0.6020106673240662 20.938156 -0.00258938495380322 -1.7485539 0.01696236 21.846714 0.0033400161006579407-1.1025709 0.42019537 20.104744 0.07144425513196052 -2.5021954 0.42019537 -18.737551560069807151.75488224208468 1.3968682 -0.5497167110443115 7.770245778707044e+21 504.3772 1.508 -0.418467819690704351.501947 3.2997473932178725 -0.28967745228217223-0.11117319854321675-0.178504253738955452.8375878 5.7913271564401985 6.6591208177663495 0.076938645695560536.582182172070789 2.8375878 -0.7871666550636292 -0.6889442801475525 -0.6478202939033508 99272 1 0 -0.6687868125300893 0.0040066219879398525-0.6727934345180292 1.8771876 -208.21571827861288111.85547750288215-80.17569728370337 47.36247265711299 47.362473042029784-3.849167924330201e-07 5.21441e-07 249.5868097889079 0 -0.32534617185592651.510235532950821 -0.967689037322998 4293.1353-70.868963522902 -70.868963522902 nan nan 7.312308989325453 -170.89071803084343-36.78972701008118
6760.3750031211886208 0.2833811377618397 0.379160497947096830.216191012780430960.12096874877052283 10.16224193572998-0.5301219820976257-0.6149452328681946-0.9359602928161621 20.23864675894622 20.2386460732914666.856547555591803e-07 4.3608154e-070.0 21.28507619772096 -0.466217964887619 20.76201 -0.009498002225838745 -0.7969467 0.015419783 20.97355 -0.4993928131066979 -0.19129108 0.3675803 19.7897 -0.1881952233286074 -1.5233725 0.3675803 -25.702886990754198170.24573776609319 1.5625119 -0.6190789937973022 3.0242187192630704e+21199.889330.792 -0.9963399171829224 0.877864060.42368958053650174 0.9520933879339334 -0.206467772701863031.1585611606357964 2.4282553 -0.9299044207050995 -0.3711512804161766 0.11890487188601179-0.49005615230218842.4282553 -0.6988312005996704 -0.2878437340259552 -0.5345746278762817 99878 0 0 -1.7825581982250396 0.005533306923089111 -1.7880915051481288 1.5698935 -160.4879384747239627.589162658182417-78.38070567241937 57.76421066762154 57.76421003056191 6.370596314964964e-07 4.3608154e-07180.723754149123580 -1.31891858577728270.8813156093858641-0.7903018593788147 4401.7944-4.640823433510388 -4.640823433510388 nan nan -5.309618854522705 -198.32230911254882-48.23520782470703
6773.257310648137866 2.2137026339358323 3.148744967640902 1.8124928839213126 1.0507453703670535 9.7130212783813481.1312025785446167 -0.9191203713417053-0.0349808745086193132.19865945514826 32.198659769203914-3.1405565121668e-07 5.04319e-07 0.0 21.54974334945573 -1.7587264776229858 20.905123 -0.004074007588229828 -2.8542504 0.016663374 22.090984 -0.36655122087409825 -2.2409532 0.4098431 19.830896 0.05489917004070952 -3.5862386 0.4098431 -8.14277480376726 170.2343085995188 0.909421 -0.8930411338806152 2.6268634259176332e+221282.175 1.0054736 -0.6275238394737244 1.034234 3.7693525484091794 3.7578791566953673 -0.219005914643733233.9768850713391006 2.7561986 -1.767775307312533 1.7920358297247334 0.177648139364831341.6143876903599021 2.7561986 -0.22640863060951233-0.433468759059906 -0.0626202598214149599897 1 0 0.512121779005605 0.004898367107000539 0.5072234118986044 1.8155484 -199.1630888478725 34.27863511741595 -28.91581930639344 72.14905734016035 72.14905771278723 -3.7262687352547246e-075.04319e-07 204.149664195409570 -0.43520781397819521.035315803776429 0.16094648838043213 4533.1216-51.247183737712234-51.247183737712234nan nan 3.9261128581479183 -277.590976406493275.696494128336444
6780.2641105417770983 0.245390353058515670.2973659058618344 0.159682139985031140.08519694896035429 8.8293781280517580.945320188999176 -1.3487151861190796-0.3256357312202453635.85495989711827 35.85496029042711 -3.933088386264988e-07 2.846336e-07 0.0 21.455110431946277-1.5585298538208008 20.364681 0.0008218263761016395 -1.3366417 0.012262382 20.276108 -0.21644250444128993 -1.2599249 0.26641363 20.328588 0.18773063435298895 -1.4739338 0.26641363 -13.655983988490423159.632952406194 2.855254 -0.069797731935977942.129923724008857e+21 256.322662.0916967 -0.6132096648216248 2.002991 0.5167124356330225 0.27332072910096816 -0.226788478189218740.5001092072901869 1.6750921 0.1776173490693369 0.47311250551210815 0.226260593005451870.246851912506656281.6750921 -0.40418189764022827-0.7111912369728088 -0.6041487455368042 99991 1 0 -0.284595303589919860.005116558142176689 -0.289711861732096571.0246809 -178.0455509686295866.09801073444817 -46.14267931512884558.62774848228098558.627748704057566-2.2177657977211457e-072.846336e-07 195.4438847780941 0 -0.51304239034652712.091994004496485 -0.105139151215553287735.15 -73.44707433898377 -73.44707433898377 nan nan -31.489219320865587-304.1184333153507 -3.04114398973808