py-lfkit 0.1.4__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.
Files changed (233) hide show
  1. py_lfkit-0.1.4/.github/workflows/ci.yml +44 -0
  2. py_lfkit-0.1.4/.github/workflows/docs.yml +38 -0
  3. py_lfkit-0.1.4/.github/workflows/publish.yml +32 -0
  4. py_lfkit-0.1.4/.gitignore +22 -0
  5. py_lfkit-0.1.4/CITATION.cff +24 -0
  6. py_lfkit-0.1.4/LICENSE +21 -0
  7. py_lfkit-0.1.4/MANIFEST.in +3 -0
  8. py_lfkit-0.1.4/PKG-INFO +94 -0
  9. py_lfkit-0.1.4/README.md +64 -0
  10. py_lfkit-0.1.4/docs/Makefile +24 -0
  11. py_lfkit-0.1.4/docs/_static/custom.css +142 -0
  12. py_lfkit-0.1.4/docs/_static/logos/lfkit_logo-icon.png +0 -0
  13. py_lfkit-0.1.4/docs/_static/logos/lfkit_logo.pdf +0 -0
  14. py_lfkit-0.1.4/docs/_static/logos/lfkit_logo.png +0 -0
  15. py_lfkit-0.1.4/docs/_static/logos/lfkit_logo.svg +74 -0
  16. py_lfkit-0.1.4/docs/_templates/pages_redirect.html +10 -0
  17. py_lfkit-0.1.4/docs/_templates/sidebar/brand.html +18 -0
  18. py_lfkit-0.1.4/docs/about/corr_overview.rst +223 -0
  19. py_lfkit-0.1.4/docs/about/index.rst +53 -0
  20. py_lfkit-0.1.4/docs/about/lf_overview.rst +541 -0
  21. py_lfkit-0.1.4/docs/api/index.rst +7 -0
  22. py_lfkit-0.1.4/docs/api/lfkit.api.corrections.rst +7 -0
  23. py_lfkit-0.1.4/docs/api/lfkit.api.lumfunc.rst +7 -0
  24. py_lfkit-0.1.4/docs/api/lfkit.api.rst +19 -0
  25. py_lfkit-0.1.4/docs/api/lfkit.corrections.color_anchors.rst +7 -0
  26. py_lfkit-0.1.4/docs/api/lfkit.corrections.filters.rst +7 -0
  27. py_lfkit-0.1.4/docs/api/lfkit.corrections.kcorrect_backend.rst +7 -0
  28. py_lfkit-0.1.4/docs/api/lfkit.corrections.kcorrect_from_color.rst +7 -0
  29. py_lfkit-0.1.4/docs/api/lfkit.corrections.kcorrect_grids.rst +7 -0
  30. py_lfkit-0.1.4/docs/api/lfkit.corrections.poggianti1997.rst +7 -0
  31. py_lfkit-0.1.4/docs/api/lfkit.corrections.responses.rst +7 -0
  32. py_lfkit-0.1.4/docs/api/lfkit.corrections.rst +24 -0
  33. py_lfkit-0.1.4/docs/api/lfkit.cosmo.cosmology.rst +7 -0
  34. py_lfkit-0.1.4/docs/api/lfkit.cosmo.rst +18 -0
  35. py_lfkit-0.1.4/docs/api/lfkit.photometry.catalog_completeness.rst +7 -0
  36. py_lfkit-0.1.4/docs/api/lfkit.photometry.lf_integrals.rst +7 -0
  37. py_lfkit-0.1.4/docs/api/lfkit.photometry.lf_parameter_models.rst +7 -0
  38. py_lfkit-0.1.4/docs/api/lfkit.photometry.lf_redshift_density.rst +7 -0
  39. py_lfkit-0.1.4/docs/api/lfkit.photometry.luminosities.rst +7 -0
  40. py_lfkit-0.1.4/docs/api/lfkit.photometry.luminosity_function.rst +7 -0
  41. py_lfkit-0.1.4/docs/api/lfkit.photometry.magnitudes.rst +7 -0
  42. py_lfkit-0.1.4/docs/api/lfkit.photometry.rst +24 -0
  43. py_lfkit-0.1.4/docs/api/lfkit.rst +22 -0
  44. py_lfkit-0.1.4/docs/api/lfkit.utils.download_poggianti97_data.rst +7 -0
  45. py_lfkit-0.1.4/docs/api/lfkit.utils.evaluators.rst +7 -0
  46. py_lfkit-0.1.4/docs/api/lfkit.utils.interpolation.rst +7 -0
  47. py_lfkit-0.1.4/docs/api/lfkit.utils.io.rst +7 -0
  48. py_lfkit-0.1.4/docs/api/lfkit.utils.rst +24 -0
  49. py_lfkit-0.1.4/docs/api/lfkit.utils.types.rst +7 -0
  50. py_lfkit-0.1.4/docs/api/lfkit.utils.units.rst +7 -0
  51. py_lfkit-0.1.4/docs/api/lfkit.utils.validators.rst +7 -0
  52. py_lfkit-0.1.4/docs/conf.py +124 -0
  53. py_lfkit-0.1.4/docs/examples/catalog_completeness_examples.rst +868 -0
  54. py_lfkit-0.1.4/docs/examples/index.rst +72 -0
  55. py_lfkit-0.1.4/docs/examples/kcorrect_examples.rst +449 -0
  56. py_lfkit-0.1.4/docs/examples/luminosity_function_examples.rst +959 -0
  57. py_lfkit-0.1.4/docs/examples/poggianti_examples.rst +194 -0
  58. py_lfkit-0.1.4/docs/index.rst +64 -0
  59. py_lfkit-0.1.4/docs/make.bat +35 -0
  60. py_lfkit-0.1.4/logo/lfkit_github_banner.png +0 -0
  61. py_lfkit-0.1.4/logo/lfkit_logo-icon.png +0 -0
  62. py_lfkit-0.1.4/logo/lfkit_logo.pdf +0 -0
  63. py_lfkit-0.1.4/logo/lfkit_logo.png +0 -0
  64. py_lfkit-0.1.4/logo/lfkit_logo.svg +74 -0
  65. py_lfkit-0.1.4/logo/make_gh_banner.py +24 -0
  66. py_lfkit-0.1.4/logo/make_logo.py +140 -0
  67. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.pdf +0 -0
  68. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.png +0 -0
  69. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.pdf +0 -0
  70. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.png +0 -0
  71. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.pdf +0 -0
  72. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.png +0 -0
  73. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.pdf +0 -0
  74. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.png +0 -0
  75. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.pdf +0 -0
  76. py_lfkit-0.1.4/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.png +0 -0
  77. py_lfkit-0.1.4/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
  78. py_lfkit-0.1.4/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
  79. py_lfkit-0.1.4/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
  80. py_lfkit-0.1.4/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
  81. py_lfkit-0.1.4/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
  82. py_lfkit-0.1.4/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
  83. py_lfkit-0.1.4/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
  84. py_lfkit-0.1.4/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
  85. py_lfkit-0.1.4/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
  86. py_lfkit-0.1.4/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
  87. py_lfkit-0.1.4/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
  88. py_lfkit-0.1.4/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
  89. py_lfkit-0.1.4/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
  90. py_lfkit-0.1.4/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
  91. py_lfkit-0.1.4/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
  92. py_lfkit-0.1.4/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
  93. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_B.pdf +0 -0
  94. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_I.pdf +0 -0
  95. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_R.pdf +0 -0
  96. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_U.pdf +0 -0
  97. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_V.pdf +0 -0
  98. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_Y.pdf +0 -0
  99. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_g.pdf +0 -0
  100. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_i.pdf +0 -0
  101. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_r.pdf +0 -0
  102. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_u.pdf +0 -0
  103. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_z.pdf +0 -0
  104. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_g0.pdf +0 -0
  105. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_i0.pdf +0 -0
  106. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_r0.pdf +0 -0
  107. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_u0.pdf +0 -0
  108. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_z0.pdf +0 -0
  109. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_B.pdf +0 -0
  110. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Ic.pdf +0 -0
  111. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Rc.pdf +0 -0
  112. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_V.pdf +0 -0
  113. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_g.pdf +0 -0
  114. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_i.pdf +0 -0
  115. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_r.pdf +0 -0
  116. py_lfkit-0.1.4/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_z.pdf +0 -0
  117. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_B_type_E.pdf +0 -0
  118. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_B_type_E2.pdf +0 -0
  119. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sa.pdf +0 -0
  120. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sc.pdf +0 -0
  121. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_H_type_E.pdf +0 -0
  122. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_H_type_E2.pdf +0 -0
  123. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sa.pdf +0 -0
  124. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sc.pdf +0 -0
  125. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_I_type_E.pdf +0 -0
  126. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_I_type_E2.pdf +0 -0
  127. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sa.pdf +0 -0
  128. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sc.pdf +0 -0
  129. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_E.pdf +0 -0
  130. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_Sc.pdf +0 -0
  131. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_J_type_E.pdf +0 -0
  132. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_J_type_E2.pdf +0 -0
  133. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sa.pdf +0 -0
  134. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sc.pdf +0 -0
  135. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_K_type_E.pdf +0 -0
  136. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_K_type_E2.pdf +0 -0
  137. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sa.pdf +0 -0
  138. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sc.pdf +0 -0
  139. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_R_type_E.pdf +0 -0
  140. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_R_type_E2.pdf +0 -0
  141. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sa.pdf +0 -0
  142. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sc.pdf +0 -0
  143. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_E.pdf +0 -0
  144. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_Sc.pdf +0 -0
  145. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_U_type_E.pdf +0 -0
  146. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_U_type_E2.pdf +0 -0
  147. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sa.pdf +0 -0
  148. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sc.pdf +0 -0
  149. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_V_type_E.pdf +0 -0
  150. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_V_type_E2.pdf +0 -0
  151. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sa.pdf +0 -0
  152. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sc.pdf +0 -0
  153. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_g_type_E.pdf +0 -0
  154. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_g_type_E2.pdf +0 -0
  155. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sa.pdf +0 -0
  156. py_lfkit-0.1.4/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sc.pdf +0 -0
  157. py_lfkit-0.1.4/pyproject.toml +207 -0
  158. py_lfkit-0.1.4/scripts/compare_kcorr_surveys.py +349 -0
  159. py_lfkit-0.1.4/scripts/compare_poggianti_to_kcorrect.py +343 -0
  160. py_lfkit-0.1.4/scripts/make_fake_magnitude_limited_catalog.py +40 -0
  161. py_lfkit-0.1.4/scripts/plot_poggianti1997_corrections.py +94 -0
  162. py_lfkit-0.1.4/setup.cfg +4 -0
  163. py_lfkit-0.1.4/src/lfkit/__init__.py +19 -0
  164. py_lfkit-0.1.4/src/lfkit/_version.py +24 -0
  165. py_lfkit-0.1.4/src/lfkit/api/__init__.py +0 -0
  166. py_lfkit-0.1.4/src/lfkit/api/corrections.py +308 -0
  167. py_lfkit-0.1.4/src/lfkit/api/lumfunc.py +914 -0
  168. py_lfkit-0.1.4/src/lfkit/corrections/__init__.py +0 -0
  169. py_lfkit-0.1.4/src/lfkit/corrections/color_anchors.py +176 -0
  170. py_lfkit-0.1.4/src/lfkit/corrections/filters.py +185 -0
  171. py_lfkit-0.1.4/src/lfkit/corrections/kcorrect_backend.py +149 -0
  172. py_lfkit-0.1.4/src/lfkit/corrections/kcorrect_from_color.py +111 -0
  173. py_lfkit-0.1.4/src/lfkit/corrections/kcorrect_grids.py +242 -0
  174. py_lfkit-0.1.4/src/lfkit/corrections/poggianti1997.py +386 -0
  175. py_lfkit-0.1.4/src/lfkit/corrections/responses.py +183 -0
  176. py_lfkit-0.1.4/src/lfkit/cosmo/__init__.py +0 -0
  177. py_lfkit-0.1.4/src/lfkit/cosmo/cosmology.py +211 -0
  178. py_lfkit-0.1.4/src/lfkit/data/demo_catalogs/fake_magnitude_limited_catalog.csv +201 -0
  179. py_lfkit-0.1.4/src/lfkit/data/kcorrect/grids/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  180. py_lfkit-0.1.4/src/lfkit/data/kcorrect/grids/kcorrect__decam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  181. py_lfkit-0.1.4/src/lfkit/data/kcorrect/grids/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  182. py_lfkit-0.1.4/src/lfkit/data/kcorrect/grids/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  183. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/__init__.py +0 -0
  184. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/ecorr.csv +603 -0
  185. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/filters.csv +516 -0
  186. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/kcorr.csv +490 -0
  187. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/kcorrv.csv +37 -0
  188. py_lfkit-0.1.4/src/lfkit/data/poggianti1997/sed.csv +295 -0
  189. py_lfkit-0.1.4/src/lfkit/photometry/__init__.py +0 -0
  190. py_lfkit-0.1.4/src/lfkit/photometry/catalog_completeness.py +381 -0
  191. py_lfkit-0.1.4/src/lfkit/photometry/lf_integrals.py +500 -0
  192. py_lfkit-0.1.4/src/lfkit/photometry/lf_parameter_models.py +386 -0
  193. py_lfkit-0.1.4/src/lfkit/photometry/lf_redshift_density.py +238 -0
  194. py_lfkit-0.1.4/src/lfkit/photometry/luminosities.py +426 -0
  195. py_lfkit-0.1.4/src/lfkit/photometry/luminosity_function.py +707 -0
  196. py_lfkit-0.1.4/src/lfkit/photometry/magnitudes.py +214 -0
  197. py_lfkit-0.1.4/src/lfkit/utils/__init__.py +0 -0
  198. py_lfkit-0.1.4/src/lfkit/utils/download_poggianti97_data.py +70 -0
  199. py_lfkit-0.1.4/src/lfkit/utils/evaluators.py +104 -0
  200. py_lfkit-0.1.4/src/lfkit/utils/interpolation.py +216 -0
  201. py_lfkit-0.1.4/src/lfkit/utils/io.py +240 -0
  202. py_lfkit-0.1.4/src/lfkit/utils/types.py +27 -0
  203. py_lfkit-0.1.4/src/lfkit/utils/units.py +160 -0
  204. py_lfkit-0.1.4/src/lfkit/utils/validators.py +63 -0
  205. py_lfkit-0.1.4/src/py_lfkit.egg-info/PKG-INFO +94 -0
  206. py_lfkit-0.1.4/src/py_lfkit.egg-info/SOURCES.txt +231 -0
  207. py_lfkit-0.1.4/src/py_lfkit.egg-info/dependency_links.txt +1 -0
  208. py_lfkit-0.1.4/src/py_lfkit.egg-info/requires.txt +24 -0
  209. py_lfkit-0.1.4/src/py_lfkit.egg-info/top_level.txt +1 -0
  210. py_lfkit-0.1.4/tests/test_api_corrections.py +268 -0
  211. py_lfkit-0.1.4/tests/test_api_lumfunc.py +1329 -0
  212. py_lfkit-0.1.4/tests/test_corrections_color_anchors.py +229 -0
  213. py_lfkit-0.1.4/tests/test_corrections_filters.py +141 -0
  214. py_lfkit-0.1.4/tests/test_corrections_kcorrect_backend.py +164 -0
  215. py_lfkit-0.1.4/tests/test_corrections_kcorrect_from_color.py +199 -0
  216. py_lfkit-0.1.4/tests/test_corrections_kcorrrect_grids.py +207 -0
  217. py_lfkit-0.1.4/tests/test_corrections_poggianti1997.py +297 -0
  218. py_lfkit-0.1.4/tests/test_corrections_responses.py +178 -0
  219. py_lfkit-0.1.4/tests/test_cosmo_cosmology.py +74 -0
  220. py_lfkit-0.1.4/tests/test_photometry_completeness.py +532 -0
  221. py_lfkit-0.1.4/tests/test_photometry_completeness_fake_catalog.py +255 -0
  222. py_lfkit-0.1.4/tests/test_photometry_lf_integrals.py +513 -0
  223. py_lfkit-0.1.4/tests/test_photometry_lf_parameter_models.py +467 -0
  224. py_lfkit-0.1.4/tests/test_photometry_lf_redshift_density.py +565 -0
  225. py_lfkit-0.1.4/tests/test_photometry_luminosities.py +377 -0
  226. py_lfkit-0.1.4/tests/test_photometry_luminosity_function.py +254 -0
  227. py_lfkit-0.1.4/tests/test_photometry_magnitudes.py +552 -0
  228. py_lfkit-0.1.4/tests/test_utils_download_pogg97_data.py +79 -0
  229. py_lfkit-0.1.4/tests/test_utils_evaluators.py +397 -0
  230. py_lfkit-0.1.4/tests/test_utils_interpolation.py +131 -0
  231. py_lfkit-0.1.4/tests/test_utils_io.py +128 -0
  232. py_lfkit-0.1.4/tests/test_utils_units.py +90 -0
  233. py_lfkit-0.1.4/tests/test_utils_validators.py +184 -0
