@jjlmoya/utils-forensic-science 1.1.0
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.
- package/package.json +69 -0
- package/scripts/crystal-lattice-catalog-translations.mjs +459 -0
- package/scripts/postinstall.mjs +27 -0
- package/scripts/sync-crystal-lattice-i18n.mjs +50 -0
- package/src/category/i18n/de.ts +55 -0
- package/src/category/i18n/en.ts +55 -0
- package/src/category/i18n/es.ts +55 -0
- package/src/category/i18n/fr.ts +55 -0
- package/src/category/i18n/id.ts +55 -0
- package/src/category/i18n/it.ts +55 -0
- package/src/category/i18n/ja.ts +56 -0
- package/src/category/i18n/ko.ts +56 -0
- package/src/category/i18n/nl.ts +55 -0
- package/src/category/i18n/pl.ts +55 -0
- package/src/category/i18n/pt.ts +55 -0
- package/src/category/i18n/ru.ts +55 -0
- package/src/category/i18n/sv.ts +55 -0
- package/src/category/i18n/tr.ts +55 -0
- package/src/category/i18n/zh.ts +56 -0
- package/src/category/index.ts +48 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +10 -0
- package/src/entries.ts +48 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +29 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +162 -0
- package/src/pages/[locale].astro +261 -0
- package/src/pages/index.astro +3 -0
- package/src/tests/diacritics_density.test.ts +140 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +24 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/seo_length.test.ts +46 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +16 -0
- package/src/tests/widmark.test.ts +28 -0
- package/src/tool/forensic-age-estimator/bibliography.astro +14 -0
- package/src/tool/forensic-age-estimator/bibliography.ts +16 -0
- package/src/tool/forensic-age-estimator/component.astro +321 -0
- package/src/tool/forensic-age-estimator/dental-skeletal-third-molar-age-estimator.css +634 -0
- package/src/tool/forensic-age-estimator/entry.ts +32 -0
- package/src/tool/forensic-age-estimator/i18n/de.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/en.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/es.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/fr.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/id.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/it.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ja.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ko.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/nl.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/pl.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/pt.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/ru.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/sv.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/tr.ts +245 -0
- package/src/tool/forensic-age-estimator/i18n/zh.ts +246 -0
- package/src/tool/forensic-age-estimator/index.ts +11 -0
- package/src/tool/forensic-age-estimator/logic.ts +81 -0
- package/src/tool/forensic-age-estimator/seo.astro +15 -0
- package/src/tool/forensic-blood-test-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-blood-test-simulator/bibliography.ts +12 -0
- package/src/tool/forensic-blood-test-simulator/component.astro +168 -0
- package/src/tool/forensic-blood-test-simulator/dom-utils.ts +40 -0
- package/src/tool/forensic-blood-test-simulator/entry.ts +32 -0
- package/src/tool/forensic-blood-test-simulator/forensic-presumptive-blood-testing-luminol-kastle-meyer-simulator.css +532 -0
- package/src/tool/forensic-blood-test-simulator/helpers.ts +16 -0
- package/src/tool/forensic-blood-test-simulator/i18n/de.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/en.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/es.ts +185 -0
- package/src/tool/forensic-blood-test-simulator/i18n/fr.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/id.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/it.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ja.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ko.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/nl.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/pl.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/pt.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/ru.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/sv.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/tr.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/i18n/zh.ts +220 -0
- package/src/tool/forensic-blood-test-simulator/index.ts +11 -0
- package/src/tool/forensic-blood-test-simulator/logic.ts +174 -0
- package/src/tool/forensic-blood-test-simulator/script.ts +192 -0
- package/src/tool/forensic-blood-test-simulator/seo.astro +15 -0
- package/src/tool/forensic-fiber-comparison-microscope/bibliography.astro +6 -0
- package/src/tool/forensic-fiber-comparison-microscope/bibliography.ts +16 -0
- package/src/tool/forensic-fiber-comparison-microscope/component.astro +146 -0
- package/src/tool/forensic-fiber-comparison-microscope/entry.ts +32 -0
- package/src/tool/forensic-fiber-comparison-microscope/forensic-fiber-comparison-microscope.css +629 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/de.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/en.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/es.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/fr.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/id.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/it.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ja.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ko.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/nl.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/pl.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/pt.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/ru.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/sv.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/tr.ts +246 -0
- package/src/tool/forensic-fiber-comparison-microscope/i18n/zh.ts +250 -0
- package/src/tool/forensic-fiber-comparison-microscope/index.ts +11 -0
- package/src/tool/forensic-fiber-comparison-microscope/logic.ts +244 -0
- package/src/tool/forensic-fiber-comparison-microscope/render.ts +265 -0
- package/src/tool/forensic-fiber-comparison-microscope/seo.astro +15 -0
- package/src/tool/forensic-fiber-comparison-microscope/view.ts +267 -0
- package/src/tool/forensic-glass-becke-line-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-glass-becke-line-simulator/bibliography.ts +16 -0
- package/src/tool/forensic-glass-becke-line-simulator/component.astro +81 -0
- package/src/tool/forensic-glass-becke-line-simulator/entry.ts +32 -0
- package/src/tool/forensic-glass-becke-line-simulator/forensic-glass-becke-line-simulator.css +392 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/de.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/en.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/es.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/fr.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/id.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/it.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ja.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ko.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/nl.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/pl.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/pt.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/ru.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/sv.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/tr.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/i18n/zh.ts +231 -0
- package/src/tool/forensic-glass-becke-line-simulator/index.ts +11 -0
- package/src/tool/forensic-glass-becke-line-simulator/logic.ts +100 -0
- package/src/tool/forensic-glass-becke-line-simulator/seo.astro +15 -0
- package/src/tool/forensic-glass-becke-line-simulator/view.ts +281 -0
- package/src/tool/forensic-image-authenticity-analyzer/bibliography.astro +9 -0
- package/src/tool/forensic-image-authenticity-analyzer/bibliography.ts +7 -0
- package/src/tool/forensic-image-authenticity-analyzer/component.astro +250 -0
- package/src/tool/forensic-image-authenticity-analyzer/entry.ts +29 -0
- package/src/tool/forensic-image-authenticity-analyzer/forensic-image-metadata-authenticity-analyzer.css +679 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/de.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/en.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/es.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/fr.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/id.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/it.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ja.ts +72 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ko.ts +72 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/nl.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/pl.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/pt.ts +105 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/ru.ts +75 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/sv.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/tr.ts +76 -0
- package/src/tool/forensic-image-authenticity-analyzer/i18n/zh.ts +71 -0
- package/src/tool/forensic-image-authenticity-analyzer/index.ts +11 -0
- package/src/tool/forensic-image-authenticity-analyzer/logic.ts +283 -0
- package/src/tool/forensic-image-authenticity-analyzer/seo.astro +10 -0
- package/src/tool/forensic-microcrystal-drug-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-microcrystal-drug-simulator/bibliography.ts +12 -0
- package/src/tool/forensic-microcrystal-drug-simulator/component.astro +240 -0
- package/src/tool/forensic-microcrystal-drug-simulator/entry.ts +32 -0
- package/src/tool/forensic-microcrystal-drug-simulator/forensic-microcrystal-drug-simulator.css +430 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/de.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/en.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/es.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/fr.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/id.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/it.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ja.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ko.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/nl.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/pl.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/pt.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/ru.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/sv.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/tr.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/i18n/zh.ts +244 -0
- package/src/tool/forensic-microcrystal-drug-simulator/index.ts +11 -0
- package/src/tool/forensic-microcrystal-drug-simulator/logic.ts +189 -0
- package/src/tool/forensic-microcrystal-drug-simulator/seo.astro +15 -0
- package/src/tool/forensic-sex-determinator/bibliography.astro +14 -0
- package/src/tool/forensic-sex-determinator/bibliography.ts +12 -0
- package/src/tool/forensic-sex-determinator/component.astro +463 -0
- package/src/tool/forensic-sex-determinator/entry.ts +32 -0
- package/src/tool/forensic-sex-determinator/forensic-sex-determinator.css +413 -0
- package/src/tool/forensic-sex-determinator/i18n/de.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/en.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/es.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/fr.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/id.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/it.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ja.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ko.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/nl.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/pl.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/pt.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/ru.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/sv.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/tr.ts +211 -0
- package/src/tool/forensic-sex-determinator/i18n/zh.ts +211 -0
- package/src/tool/forensic-sex-determinator/index.ts +11 -0
- package/src/tool/forensic-sex-determinator/logic.ts +89 -0
- package/src/tool/forensic-sex-determinator/seo.astro +15 -0
- package/src/tool/forensic-stature-estimator/bibliography.astro +14 -0
- package/src/tool/forensic-stature-estimator/bibliography.ts +12 -0
- package/src/tool/forensic-stature-estimator/component.astro +49 -0
- package/src/tool/forensic-stature-estimator/components/EstimationPanel.astro +65 -0
- package/src/tool/forensic-stature-estimator/components/OsteometricBoard.astro +39 -0
- package/src/tool/forensic-stature-estimator/components/OsteometricSelector.astro +109 -0
- package/src/tool/forensic-stature-estimator/dom-utils.ts +71 -0
- package/src/tool/forensic-stature-estimator/entry.ts +32 -0
- package/src/tool/forensic-stature-estimator/forensic-stature-estimator.css +689 -0
- package/src/tool/forensic-stature-estimator/helpers.ts +51 -0
- package/src/tool/forensic-stature-estimator/i18n/de.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/en.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/es.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/fr.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/id.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/it.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ja.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ko.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/nl.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/pl.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/pt.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/ru.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/sv.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/tr.ts +196 -0
- package/src/tool/forensic-stature-estimator/i18n/zh.ts +196 -0
- package/src/tool/forensic-stature-estimator/index.ts +11 -0
- package/src/tool/forensic-stature-estimator/logic.ts +119 -0
- package/src/tool/forensic-stature-estimator/script.ts +288 -0
- package/src/tool/forensic-stature-estimator/seo.astro +15 -0
- package/src/tool/forensic-tlc-ink-simulator/bibliography.astro +6 -0
- package/src/tool/forensic-tlc-ink-simulator/bibliography.ts +16 -0
- package/src/tool/forensic-tlc-ink-simulator/component.astro +245 -0
- package/src/tool/forensic-tlc-ink-simulator/entry.ts +32 -0
- package/src/tool/forensic-tlc-ink-simulator/forensic-tlc-ink-simulator.css +462 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/de.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/en.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/es.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/fr.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/id.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/it.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ja.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ko.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/nl.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/pl.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/pt.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/ru.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/sv.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/tr.ts +243 -0
- package/src/tool/forensic-tlc-ink-simulator/i18n/zh.ts +235 -0
- package/src/tool/forensic-tlc-ink-simulator/index.ts +11 -0
- package/src/tool/forensic-tlc-ink-simulator/logic.ts +152 -0
- package/src/tool/forensic-tlc-ink-simulator/seo.astro +15 -0
- package/src/tool/gsr-dispersion-calculator/bibliography.astro +6 -0
- package/src/tool/gsr-dispersion-calculator/bibliography.ts +16 -0
- package/src/tool/gsr-dispersion-calculator/component.astro +294 -0
- package/src/tool/gsr-dispersion-calculator/entry.ts +32 -0
- package/src/tool/gsr-dispersion-calculator/gsr-dispersion-calculator.css +305 -0
- package/src/tool/gsr-dispersion-calculator/i18n/de.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/en.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/es.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/fr.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/id.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/it.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ja.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ko.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/nl.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/pl.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/pt.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/ru.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/sv.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/tr.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/i18n/zh.ts +272 -0
- package/src/tool/gsr-dispersion-calculator/index.ts +11 -0
- package/src/tool/gsr-dispersion-calculator/logic.ts +148 -0
- package/src/tool/gsr-dispersion-calculator/seo.astro +15 -0
- package/src/tool/widmark-alcohol-simulator/bibliography.astro +14 -0
- package/src/tool/widmark-alcohol-simulator/bibliography.ts +12 -0
- package/src/tool/widmark-alcohol-simulator/component.astro +453 -0
- package/src/tool/widmark-alcohol-simulator/entry.ts +32 -0
- package/src/tool/widmark-alcohol-simulator/i18n/de.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/en.ts +206 -0
- package/src/tool/widmark-alcohol-simulator/i18n/es.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/fr.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/id.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/it.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ja.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ko.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/nl.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/pl.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/pt.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/ru.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/sv.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/tr.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/i18n/zh.ts +193 -0
- package/src/tool/widmark-alcohol-simulator/index.ts +11 -0
- package/src/tool/widmark-alcohol-simulator/logic.ts +97 -0
- package/src/tool/widmark-alcohol-simulator/seo.astro +15 -0
- package/src/tool/widmark-alcohol-simulator/widmark-alcohol-simulator.css +386 -0
- package/src/tools.ts +27 -0
- package/src/types.ts +70 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'kalkulator-szacowania-wzrostu-trotter-gleser-antropologia-sadowa';
|
|
5
|
+
const title = 'Sądowy Estymator Wzrostu';
|
|
6
|
+
const description = 'Szacowanie wzrostu w okresie życia na podstawie kości długich człowieka przy użyciu równań regresji Trotter i Gleser z uwzględnieniem płci, pochodzenia i poprawki na wiek.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Wybierz kość i zmienne',
|
|
11
|
+
text: 'Wybierz konkretną kość długą do pomiaru (Kość udowa, piszczelowa, ramienna, strzałkowa, promieniowa lub łokciowa), a także płeć biologiczną, grupę pochodzenia i wiek osobnika.'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Określ długość kości',
|
|
15
|
+
text: 'Dopasuj suwak na wirtualnej tablicy osteometrycznej, aby wskazać maksymalną długość próbki kości w centymetrach.'
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Oblicz szacowany wzrost',
|
|
19
|
+
text: 'Kalkulator stosuje odpowiednie równania regresji Trotter-Gleser, odejmując 0.06 cm za każdy rok życia powyżej 30 lat.'
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Zinterpretuj przedziały i błędy',
|
|
23
|
+
text: 'Przeanalizuj szacowany wzrost, błąd standardowy estymacji (SEE) oraz 95% przedział predykcji.'
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
key: 'faq-1',
|
|
30
|
+
question: 'Jak działają równania regresji Trotter i Gleser?',
|
|
31
|
+
answer: 'Równania te wykorzystują regresję liniową do modelowania korelacji między wzrostem za życia a maksymalną długością kości długich. Kalkulator stosuje specyficzne współczynniki dla danej płci i pochodzenia.'
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
key: 'faq-2',
|
|
35
|
+
question: 'Dlaczego narzędzie wymaga podania płci biologicznej i pochodzenia?',
|
|
36
|
+
answer: 'Proporcje ludzkiego ciała różnią się w zależności od płci i populacji geograficznych. Mężczyźni mają ogólnie inne proporcje kończyn do wzrostu niż kobiety.'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'faq-3',
|
|
40
|
+
question: 'Dlaczego w szacowaniu wzrostu występuje poprawka na wiek?',
|
|
41
|
+
answer: 'Wzrost za życia zmniejsza się stopniowo po okresie wczesnej dorosłości z powodu kompresji krążków międzykręgowych. Trotter i Gleser zalecali odjęcie 0,06 cm za każdy rok powyżej 30 roku życia.'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
key: 'faq-4',
|
|
45
|
+
question: 'Co to jest błąd standardowy estymacji (SEE)?',
|
|
46
|
+
answer: 'SEE reprezentuje odchylenie standardowe reszt w modelu regresji, określające dokładność przewidywanego wzrostu dla danej kości.'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: 'faq-5',
|
|
50
|
+
question: 'Które kości długie dają najdokładniejsze szacunki wzrostu?',
|
|
51
|
+
answer: 'Kości kończyn dolnych (w szczególności kość udowa i piszczelowa) dają najdokładniejsze wyniki, ponieważ bezpośrednio wpływają na wzrost człowieka.'
|
|
52
|
+
}
|
|
53
|
+
];
|
|
54
|
+
|
|
55
|
+
export const content: ToolLocaleContent = {
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
59
|
+
ui: {
|
|
60
|
+
title: 'Sądowy Estymator Wzrostu',
|
|
61
|
+
desc: 'Symuluj pomiary na tablicy osteometrycznej i obliczaj wzrost za życia przy użyciu regresji liniowej.',
|
|
62
|
+
configTitle: 'Konfiguracja Osteometryczna',
|
|
63
|
+
boneLabel: 'Próbka Kości',
|
|
64
|
+
lengthLabel: 'Długość Kości',
|
|
65
|
+
unitLabel: 'Jednostka Układu',
|
|
66
|
+
metricOption: 'Metryczny (cm)',
|
|
67
|
+
imperialOption: 'Imperialny (cale)',
|
|
68
|
+
sexLabel: 'Płeć Biologiczna',
|
|
69
|
+
ancestryLabel: 'Grupa Pochodzenia',
|
|
70
|
+
ageLabel: 'Wiek w Chwili Śmierci (lata)',
|
|
71
|
+
maleOption: 'Mężczyzna',
|
|
72
|
+
femaleOption: 'Kobieta',
|
|
73
|
+
whiteOption: 'Biała / Kaukaska',
|
|
74
|
+
blackOption: 'Czarna / Afroamerykańska',
|
|
75
|
+
asianOption: 'Azjatycka / Mongoloidalna',
|
|
76
|
+
femurName: 'Kość udowa',
|
|
77
|
+
tibiaName: 'Kość piszczelowa',
|
|
78
|
+
humerusName: 'Kość ramienna',
|
|
79
|
+
fibulaName: 'Kość strzałkowa',
|
|
80
|
+
radiusName: 'Kość promieniowa',
|
|
81
|
+
ulnaName: 'Kość łokciowa',
|
|
82
|
+
resultsTitle: 'Wyniki Szacowania Wzrostu',
|
|
83
|
+
estimateLabel: 'Szacowany Wzrost',
|
|
84
|
+
errorLabel: 'Błąd Standardowy (SEE)',
|
|
85
|
+
rangeLabel: '95% Przedział Predykcji',
|
|
86
|
+
formulaLabel: 'Równanie Regresji',
|
|
87
|
+
formulaBoneFactor: 'Czynnik Kości',
|
|
88
|
+
formulaConstant: 'Stała',
|
|
89
|
+
formulaAgeCorrection: 'Poprawka na Wiek',
|
|
90
|
+
formulaStdError: 'Błąd Standardowy (SEE)',
|
|
91
|
+
fallbackAlert: 'Brak bezpośredniego równania Trotter-Gleser dla kobiet pochodzenia azjatyckiego; jako alternatywę zastosowano równania dla kobiet rasy kaukaskiej.',
|
|
92
|
+
boardInstructions: 'Przeciągnij suwak kumpasu lub użyj pól tekstowych, aby zmierzyć kość.',
|
|
93
|
+
rulerLabelMetric: 'Skala Metryczna (mm)',
|
|
94
|
+
rulerLabelImperial: 'Skala Imperialna (in)',
|
|
95
|
+
unitsCm: 'cm',
|
|
96
|
+
unitsInches: 'in',
|
|
97
|
+
unitsFtIn: 'ft/in'
|
|
98
|
+
},
|
|
99
|
+
seo: [
|
|
100
|
+
{
|
|
101
|
+
type: 'title',
|
|
102
|
+
text: 'Kompleksowy przewodnik po szacowaniu wzrostu w antropologii sądowej',
|
|
103
|
+
level: 2
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'paragraph',
|
|
107
|
+
html: 'Szacowanie wzrostu stanowi fundamentalny element tworzenia profilu biologicznego w antropologii fizycznej, bioarcheologii oraz medycynie sądowej. W przypadku odnalezienia szczątków kostnych, rekonstrukcja wzrostu za życia pomaga śledczym w identyfikacji tożsamości poprzez porównanie z bazą osób zaginionych. Wzrost szacuje się mierząc maksymalną długość kości długich, które ściśle korelują z wysokością ciała.'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type: 'paragraph',
|
|
111
|
+
html: 'Ten cyfrowy symulator tablicy osteometrycznej pozwala studentom i specjalistom badać liniowe modele regresji opracowane przez Mildred Trotter i Goldine C. Gleser. Poprzez konfigurację takich zmiennych jak typ kości, płeć, pochodzenie oraz wiek, użytkownicy mogą analizować wpływ proporcji ciała na stałe matematyczne.'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Zrozumienie wzorów regresji Trotter-Gleser',
|
|
116
|
+
level: 3
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Mildred Trotter i Goldine C. Gleser opublikowały swoje kluczowe równania w latach 1952 i 1958. Równania te mają postać liniową: Wzrost = (Współczynnik × Długość Kości) + Stała ± Błąd Standardowy. Z uwagi na różnice w proporcjach ciała, stosuje się odrębne wzory dla płci i grup pochodzenia.'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'table',
|
|
124
|
+
headers: ['Próbka Kości Długiej', 'Model dla białych mężczyzn', 'Model dla białych kobiet', 'Użyteczność i wiarygodność sądowa'],
|
|
125
|
+
rows: [
|
|
126
|
+
['Kość udowa (Femur)', 'Wzrost = 2.32 × Femur + 65.53 ± 3.94 cm', 'Wzrost = 2.47 × Femur + 54.10 ± 3.72 cm', 'Najwyższa ogólna wiarygodność. Kość udowa jest głównym elementem nośnym kończyny dolnej.'],
|
|
127
|
+
['Kość piszczelowa (Tibia)', 'Wzrost = 2.42 × Tibia + 81.93 ± 4.00 cm', 'Wzrost = 2.90 × Tibia + 61.53 ± 3.66 cm', 'Wysoka wiarygodność. Należy zachować ostrożność, by mierzyć bez kostki przyśrodkowej, zgodnie z protokołem Trotter.'],
|
|
128
|
+
['Kość strzałkowa (Fibula)', 'Wzrost = 2.60 × Fibula + 75.50 ± 3.86 cm', 'Wzrost = 2.93 × Fibula + 59.61 ± 3.57 cm', 'Wysoka wiarygodność, jednak kość strzałkowa jest delikatna i często ulega fragmentacji.'],
|
|
129
|
+
['Kość ramienna (Humerus)', 'Wzrost = 2.89 × Humerus + 78.10 ± 4.57 cm', 'Wzrost = 3.36 × Humerus + 57.97 ± 4.45 cm', 'Umiarkowana wiarygodność. Kończyny górne nie przenoszą ciężaru ciała i wykazują większe błędy standardowe.'],
|
|
130
|
+
['Kość promieniowa (Radius)', 'Wzrost = 3.79 × Radius + 79.42 ± 4.66 cm', 'Wzrost = 4.74 × Radius + 54.93 ± 4.45 cm', 'Niższa wiarygodność z uwagi na znaczną indywidualną zmienność proporcji przedramienia.']
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Utrata wzrostu z wiekiem i poprawki pośmiertne',
|
|
136
|
+
level: 3
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Wzrost za życia nie jest stały. Począwszy od 30 roku życia ciało ludzkie ulega stopniowemu obniżeniu z powodu ucisku tarczek międzykręgowych. Trotter i Gleser zalecali odjęcie 0,06 cm za każdy rok powyżej trzydziestki: Utrata wzrostu = 0,06 × (Wiek - 30).'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Rozbieżności metodologiczne w protokole pomiaru piszczeli',
|
|
145
|
+
level: 3
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Znany problem metodologiczny w antropologii sądowej dotyczy pomiarów kości piszczelowej. W badaniu z 1952 roku piszczel mierzono bez kostki przyśrodkowej, natomiast w 1958 roku włączono ją do pomiarów. Stosowanie równań z 1952 roku do piszczeli zmierzonej z kostką prowadzi do systematycznego zawyżania wyników.'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'title',
|
|
153
|
+
text: 'Trendy sekularne i zastosowanie historycznych danych referencyjnych',
|
|
154
|
+
level: 3
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'Dane referencyjne Trotter-Gleser pochodzą od osób urodzonych na przełomie XIX i XX wieku. W ciągu ostatniego stulecia nastąpił pozytywny trend sekularny (populacje stają się wyższe). Współcześni antropolodzy często uzupełniają te badania nowocześniejszymi bazami danych, takimi jak FORDISC.'
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
faq,
|
|
162
|
+
bibliography,
|
|
163
|
+
howTo,
|
|
164
|
+
schemas: [
|
|
165
|
+
{
|
|
166
|
+
'@context': 'https://schema.org',
|
|
167
|
+
'@type': 'SoftwareApplication',
|
|
168
|
+
name: title,
|
|
169
|
+
description,
|
|
170
|
+
applicationCategory: 'ForensicApplication',
|
|
171
|
+
operatingSystem: 'Any'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@context': 'https://schema.org',
|
|
175
|
+
'@type': 'FAQPage',
|
|
176
|
+
mainEntity: faq.map((item) => ({
|
|
177
|
+
'@type': 'Question',
|
|
178
|
+
name: item.question,
|
|
179
|
+
acceptedAnswer: {
|
|
180
|
+
'@type': 'Answer',
|
|
181
|
+
text: item.answer
|
|
182
|
+
}
|
|
183
|
+
}))
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: title,
|
|
189
|
+
step: howTo.map((step) => ({
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
name: step.name,
|
|
192
|
+
text: step.text
|
|
193
|
+
}))
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
};
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'estimador-de-estatura-forense-restos-esqueleticos-calculadora-trotter-gleser';
|
|
5
|
+
const title = 'Estimador de Estatura Forense';
|
|
6
|
+
const description = 'Estime a estatura em vida a partir de ossos longos humanos usando as equações de regressão de Trotter e Gleser, incorporando sexo biológico, ancestralidade e correção por idade.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Selecionar osso e variáveis',
|
|
11
|
+
text: 'Escolha o osso longo específico para medir (Fémur, Tíbia, Úmero, Perónio, Rádio ou Cúbito), junto com o sexo biológico, grupo de ancestralidade e idade do indivíduo.'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Determinar a altura do osso',
|
|
15
|
+
text: 'Ajuste o calibrador deslizante na placa osteométrica virtual para representar o comprimento máximo do osso em centímetros.'
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Calcular estatura estimada',
|
|
19
|
+
text: 'A calculadora aplica as equações de regressão de Trotter-Gleser correspondentes, subtraindo 0.06 cm por ano para indivíduos com mais de 30 anos.'
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Interpretar intervalos e erros',
|
|
23
|
+
text: 'Analise a estatura estimada, o Erro Padrão da Estimativa (SEE) e o intervalo de predição de 95% para considerar a variabilidade populacional.'
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
key: 'faq-1',
|
|
30
|
+
question: 'Como funcionam as equações de regressão de Trotter e Gleser?',
|
|
31
|
+
answer: 'As equações usam regressão linear para modelar a correlação entre a estatura em vida e o comprimento máximo dos ossos longos. Ao inserir o comprimento do osso, a calculadora aplica inclinações e interceptos específicos do grupo populacional.'
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
key: 'faq-2',
|
|
35
|
+
question: 'Por que a ferramenta requer sexo biológico e ancestralidade?',
|
|
36
|
+
answer: 'As proporções do corpo humano variam de acordo com o sexo e a população geográfica. Homens geralmente têm proporções de membros em relação à estatura diferentes das mulheres.'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'faq-3',
|
|
40
|
+
question: 'Por que existe um fator de correção por idade?',
|
|
41
|
+
answer: 'A estatura em vida diminui gradualmente após a idade adulta jovem devido à compressão dos discos intervertebrais e mudanças posturais. Recomenda-se subtrair 0.06 cm para cada ano após os 30 anos.'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
key: 'faq-4',
|
|
45
|
+
question: 'O que é o Erro Padrão da Estimativa (SEE)?',
|
|
46
|
+
answer: 'O SEE representa o desvio padrão dos resíduos no modelo de regressão. Ele mede a precisão da estatura prevista em relação aos dados reais.'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: 'faq-5',
|
|
50
|
+
question: 'Quais ossos longos oferecem as estimativas mais precisas?',
|
|
51
|
+
answer: 'Os ossos dos membros inferiores (fémur e tíbia) fornecem as estimativas mais precisas porque contribuem diretamente para a altura. Os membros superiores apresentam erros padrão maiores.'
|
|
52
|
+
}
|
|
53
|
+
];
|
|
54
|
+
|
|
55
|
+
export const content: ToolLocaleContent = {
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
59
|
+
ui: {
|
|
60
|
+
title: 'Estimador de Estatura Forense',
|
|
61
|
+
desc: 'Simule medições em placas osteométricas e calcule a estatura em vida usando regressão linear.',
|
|
62
|
+
configTitle: 'Configuração Osteométrica',
|
|
63
|
+
boneLabel: 'Espécime de Osso',
|
|
64
|
+
lengthLabel: 'Comprimento do Osso',
|
|
65
|
+
unitLabel: 'Unidade do Sistema',
|
|
66
|
+
metricOption: 'Métrico (cm)',
|
|
67
|
+
imperialOption: 'Imperial (polegadas)',
|
|
68
|
+
sexLabel: 'Sexo Biológico',
|
|
69
|
+
ancestryLabel: 'Ancestralidade',
|
|
70
|
+
ageLabel: 'Idade no Óbito (anos)',
|
|
71
|
+
maleOption: 'Masculino',
|
|
72
|
+
femaleOption: 'Feminino',
|
|
73
|
+
whiteOption: 'Branco / Caucasiano',
|
|
74
|
+
blackOption: 'Negro / Afro-americano',
|
|
75
|
+
asianOption: 'Asiático / Mongoloide',
|
|
76
|
+
femurName: 'Fémur (Osso da coxa)',
|
|
77
|
+
tibiaName: 'Tíbia (Osso da canela)',
|
|
78
|
+
humerusName: 'Úmero (Osso do braço)',
|
|
79
|
+
fibulaName: 'Perónio (Fíbula)',
|
|
80
|
+
radiusName: 'Rádio (Osso do antebraço)',
|
|
81
|
+
ulnaName: 'Cúbito (Ulna)',
|
|
82
|
+
resultsTitle: 'Resultados da Estimativa',
|
|
83
|
+
estimateLabel: 'Estatura Estimada',
|
|
84
|
+
errorLabel: 'Erro Padrão (SEE)',
|
|
85
|
+
rangeLabel: 'Intervalo de Predição de 95%',
|
|
86
|
+
formulaLabel: 'Equação de Regressão',
|
|
87
|
+
formulaBoneFactor: 'Fator do Osso',
|
|
88
|
+
formulaConstant: 'Constante',
|
|
89
|
+
formulaAgeCorrection: 'Correção por Idade',
|
|
90
|
+
formulaStdError: 'Erro Padrão (SEE)',
|
|
91
|
+
fallbackAlert: 'Não existe equação de Trotter-Gleser direta para mulheres asiáticas; usando a equação de mulheres brancas como alternativa forense.',
|
|
92
|
+
boardInstructions: 'Arraste a guia do calibrador ou use os campos numéricos para medir o osso.',
|
|
93
|
+
rulerLabelMetric: 'Escala Métrica (mm)',
|
|
94
|
+
rulerLabelImperial: 'Escala Imperial (in)',
|
|
95
|
+
unitsCm: 'cm',
|
|
96
|
+
unitsInches: 'in',
|
|
97
|
+
unitsFtIn: 'ft/in'
|
|
98
|
+
},
|
|
99
|
+
seo: [
|
|
100
|
+
{
|
|
101
|
+
type: 'title',
|
|
102
|
+
text: 'Guia Completo para Estimativa de Estatura em Antropologia Forense',
|
|
103
|
+
level: 2
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'paragraph',
|
|
107
|
+
html: 'A estimativa de estatura representa um componente fundamental do perfil biológico na antropologia física, bioarqueologia e ciência forense. Quando restos esqueléticos são recuperados, reconstruir a estatura em vida ajuda na identificação cruzada de pessoas desaparecidas. A estatura é estimada medindo-se o comprimento máximo de ossos longos, que se correlacionam intimamente com a altura total devido a proporções esqueléticas genética e ambientalmente determinadas.'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type: 'paragraph',
|
|
111
|
+
html: 'Este simulador de placa osteométrica digital permite que estudantes e profissionais explorem os modelos de regressão linear desenvolvidos por Mildred Trotter e Goldine C. Gleser. Ao configurar variáveis como tipo de osso, sexo biológico, ancestralidade e idade no óbito, os usuários podem analisar como as proporções corporais influenciam as constantes matemáticas de previsão.'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Entendendo as Fórmulas de Regressão de Trotter-Gleser',
|
|
116
|
+
level: 3
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Mildred Trotter e Goldine C. Gleser publicaram suas equações de estimativa em 1952 e 1958. As fórmulas lineares têm o formato: Estatura = (Inclinação × Comprimento do Osso) + Constante ± Erro Padrão. Como os ratios corporais diferem por sexo e ancestralidade, fórmulas distintas são aplicadas.'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'table',
|
|
124
|
+
headers: ['Espécime de Osso Longo', 'Modelo Masculino Branco', 'Modelo Feminino Branco', 'Utilidade e Confiabilidade Forense'],
|
|
125
|
+
rows: [
|
|
126
|
+
['Fémur (Coxa)', 'Estatura = 2.32 × Fémur + 65.53 ± 3.94 cm', 'Estatura = 2.47 × Fémur + 54.10 ± 3.72 cm', 'Maior confiabilidade geral. O fémur é o osso de suporte primário do peso corporal, com correlação direta com a altura.'],
|
|
127
|
+
['Tíbia (Canela)', 'Estatura = 2.42 × Tíbia + 81.93 ± 4.00 cm', 'Estatura = 2.90 × Tíbia + 61.53 ± 3.66 cm', 'Alta confiabilidade. Cuidados devem ser tomados para seguir o protocolo de Trotter, que exclui o maléolo medial.'],
|
|
128
|
+
['Perónio (Fíbula)', 'Estatura = 2.60 × Perónio + 75.50 ± 3.86 cm', 'Estatura = 2.93 × Perónio + 59.61 ± 3.57 cm', 'Altamente confiável, mas o perónio é delgado e frequentemente fragmentado em restos históricos.'],
|
|
129
|
+
['Úmero (Braço)', 'Estatura = 2.89 × Úmero + 78.10 ± 4.57 cm', 'Estatura = 3.36 × Úmero + 57.97 ± 4.45 cm', 'Confiabilidade moderada. Os membros superiores não suportam peso e apresentam erros padrão maiores.'],
|
|
130
|
+
['Rádio (Antebraço)', 'Estatura = 3.79 × Rádio + 79.42 ± 4.66 cm', 'Estatura = 4.74 × Rádio + 54.93 ± 4.45 cm', 'Menor confiabilidade. O antebraço apresenta maior variação de proporções individuais.']
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Perda de Estatura com a Idade e Correção Post-Mortem',
|
|
136
|
+
level: 3
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'A estatura não é estática ao longo da vida adulta. A partir dos 30 anos, o corpo sofre redução de altura devido à compressão dos discos intervertebrais e alterações posturais. Trotter e Gleser recomendam subtrair 0,06 cm para cada ano após os 30 anos: Perda = 0,06 × (Idade - 30).'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Discrepâncias Metodológicas e Protocolo da Tíbia',
|
|
145
|
+
level: 3
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Um problema metodológico conhecido refere-se à medição da tíbia. Em 1952, Trotter mediu a tíbia sem o maléolo medial, mas mudou o protocolo em 1958. Aplicar a fórmula de 1952 a uma tíbia medida com o maléolo causa superestimativa sistemática.'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'title',
|
|
153
|
+
text: 'Tendências Seculares e Dados de Referência Históricos',
|
|
154
|
+
level: 3
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'As amostras de Trotter-Gleser refletem indivíduos nascidos no final do século XIX e início do século XX. Devido a melhorias na nutrição, populações atuais apresentam tendência secular positiva de estatura. Praticantes modernos complementam o uso das fórmulas com ferramentas modernas como o FORDISC.'
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
faq,
|
|
162
|
+
bibliography,
|
|
163
|
+
howTo,
|
|
164
|
+
schemas: [
|
|
165
|
+
{
|
|
166
|
+
'@context': 'https://schema.org',
|
|
167
|
+
'@type': 'SoftwareApplication',
|
|
168
|
+
name: title,
|
|
169
|
+
description,
|
|
170
|
+
applicationCategory: 'ForensicApplication',
|
|
171
|
+
operatingSystem: 'Any'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@context': 'https://schema.org',
|
|
175
|
+
'@type': 'FAQPage',
|
|
176
|
+
mainEntity: faq.map((item) => ({
|
|
177
|
+
'@type': 'Question',
|
|
178
|
+
name: item.question,
|
|
179
|
+
acceptedAnswer: {
|
|
180
|
+
'@type': 'Answer',
|
|
181
|
+
text: item.answer
|
|
182
|
+
}
|
|
183
|
+
}))
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: title,
|
|
189
|
+
step: howTo.map((step) => ({
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
name: step.name,
|
|
192
|
+
text: step.text
|
|
193
|
+
}))
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
};
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'ocenka-rosta-cheloveka-po-kostyam-kalkulyator-trotter-gleser';
|
|
5
|
+
const title = 'Калькулятор роста в судебной антропологии';
|
|
6
|
+
const description = 'Оценка прижизненного роста человека по длине длинных трубчатых костей с использованием регрессионных уравнений Троттер и Глезер.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Выберите кость и параметры',
|
|
11
|
+
text: 'Выберите кость для измерения (бедренная, большеберцовая, плечевая, малоберцовая, лучевая или локтевая), а также биологический пол, расовую принадлежность и возраст.'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Определите длину кости',
|
|
15
|
+
text: 'Используйте виртуальный остеометрический прибор, чтобы задать максимальную длину кости в сантиметрах.'
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Вычислите примерный рост',
|
|
19
|
+
text: 'Калькулятор применит уравнения Троттер-Глезер, вычитая по 0,06 см за каждый год жизни старше 30 лет.'
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Изучите доверительные интервалы',
|
|
23
|
+
text: 'Ознакомьтесь с оценкой роста, стандартной ошибкой (SEE) и 95% интервалом прогнозирования.'
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
key: 'faq-1',
|
|
30
|
+
question: 'Как работают уравнения Троттер и Глезер?',
|
|
31
|
+
answer: 'Формулы используют метод линейной регрессии для моделирования соотношения между прижизненным ростом и длиной костей.'
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
key: 'faq-2',
|
|
35
|
+
question: 'Почему требуются пол и расовая группа?',
|
|
36
|
+
answer: 'Пропорции тела варьируются в зависимости от пола и популяции. Мужчины и женщины имеют разные соотношения длины конечностей к росту.'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
key: 'faq-3',
|
|
40
|
+
question: 'Зачем нужна поправка на возраст?',
|
|
41
|
+
answer: 'Рост человека уменьшается после 30 лет из-за сжатия межпозвоночных дисков. Формула вычитает 0,06 см за каждый год старше 30 лет.'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
key: 'faq-4',
|
|
45
|
+
question: 'Что такое стандартная ошибка оценки (SEE)?',
|
|
46
|
+
answer: 'SEE отражает среднеквадратичное отклонение остатков регрессионной модели, определяя погрешность оценки.'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: 'faq-5',
|
|
50
|
+
question: 'Какие кости дают наиболее точные результаты?',
|
|
51
|
+
answer: 'Кости нижних конечностей (бедренная и большеберцовая) наиболее точны, так как они непосредственно определяют рост.'
|
|
52
|
+
}
|
|
53
|
+
];
|
|
54
|
+
|
|
55
|
+
export const content: ToolLocaleContent = {
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
59
|
+
ui: {
|
|
60
|
+
title: 'Калькулятор роста',
|
|
61
|
+
desc: 'Симулируйте измерения на остеометрической доске и рассчитывайте рост человека по линейной регрессии.',
|
|
62
|
+
configTitle: 'Параметры измерения',
|
|
63
|
+
boneLabel: 'Костный препарат',
|
|
64
|
+
lengthLabel: 'Длина кости',
|
|
65
|
+
unitLabel: 'Система единиц',
|
|
66
|
+
metricOption: 'Метрическая (см)',
|
|
67
|
+
imperialOption: 'Имперская (дюймы)',
|
|
68
|
+
sexLabel: 'Биологический пол',
|
|
69
|
+
ancestryLabel: 'Расовая группа',
|
|
70
|
+
ageLabel: 'Возраст на момент смерти',
|
|
71
|
+
maleOption: 'Мужской',
|
|
72
|
+
femaleOption: 'Женский',
|
|
73
|
+
whiteOption: 'Европеоидная раса',
|
|
74
|
+
blackOption: 'Негроидная раса',
|
|
75
|
+
asianOption: 'Монголоидная раса',
|
|
76
|
+
femurName: 'Бедренная кость',
|
|
77
|
+
tibiaName: 'Большеберцовая кость',
|
|
78
|
+
humerusName: 'Плечевая кость',
|
|
79
|
+
fibulaName: 'Малоберцовая кость',
|
|
80
|
+
radiusName: 'Лучевая кость',
|
|
81
|
+
ulnaName: 'Локтевая кость',
|
|
82
|
+
resultsTitle: 'Результаты оценки роста',
|
|
83
|
+
estimateLabel: 'Примерный прижизненный рост',
|
|
84
|
+
errorLabel: 'Стандартная ошибка (SEE)',
|
|
85
|
+
rangeLabel: '95% интервал прогнозирования',
|
|
86
|
+
formulaLabel: 'Регрессионное уравнение',
|
|
87
|
+
formulaBoneFactor: 'Коэффициент кости',
|
|
88
|
+
formulaConstant: 'Константа',
|
|
89
|
+
formulaAgeCorrection: 'Возрастная поправка',
|
|
90
|
+
formulaStdError: 'Стандартная ошибка (SEE)',
|
|
91
|
+
fallbackAlert: 'Прямого уравнения Троттер-Глезер для женщин монголоидной расы не существует; используются формулы для европеоидных женщин.',
|
|
92
|
+
boardInstructions: 'Передвигайте ползунок калибратора или вводите значения вручную для измерения кости.',
|
|
93
|
+
rulerLabelMetric: 'Метрическая шкала (мм)',
|
|
94
|
+
rulerLabelImperial: 'Имперская шкала (дюймы)',
|
|
95
|
+
unitsCm: 'см',
|
|
96
|
+
unitsInches: 'дюймы',
|
|
97
|
+
unitsFtIn: 'футы/дюймы'
|
|
98
|
+
},
|
|
99
|
+
seo: [
|
|
100
|
+
{
|
|
101
|
+
type: 'title',
|
|
102
|
+
text: 'Подробное руководство по оценке роста в судебной антропологии',
|
|
103
|
+
level: 2
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'paragraph',
|
|
107
|
+
html: 'Определение роста является ключевым этапом построения биологического профиля в физической антропологии и судебной медицине. При обнаружении остатков воссоздание прижизненного роста помогает идентифицировать личность, сопоставляя данные со списками пропавших без вести.'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type: 'paragraph',
|
|
111
|
+
html: 'Этот остеометрический симулятор позволяет исследователям изучать линейные регрессионные модели, созданные Милдред Троттер и Голдиной Глезер.'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Понимание формул регрессии Троттер-Глезер',
|
|
116
|
+
level: 3
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Милдред Троттер и Голдина Глезер опубликовали свои уравнения в 1952 и 1958 годах. Формулы имеют вид: Рост = (Множитель × Длина кости) + Константа ± Ошибка. Применяются разные формулы в зависимости от пола и расы.'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'table',
|
|
124
|
+
headers: ['Костный препарат', 'Формула для европеоидных мужчин', 'Формула для европеоидных женщин', 'Надежность'],
|
|
125
|
+
rows: [
|
|
126
|
+
['Бедренная кость (Femur)', 'Рост = 2.32 × Бедренная + 65.53 ± 3.94 см', 'Рост = 2.47 × Бедренная + 54.10 ± 3.72 см', 'Наивысшая надежность. Бедренная кость несет основную нагрузку и напрямую коррелирует с ростом.'],
|
|
127
|
+
['Большеберцовая кость (Tibia)', 'Рост = 2.42 × Большеберцовая + 81.93 ± 4.00 см', 'Рост = 2.90 × Большеберцовая + 61.53 ± 3.66 см', 'Высокая надежность. Необходимо измерять длину без учета медиальной лодыжки.'],
|
|
128
|
+
['Малоберцовая кость (Fibula)', 'Рост = 2.60 × Малоберцовая + 75.50 ± 3.86 см', 'Рост = 2.93 × Малоберцовая + 59.61 ± 3.57 cm', 'Высокая точность, но малоберцовая кость тонкая и часто ломается.'],
|
|
129
|
+
['Плечевая кость (Humerus)', 'Рост = 2.89 × Плечевая + 78.10 ± 4.57 см', 'Рост = 3.36 × Плечевая + 57.97 ± 4.45 см', 'Умеренная точность. Кости верхних конечностей не несут опорную функцию.'],
|
|
130
|
+
['Лучевая кость (Radius)', 'Рост = 3.79 × Лучевая + 79.42 ± 4.66 см', 'Рост = 4.74 × Лучевая + 54.93 ± 4.45 см', 'Низкая точность из-за высокой индивидуальной вариабельности предплечья.']
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'title',
|
|
135
|
+
text: 'Возрастное снижение роста и посмертные поправки',
|
|
136
|
+
level: 3
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'paragraph',
|
|
140
|
+
html: 'Рост взрослого человека уменьшается после 30 лет из-за дегенерации дисков позвоночника. Троттер и Глезер рекомендовали вычитать 0,06 см за каждый год после 30 лет: Уменьшение = 0,06 × (Возраст - 30).'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Методологические нюансы измерения большеберцовой кости',
|
|
145
|
+
level: 3
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'paragraph',
|
|
149
|
+
html: 'Известная погрешность связана с протоколом Троттер. В 1952 году замеры исключали медиальную лодыжку, а в 1958 она включалась. Ошибочное использование старой формулы при замере с лодыжкой приводит к завышению роста.'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
type: 'title',
|
|
153
|
+
text: 'Секулярный тренд и применимость исторических данных',
|
|
154
|
+
level: 3
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'paragraph',
|
|
158
|
+
html: 'Исходные выборки Троттер-Глезер отражают условия жизни конца XIX - начала XX века. Современные поколения стали выше (акселерация). В современной практике формулы Троттер-Глезер часто дополняют новыми базами данных, такими как FORDISC.'
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
faq,
|
|
162
|
+
bibliography,
|
|
163
|
+
howTo,
|
|
164
|
+
schemas: [
|
|
165
|
+
{
|
|
166
|
+
'@context': 'https://schema.org',
|
|
167
|
+
'@type': 'SoftwareApplication',
|
|
168
|
+
name: title,
|
|
169
|
+
description,
|
|
170
|
+
applicationCategory: 'ForensicApplication',
|
|
171
|
+
operatingSystem: 'Any'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
'@context': 'https://schema.org',
|
|
175
|
+
'@type': 'FAQPage',
|
|
176
|
+
mainEntity: faq.map((item) => ({
|
|
177
|
+
'@type': 'Question',
|
|
178
|
+
name: item.question,
|
|
179
|
+
acceptedAnswer: {
|
|
180
|
+
'@type': 'Answer',
|
|
181
|
+
text: item.answer
|
|
182
|
+
}
|
|
183
|
+
}))
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: title,
|
|
189
|
+
step: howTo.map((step) => ({
|
|
190
|
+
'@type': 'HowToStep',
|
|
191
|
+
name: step.name,
|
|
192
|
+
text: step.text
|
|
193
|
+
}))
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
};
|