معرفی شرکت ها


CSST-feh-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Two packages that can be used to estimate the metallicity of stars from the CSST filter systems
ویژگی مقدار
سیستم عامل -
نام فایل CSST-feh-0.0.4
نام CSST-feh
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Shi Ruifeng <shiruifeng@mail.ynu.edu.cn>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/CSST-feh/
مجوز -
# CSST_feh The code is used to estimate the metallicity of stars from the CSST filter systems. It is worth noting that only FGK-type stars are valid. \ dwarf_feh is a astronomy Python package specifically designed to estimate the metallicity of the dwarf stars from the CSST filter systems.\ giant_feh is a astronomy Python package specifically designed to estimate the metallicity of the giant stars from the CSST filter systems. # How to install #from PyPI python3 -m pip install CSST_feh # Quick start The input are u, g and i magnitudes and color error. The three magnitudes can be given from photometric data. An assumption that magnitudes are independent Gaussian variables is made. We recommend that the error of the magnitude should not be larger than 0.025 mag. The color error represents the combination of the error of two magnitudes.\ If you want to estimate the metallicity of the dwarf stars, you should use dwarf_feh package. from CSST_feh import dwarf_feh dwarf_feh.dwarf_feh(u,g,i,error) The output is one file named dwarf_feh_predicted.csv, the first column stores the photometric metallicity and the secnd column stores the random error of photometric metallicity.\ For the giant stars, you should use giant_feh package. from CSST_feh import giant_feh giant_feh.giant_feh(u,g,i,error) The output is one file named giant_feh_predicted.csv, the first column stores the photometric metallicity and the secnd column stores the random error of photometric metallicity. # An example If a file (dwarf_feh.csv) is given, u, g, i magnitudes are contained in this file. Once the color error is given, you can precess the data through the command line like this. ![image](https://user-images.githubusercontent.com/124223157/219325472-eb9ad995-0fe6-4a9d-bfdc-3f287275b282.png) py import pandas as pd data=pd.read_csv('dwarf_feh.csv') u0=data.loc[:,['u']].values g0=data.loc[:,['g']].values i0=data.loc[:,['i']].values u,g,i=u0.flatten(),g0.flatten(),i0.flatten() # give the color error error=(0.01**2+0.01**2)**0.5 # estimate the metallicity of the dwarf stars from CSST_feh import dwarf_feh dwarf_feh.dwarf_feh(u,g,i,error) The output is one file named dwarf_feh_predicted.csv, the first column stores the photometric metallicity and the secnd column stores the random error of photometric metallicity. # API dwarf_feh(u,g,i,error) Args: u: array-like, shape (n, ) CSST u band g: array-like, shape (n, ) CSST g band i: array-like, shape (n, ) CSST i band error: float color error. An assumption that (u-g) and (g-i) are independent Gaussian variables is made. giant_feh(u,g,i,error) Args: u: array-like, shape (n, ) CSST u band g: array-like, shape (n, ) CSST g band i: array-like, shape (n, ) CSST i band error: float color error. An assumption that (u-g) and (g-i) are independent Gaussian variables is made.


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl CSST-feh-0.0.4:

    pip install CSST-feh-0.0.4.whl


نصب پکیج tar.gz CSST-feh-0.0.4:

    pip install CSST-feh-0.0.4.tar.gz