@@ -0,0 +1,44 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ python-version: ["3.10", "3.11", "3.12"]
19
+
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v4
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+ cache: pip
29
+
30
+ - name: Install
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ python -m pip install -e ".[dev]"
34
+
35
+ - name: Lint (ruff)
36
+ run: |
37
+ ruff check .
38
+ ruff format --check .
39
+
40
+ - name: Tests (pytest)
41
+ run: |
42
+ pytest \
43
+ --cov=lfkit \
44
+ --cov-report=term-missing
@@ -0,0 +1,38 @@
1
+ name: Deploy Sphinx Documentation
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - 'v*.*.*'
9
+
10
+ jobs:
11
+ publish_docs:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: write
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+ with:
18
+ fetch-depth: 0
19
+
20
+ - uses: actions/setup-python@v5
21
+ with:
22
+ python-version: "3.13"
23
+
24
+ - name: Install dependencies
25
+ run: |
26
+ pip install -e .[docs]
27
+
28
+ - name: Build docs
29
+ run: |
30
+ tox -e docs-releases
31
+
32
+ - name: Deploy documentation
33
+ uses: peaceiris/actions-gh-pages@v4
34
+ with:
35
+ publish_branch: gh-pages
36
+ github_token: ${{ secrets.GITHUB_TOKEN }}
37
+ publish_dir: docs/_build/html
38
+ force_orphan: true
@@ -0,0 +1,32 @@
1
+ name: "Publish new versions of LFKit to PyPI"
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ permissions:
14
+ id-token: write
15
+ contents: read
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
+
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@v7
24
+
25
+ - name: Install Python 3.13
26
+ run: uv python install 3.13
27
+
28
+ - name: Build
29
+ run: uv build --no-sources
30
+
31
+ - name: Publish
32
+ run: uv publish
@@ -0,0 +1,22 @@
1
+ .idea
2
+ *__pycache__
3
+ logs/
4
+ plots_tests/
5
+ *.egg-info
6
+ venv
7
+ build
8
+ dist
9
+ .tox
10
+ .cache
11
+ docs/_build
12
+
13
+ # Notebooks
14
+ *.ipynb
15
+ .ipynb_checkpoints/
16
+ notebooks/
17
+ notebooks/plots/*.png
18
+ notebooks/plots/*.pdf
19
+ notebooks/logs/
20
+ docs/_generated/
21
+ unused/
22
+ src/lfkit/_version.py
@@ -0,0 +1,24 @@
1
+ cff-version: 1.2.0
2
+ message: >
3
+ If you use LFKit in your research, cite it using the metadata below.
4
+
5
+ title: "LFKit: Luminosity functions and photometric corrections toolkit"
6
+
7
+ authors:
8
+ - family-names: "Šarčević"
9
+ given-names: "Nikolina"
10
+ email: "nikolina.sarcevic@gmail.com"
11
+ orcid: "https://orcid.org/0000-0001-7301-6415"
12
+
13
+ version: "0.1.0"
14
+ date-released: 2026-03-01
15
+
16
+ repository-code: "https://github.com/cosmo-hub/lfkit"
17
+ url: "https://github.com/cosmo-hub/lfkit"
18
+
19
+ license: MIT
20
+
21
+ abstract: >
22
+ LFKit is a modular Python toolkit for luminosity function modeling,
23
+ k-corrections, e-corrections, and photometric response handling,
24
+ designed for cosmological analyses.
py_lfkit-0.1.4/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 cosmo-hub
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ recursive-include src/lfkit/data/kcorrect/grids *.npz
2
+ recursive-include src/lfkit/data/kcorrect/responses *.dat
3
+ recursive-include src/lfkit/data/poggianti1997 *.csv
@@ -0,0 +1,94 @@
1
+ Metadata-Version: 2.4
2
+ Name: py-lfkit
3
+ Version: 0.1.4
4
+ Summary: Luminosity functions and photometric corrections toolkit.
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: astroquery
9
+ Requires-Dist: numpy>=1.23
10
+ Requires-Dist: scipy>=1.9
11
+ Requires-Dist: kcorrect
12
+ Requires-Dist: pyccl
13
+ Provides-Extra: viz
14
+ Requires-Dist: matplotlib>=3.7; extra == "viz"
15
+ Requires-Dist: cmasher>=1.8; extra == "viz"
16
+ Provides-Extra: docs
17
+ Requires-Dist: sphinx<9; extra == "docs"
18
+ Requires-Dist: sphinx-design; extra == "docs"
19
+ Requires-Dist: sphinx-copybutton; extra == "docs"
20
+ Requires-Dist: furo; extra == "docs"
21
+ Requires-Dist: sphinx-multiversion; extra == "docs"
22
+ Requires-Dist: matplotlib>=3.7; extra == "docs"
23
+ Requires-Dist: tox; extra == "docs"
24
+ Provides-Extra: dev
25
+ Requires-Dist: pytest>=7; extra == "dev"
26
+ Requires-Dist: pytest-cov>=4; extra == "dev"
27
+ Requires-Dist: ruff>=0.5; extra == "dev"
28
+ Requires-Dist: tox>=4.22; extra == "dev"
29
+ Dynamic: license-file
30
+
31
+ <p align="center">
32
+ <img src="logo/lfkit_logo.svg" width="150">
33
+ </p>
34
+
35
+ # LFKit
36
+
37
+ [![CI](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/ci.yml?branch=main&label=CI&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
38
+ [![Docs](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/docs.yml?branch=main&label=docs&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
39
+ [![License](https://img.shields.io/github/license/cosmology-kit/lfkit?color=28A8C8&style=flat-square)](LICENSE)
40
+
41
+ **LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
42
+ and related utilities for cosmological analyses.
43
+
44
+ It is designed to provide reusable building blocks for working with luminosity functions,
45
+ magnitude conversions, k-corrections, e-corrections, and photometric response handling in a
46
+ clear and extensible way.
47
+
48
+ ## Features
49
+
50
+ LFKit currently includes tools for:
51
+
52
+ - luminosity function modeling
53
+ - Schechter and evolving luminosity function utilities
54
+ - magnitude and luminosity conversions
55
+ - k-corrections and e-corrections
56
+ - photometric response and filter-related helpers
57
+ - interpolation, validation, and general utility functions
58
+
59
+ The package is intended to stay modular, so components can be used independently or combined
60
+ into larger analysis pipelines.
61
+
62
+
63
+ ## Documentation
64
+
65
+ [View the documentation](https://cosmology-kit.github.io/lfkit/main/)
66
+
67
+ ## Installation
68
+
69
+ Clone the repository and install it locally:
70
+
71
+ ```bash
72
+ git clone https://github.com/cosmology-kit/lfkit.git
73
+ cd lfkit
74
+ python -m pip install -e .
75
+ ```
76
+
77
+
78
+ # Citation
79
+
80
+ If you use **LFKit** in your research, please cite it.
81
+
82
+ ```bibtex
83
+ @software{sarcevic2026lfkit,
84
+ title = {LFKit: Luminosity functions and photometric corrections toolkit},
85
+ author = {Šarčević, Nikolina},
86
+ year = {2026},
87
+ version = {0.1.0},
88
+ url = {https://github.com/cosmology-kit/lfkit}
89
+ }
90
+ ```
91
+
92
+
93
+ ## License
94
+ MIT License © 2025 Niko Šarčević, Matthijs van der Wild, and contributors.
@@ -0,0 +1,64 @@
1
+ <p align="center">
2
+ <img src="logo/lfkit_logo.svg" width="150">
3
+ </p>
4
+
5
+ # LFKit
6
+
7
+ [![CI](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/ci.yml?branch=main&label=CI&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
8
+ [![Docs](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/docs.yml?branch=main&label=docs&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
9
+ [![License](https://img.shields.io/github/license/cosmology-kit/lfkit?color=28A8C8&style=flat-square)](LICENSE)
10
+
11
+ **LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
12
+ and related utilities for cosmological analyses.
13
+
14
+ It is designed to provide reusable building blocks for working with luminosity functions,
15
+ magnitude conversions, k-corrections, e-corrections, and photometric response handling in a
16
+ clear and extensible way.
17
+
18
+ ## Features
19
+
20
+ LFKit currently includes tools for:
21
+
22
+ - luminosity function modeling
23
+ - Schechter and evolving luminosity function utilities
24
+ - magnitude and luminosity conversions
25
+ - k-corrections and e-corrections
26
+ - photometric response and filter-related helpers
27
+ - interpolation, validation, and general utility functions
28
+
29
+ The package is intended to stay modular, so components can be used independently or combined
30
+ into larger analysis pipelines.
31
+
32
+
33
+ ## Documentation
34
+
35
+ [View the documentation](https://cosmology-kit.github.io/lfkit/main/)
36
+
37
+ ## Installation
38
+
39
+ Clone the repository and install it locally:
40
+
41
+ ```bash
42
+ git clone https://github.com/cosmology-kit/lfkit.git
43
+ cd lfkit
44
+ python -m pip install -e .
45
+ ```
46
+
47
+
48
+ # Citation
49
+
50
+ If you use **LFKit** in your research, please cite it.
51
+
52
+ ```bibtex
53
+ @software{sarcevic2026lfkit,
54
+ title = {LFKit: Luminosity functions and photometric corrections toolkit},
55
+ author = {Šarčević, Nikolina},
56
+ year = {2026},
57
+ version = {0.1.0},
58
+ url = {https://github.com/cosmology-kit/lfkit}
59
+ }
60
+ ```
61
+
62
+
63
+ ## License
64
+ MIT License © 2025 Niko Šarčević, Matthijs van der Wild, and contributors.
@@ -0,0 +1,24 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?=
7
+ SPHINXBUILD ?= sphinx-build
8
+ SOURCEDIR = .
9
+ BUILDDIR = _build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ clean:
16
+ @$(SPHINXBUILD) -M clean "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O);
17
+ cd _build; git worktree add -f html gh-pages
18
+
19
+ .PHONY: help Makefile
20
+
21
+ # Catch-all target: route all unknown targets to Sphinx using the new
22
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
23
+ %: Makefile
24
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@@ -0,0 +1,142 @@
1
+ :root {
2
+ --color-brand-primary: #28A8C8;
3
+ --color-brand-content: #28A8C8;
4
+ --color-link: #28A8C8;
5
+ --color-link--hover: #FE5019;
6
+ --color-link--visited: #28A8C8;
7
+ }
8
+
9
+ .sidebar-container a:visited {
10
+ color: #28A8C8 !important;
11
+ }
12
+
13
+ /* ==========================================================================
14
+ LFKit — Furo sizing tweaks
15
+ ========================================================================== */
16
+
17
+ /* Bigger logo in sidebar + mobile header */
18
+ .sidebar-brand img,
19
+ .mobile-header .brand img {
20
+ height: 110px !important;
21
+ width: auto !important;
22
+ max-height: none !important;
23
+ }
24
+
25
+ /* Bigger sidebar text */
26
+ .sidebar-container {
27
+ font-size: 1.02rem !important;
28
+ }
29
+
30
+ .sidebar-container nav a {
31
+ font-size: 1.02rem !important;
32
+ line-height: 1.35 !important;
33
+ }
34
+
35
+ /* ==========================================================================
36
+ LFKit — Heading colors
37
+ ========================================================================== */
38
+
39
+ /* Main page title */
40
+ h1 {
41
+ color: #FE5019;
42
+ }
43
+
44
+ /* Section titles */
45
+ h2, h3, h4 {
46
+ color: #28A8C8;
47
+ }
48
+
49
+ h1:hover .headerlink,
50
+ h2:hover .headerlink,
51
+ h3:hover .headerlink {
52
+ color: #FE5019;
53
+ }
54
+
55
+ /* ==========================================================================
56
+ LFKit — Custom title styles
57
+ ========================================================================== */
58
+
59
+ .lfkit-title {
60
+ font-size: 2.6rem;
61
+ font-weight: 700;
62
+ margin-bottom: 1rem;
63
+ }
64
+
65
+ .lfkit-blue {
66
+ color: #28A8C8;
67
+ }
68
+
69
+ .lfkit-red {
70
+ color: #FE5019;
71
+ }
72
+
73
+ /* ==========================================================================
74
+ LFKit — Sidebar title
75
+ ========================================================================== */
76
+
77
+ .lfkit-brand-title {
78
+ color: #FE5019 !important; /* red */
79
+ font-weight: 600;
80
+ margin-top: 0.35rem;
81
+ }
82
+
83
+ /* optional hover */
84
+ .lfkit-brand:hover .lfkit-brand-title {
85
+ color: #28A8C8 !important; /* blue */
86
+ }
87
+
88
+ .lfkit-brand-title {
89
+ letter-spacing: 0.02em;
90
+ }
91
+
92
+ /* force sidebar title color (covers both stock Furo + custom template) */
93
+ .sidebar-brand,
94
+ .sidebar-brand a,
95
+ .sidebar-brand a:visited,
96
+ .sidebar-brand-text,
97
+ .sidebar-brand-text * {
98
+ color: #FE5019 !important; /* red */
99
+ }
100
+
101
+ /* optional hover */
102
+ .sidebar-brand:hover,
103
+ .sidebar-brand:hover a,
104
+ .sidebar-brand:hover .sidebar-brand-text,
105
+ .sidebar-brand:hover .sidebar-brand-text * {
106
+ color: #28A8C8 !important; /* blue */
107
+ }
108
+
109
+ /* Make sphinx-design cards feel LFKit-branded */
110
+ .sd-card-header, .sd-card-title { color: #28A8C8; }
111
+ .sd-card:hover .sd-card-title { color: #FE5019; }
112
+
113
+
114
+ /* ==========================================================================
115
+ LFKit — Sidebar typography
116
+ ========================================================================== */
117
+
118
+ /* Main navigation links */
119
+ .sidebar-tree a {
120
+ font-size: 1.08rem !important; /* try 1.08–1.12 */
121
+ line-height: 1.4;
122
+ }
123
+
124
+ /* Section headers inside the sidebar */
125
+ .sidebar-tree .caption-text {
126
+ font-size: 1.05rem !important;
127
+ font-weight: 600;
128
+ }
129
+
130
+ /* Search box text */
131
+ .sidebar-search input {
132
+ font-size: 1.02rem;
133
+ }
134
+
135
+ /* Optional: increase spacing a bit */
136
+ .sidebar-tree li {
137
+ margin-bottom: 0.15rem;
138
+ }
139
+
140
+ .sidebar-tree a {
141
+ padding: 0.15rem 0;
142
+ }
@@ -0,0 +1,74 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
3
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg xmlns:xlink="http://www.w3.org/1999/xlink" width="432pt" height="432pt" viewBox="0 0 432 432" xmlns="http://www.w3.org/2000/svg" version="1.1">
5
+ <metadata>
6
+ <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
7
+ <cc:Work>
8
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
+ <dc:date>2026-03-05T13:23:19.635512</dc:date>
10
+ <dc:format>image/svg+xml</dc:format>
11
+ <dc:creator>
12
+ <cc:Agent>
13
+ <dc:title>Matplotlib v3.10.6, https://matplotlib.org/</dc:title>
14
+ </cc:Agent>
15
+ </dc:creator>
16
+ </cc:Work>
17
+ </rdf:RDF>
18
+ </metadata>
19
+ <defs>
20
+ <style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
21
+ </defs>
22
+ <g id="figure_1">
23
+ <g id="patch_1">
24
+ <path d="M 0 432
25
+ L 432 432
26
+ L 432 0
27
+ L 0 0
28
+ L 0 432
29
+ z
30
+ " style="fill: none"/>
31
+ </g>
32
+ <g id="axes_1">
33
+ <g id="patch_2">
34
+ <path d="M 74.052603 200.636596
35
+ C 71.854469 216.27713 73.038397 232.208796 77.524204 247.352628
36
+ C 82.010011 262.49646 89.694094 276.502692 100.056049 288.422759
37
+ C 110.418005 300.342826 123.218512 309.901418 137.590662 316.451183
38
+ C 151.962811 323.000949 167.57466 326.390614 183.368903 326.390614
39
+ C 199.163146 326.390614 214.774995 323.000949 229.147145 316.451183
40
+ C 243.519294 309.901418 256.319801 300.342826 266.681757 288.422759
41
+ C 277.043713 276.502692 284.727795 262.49646 289.213603 247.352628
42
+ C 293.69941 232.208796 294.883337 216.27713 292.685203 200.636596
43
+ " clip-path="url(#p484834a944)" style="fill: none; stroke: #fe5019; stroke-width: 50; stroke-linejoin: miter"/>
44
+ </g>
45
+ <g id="line2d_1">
46
+ <path d="M 183.368903 358.990335
47
+ L 183.368903 57.925024
48
+ " clip-path="url(#p484834a944)" style="fill: none; stroke: #28a8c8; stroke-width: 50"/>
49
+ </g>
50
+ <g id="line2d_2">
51
+ <path d="M 183.368903 358.990335
52
+ L 343.937069 358.990335
53
+ " clip-path="url(#p484834a944)" style="fill: none; stroke: #28a8c8; stroke-width: 50; stroke-linecap: square"/>
54
+ </g>
55
+ <g id="patch_3">
56
+ <path d="M 292.685203 231.363404
57
+ C 294.883337 215.72287 293.69941 199.791204 289.213603 184.647372
58
+ C 284.727795 169.50354 277.043713 155.497308 266.681757 143.577241
59
+ C 256.319801 131.657174 243.519294 122.098582 229.147145 115.548817
60
+ C 214.774995 108.999051 199.163146 105.609386 183.368903 105.609386
61
+ C 167.57466 105.609386 151.962811 108.999051 137.590662 115.548817
62
+ C 123.218512 122.098582 110.418005 131.657174 100.056049 143.577241
63
+ C 89.694094 155.497308 82.010011 169.50354 77.524204 184.647372
64
+ C 73.038397 199.791204 71.854469 215.72287 74.052603 231.363404
65
+ " clip-path="url(#p484834a944)" style="fill: none; stroke: #fe5019; stroke-width: 50; stroke-linejoin: miter"/>
66
+ </g>
67
+ </g>
68
+ </g>
69
+ <defs>
70
+ <clipPath id="p484834a944">
71
+ <rect x="15.053266" y="0" width="401.893469" height="432"/>
72
+ </clipPath>
73
+ </defs>
74
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Redirecting to LFKit main branch version</title>
5
+ <meta charset="utf-8" />
6
+ <meta http-equiv="refresh" content="0; url=./main/" />
7
+ <link rel="canonical" href="https://cosmo-hub.github.io/lfkit/main/" />
8
+ </head>
9
+ </html>
10
+
@@ -0,0 +1,18 @@
1
+ {# docs/_templates/sidebar/brand.html #}
2
+ {# Furo override that reliably renders the configured logo. #}
3
+
4
+ <a href="{{ pathto(master_doc) }}" class="lfkit-brand">
5
+ {% set _logo = theme_logo_url or logo_url %}
6
+ {% if _logo %}
7
+ <img
8
+ src="{{ _logo }}"
9
+ alt="{{ project }}"
10
+ class="lfkit-brand-logo"
11
+ />
12
+ {% endif %}
13
+
14
+ <div class="lfkit-brand-title">
15
+ <span class="lfkit-red">LFKit</span>
16
+ <span class="lfkit-blue">Documentation</span>
17
+ </div>
18
+ </a>