py-lfkit 0.1.4__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/docs.yml +1 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/MANIFEST.in +3 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/PKG-INFO +9 -2
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/README.md +8 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/lf_overview.rst +1 -1
- py_lfkit-0.2.0/docs/api/lfkit.api.conditional_luminosity_function.rst +7 -0
- py_lfkit-0.2.0/docs/api/lfkit.api.luminosity_function.rst +7 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.api.rst +2 -1
- py_lfkit-0.2.0/docs/api/lfkit.photometry.conditional_lf_integrals.rst +7 -0
- py_lfkit-0.2.0/docs/api/lfkit.photometry.conditional_lf_models.rst +7 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.rst +2 -0
- py_lfkit-0.2.0/docs/api/lfkit.utils.integrators.rst +7 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.rst +1 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/conf.py +7 -2
- py_lfkit-0.2.0/docs/examples/api_overview.rst +553 -0
- py_lfkit-0.1.4/docs/examples/catalog_completeness_examples.rst → py_lfkit-0.2.0/docs/examples/catalog_completeness.rst +18 -30
- py_lfkit-0.2.0/docs/examples/conditional_luminosity_function.rst +1191 -0
- py_lfkit-0.2.0/docs/examples/index.rst +23 -0
- py_lfkit-0.2.0/docs/examples/luminosity_function_models.rst +626 -0
- py_lfkit-0.2.0/docs/examples/magnitude_integrals.rst +385 -0
- py_lfkit-0.2.0/docs/examples/magnitudes_and_luminosities.rst +211 -0
- py_lfkit-0.2.0/docs/examples/model_registry.rst +63 -0
- py_lfkit-0.2.0/docs/examples/redshift_density.rst +246 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/index.rst +2 -2
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/pyproject.toml +2 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/__init__.py +3 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/_version.py +3 -3
- py_lfkit-0.2.0/src/lfkit/api/_clf_models.py +23 -0
- py_lfkit-0.2.0/src/lfkit/api/_completeness.py +51 -0
- py_lfkit-0.2.0/src/lfkit/api/_expose.py +45 -0
- py_lfkit-0.2.0/src/lfkit/api/_integrals.py +53 -0
- py_lfkit-0.2.0/src/lfkit/api/_lf_param_models.py +77 -0
- py_lfkit-0.2.0/src/lfkit/api/_luminosities.py +36 -0
- py_lfkit-0.2.0/src/lfkit/api/_magnitudes.py +27 -0
- py_lfkit-0.2.0/src/lfkit/api/_redshift_density.py +39 -0
- py_lfkit-0.2.0/src/lfkit/api/conditional_luminosity_function.py +161 -0
- py_lfkit-0.2.0/src/lfkit/api/luminosity_function.py +370 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/catalog_completeness.py +3 -3
- py_lfkit-0.2.0/src/lfkit/photometry/conditional_lf_integrals.py +152 -0
- py_lfkit-0.2.0/src/lfkit/photometry/conditional_lf_models.py +424 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_integrals.py +168 -131
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_parameter_models.py +6 -6
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_redshift_density.py +1 -1
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/luminosity_function.py +18 -18
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/download_poggianti97_data.py +4 -2
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/evaluators.py +57 -1
- py_lfkit-0.2.0/src/lfkit/utils/integrators.py +172 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/types.py +4 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/PKG-INFO +9 -2
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/SOURCES.txt +34 -6
- py_lfkit-0.2.0/tests/benchmarks/test_cacciato_clf_reference.py +246 -0
- py_lfkit-0.2.0/tests/benchmarks/test_cacciato_hod_reference.py +247 -0
- py_lfkit-0.2.0/tests/test_api_conditional_luminosity_function.py +192 -0
- py_lfkit-0.2.0/tests/test_api_luminosity_function.py +421 -0
- py_lfkit-0.2.0/tests/test_photometry_conditional_lf_integrals.py +350 -0
- py_lfkit-0.2.0/tests/test_photometry_conditional_lf_models.py +513 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_integrals.py +112 -19
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_luminosity_function.py +20 -20
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_download_pogg97_data.py +2 -2
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_evaluators.py +277 -0
- py_lfkit-0.2.0/tests/test_utils_integrators.py +362 -0
- py_lfkit-0.1.4/docs/api/lfkit.api.lumfunc.rst +0 -7
- py_lfkit-0.1.4/docs/examples/index.rst +0 -72
- py_lfkit-0.1.4/docs/examples/luminosity_function_examples.rst +0 -959
- py_lfkit-0.1.4/src/lfkit/api/lumfunc.py +0 -914
- py_lfkit-0.1.4/tests/test_api_lumfunc.py +0 -1329
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/ci.yml +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/publish.yml +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.gitignore +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/CITATION.cff +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/LICENSE +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/Makefile +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/custom.css +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo-icon.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.svg +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_templates/pages_redirect.html +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_templates/sidebar/brand.html +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/corr_overview.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/index.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/index.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.api.corrections.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.color_anchors.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.filters.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_backend.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_from_color.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_grids.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.poggianti1997.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.responses.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.cosmo.cosmology.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.cosmo.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.catalog_completeness.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_integrals.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_parameter_models.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_redshift_density.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.luminosities.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.luminosity_function.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.magnitudes.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.download_poggianti97_data.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.evaluators.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.interpolation.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.io.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.types.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.units.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.validators.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/examples/kcorrect_examples.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/examples/poggianti_examples.rst +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/make.bat +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_github_banner.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo-icon.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.svg +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/make_gh_banner.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/make_logo.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-B__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-B__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-I__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-I__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-R__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-R__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-U__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-U__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-V__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-V__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-g__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-g__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-i__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-i__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-r__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-r__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_B.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_I.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_R.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_U.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_V.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_Y.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_g.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_i.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_r.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_u.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_z.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_g0.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_i0.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_r0.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_u0.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_z0.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_B.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Ic.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Rc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_V.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_g.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_i.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_r.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_z.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_E.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_E2.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sa.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sc.pdf +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/compare_kcorr_surveys.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/compare_poggianti_to_kcorrect.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/make_fake_magnitude_limited_catalog.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/plot_poggianti1997_corrections.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/setup.cfg +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/api/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/api/corrections.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/color_anchors.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/filters.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_backend.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_from_color.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_grids.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/poggianti1997.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/responses.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/cosmo/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/cosmo/cosmology.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/demo_catalogs/fake_magnitude_limited_catalog.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone.npz +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__decam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone.npz +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/ecorr.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/filters.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/kcorr.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/kcorrv.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/sed.csv +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/luminosities.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/magnitudes.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/__init__.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/interpolation.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/io.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/units.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/validators.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/dependency_links.txt +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/requires.txt +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/top_level.txt +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_api_corrections.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_color_anchors.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_filters.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrect_backend.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrect_from_color.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrrect_grids.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_poggianti1997.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_responses.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_cosmo_cosmology.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_completeness.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_completeness_fake_catalog.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_parameter_models.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_redshift_density.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_luminosities.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_magnitudes.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_interpolation.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_io.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_units.py +0 -0
- {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_validators.py +0 -0
|
@@ -28,6 +28,7 @@ jobs:
|
|
|
28
28
|
- name: Build docs
|
|
29
29
|
run: |
|
|
30
30
|
tox -e docs-releases
|
|
31
|
+
find docs/_build/html -maxdepth 2 -name index.html -print
|
|
31
32
|
|
|
32
33
|
- name: Deploy documentation
|
|
33
34
|
uses: peaceiris/actions-gh-pages@v4
|
|
@@ -35,4 +36,3 @@ jobs:
|
|
|
35
36
|
publish_branch: gh-pages
|
|
36
37
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
37
38
|
publish_dir: docs/_build/html
|
|
38
|
-
force_orphan: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: py-lfkit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Luminosity functions and photometric corrections toolkit.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -37,6 +37,7 @@ Dynamic: license-file
|
|
|
37
37
|
[](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
|
|
38
38
|
[](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
|
|
39
39
|
[](LICENSE)
|
|
40
|
+
[](https://pypi.org/project/py-lfkit/)
|
|
40
41
|
|
|
41
42
|
**LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
|
|
42
43
|
and related utilities for cosmological analyses.
|
|
@@ -66,6 +67,12 @@ into larger analysis pipelines.
|
|
|
66
67
|
|
|
67
68
|
## Installation
|
|
68
69
|
|
|
70
|
+
Install LFKit from PyPI:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
python -m pip install py-lfkit
|
|
74
|
+
````
|
|
75
|
+
|
|
69
76
|
Clone the repository and install it locally:
|
|
70
77
|
|
|
71
78
|
```bash
|
|
@@ -84,7 +91,7 @@ If you use **LFKit** in your research, please cite it.
|
|
|
84
91
|
title = {LFKit: Luminosity functions and photometric corrections toolkit},
|
|
85
92
|
author = {Šarčević, Nikolina},
|
|
86
93
|
year = {2026},
|
|
87
|
-
version = {0.1.
|
|
94
|
+
version = {0.1.4},
|
|
88
95
|
url = {https://github.com/cosmology-kit/lfkit}
|
|
89
96
|
}
|
|
90
97
|
```
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
|
|
8
8
|
[](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
|
|
9
9
|
[](LICENSE)
|
|
10
|
+
[](https://pypi.org/project/py-lfkit/)
|
|
10
11
|
|
|
11
12
|
**LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
|
|
12
13
|
and related utilities for cosmological analyses.
|
|
@@ -36,6 +37,12 @@ into larger analysis pipelines.
|
|
|
36
37
|
|
|
37
38
|
## Installation
|
|
38
39
|
|
|
40
|
+
Install LFKit from PyPI:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
python -m pip install py-lfkit
|
|
44
|
+
````
|
|
45
|
+
|
|
39
46
|
Clone the repository and install it locally:
|
|
40
47
|
|
|
41
48
|
```bash
|
|
@@ -54,7 +61,7 @@ If you use **LFKit** in your research, please cite it.
|
|
|
54
61
|
title = {LFKit: Luminosity functions and photometric corrections toolkit},
|
|
55
62
|
author = {Šarčević, Nikolina},
|
|
56
63
|
year = {2026},
|
|
57
|
-
version = {0.1.
|
|
64
|
+
version = {0.1.4},
|
|
58
65
|
url = {https://github.com/cosmology-kit/lfkit}
|
|
59
66
|
}
|
|
60
67
|
```
|
|
@@ -303,7 +303,7 @@ and normalize the result over the supplied redshift grid.
|
|
|
303
303
|
)
|
|
304
304
|
|
|
305
305
|
This is useful for constructing LF-dependent redshift trends.
|
|
306
|
-
Without a volume weight, the result is the luminosity
|
|
306
|
+
Without a volume weight, the result is the luminosity function
|
|
307
307
|
selection factor only, not a full survey redshift distribution.
|
|
308
308
|
|
|
309
309
|
A volume-weighted trend can be computed by passing a callable:
|
|
@@ -8,6 +8,8 @@ Submodules
|
|
|
8
8
|
:maxdepth: 2
|
|
9
9
|
|
|
10
10
|
lfkit.photometry.catalog_completeness
|
|
11
|
+
lfkit.photometry.conditional_lf_integrals
|
|
12
|
+
lfkit.photometry.conditional_lf_models
|
|
11
13
|
lfkit.photometry.lf_integrals
|
|
12
14
|
lfkit.photometry.lf_parameter_models
|
|
13
15
|
lfkit.photometry.lf_redshift_density
|
|
@@ -64,6 +64,8 @@ napoleon_numpy_docstring = False
|
|
|
64
64
|
# -----------------------------------------------------------------------------
|
|
65
65
|
# HTML output
|
|
66
66
|
# -----------------------------------------------------------------------------
|
|
67
|
+
html_baseurl = "https://cosmology-kit.github.io/lfkit/"
|
|
68
|
+
|
|
67
69
|
html_theme = "furo"
|
|
68
70
|
html_permalinks_icon = "<span>#</span>"
|
|
69
71
|
|
|
@@ -113,8 +115,11 @@ plot_rcparams = {
|
|
|
113
115
|
# Sphinx multiversion
|
|
114
116
|
# -----------------------------------------------------------------------------
|
|
115
117
|
smv_tag_whitelist = r"^v\d+\.\d+\.\d+$"
|
|
116
|
-
smv_branch_whitelist = "main"
|
|
117
|
-
|
|
118
|
+
smv_branch_whitelist = r"^main$"
|
|
119
|
+
smv_remote_whitelist = r"^origin$"
|
|
120
|
+
smv_released_pattern = r"^refs/tags/v\d+\.\d+\.\d+$"
|
|
121
|
+
smv_outputdir_format = "{ref.name}"
|
|
122
|
+
smv_site_url = "https://cosmology-kit.github.io/lfkit/"
|
|
118
123
|
|
|
119
124
|
# -----------------------------------------------------------------------------
|
|
120
125
|
# Copybutton configuration
|