1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Erd-Textur — Vorher / Nachher</title>
|
||
<style>
|
||
body { margin: 0; padding: 16px; background: #1a1a1a; color: #ddd;
|
||
font-family: system-ui, sans-serif; }
|
||
h1 { margin: 0 0 16px; font-size: 16px; color: #fbbf24; }
|
||
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
|
||
.cell { background: #000; border: 1px solid #444; border-radius: 6px; overflow: hidden; }
|
||
.cell h2 { margin: 0; padding: 8px 12px; background: #333; font-size: 13px; }
|
||
.cell img { width: 100%; height: auto; display: block; }
|
||
.info { font-size: 12px; color: #999; margin-top: 4px; padding: 0 12px 8px; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>🌍 Erd-Textur — Original vs. Kontrast/Sättigung +</h1>
|
||
|
||
<div class="row">
|
||
<div class="cell">
|
||
<h2>Original — earth-equirect.jpg</h2>
|
||
<img src="../assets/img/earth-equirect.jpg" alt="Original">
|
||
<div class="info">NASA Blue Marble, ungeschärft, ~501 KB</div>
|
||
</div>
|
||
<div class="cell">
|
||
<h2>Kontrast/Sättigung+ — earth-equirect-hi.jpg</h2>
|
||
<img src="../assets/img/earth-equirect-hi.jpg" alt="Verbessert">
|
||
<div class="info">Kontrast +28, Sättigung ×1.35, Schärfen, ~551 KB · aktuell auf Sphere aktiv</div>
|
||
</div>
|
||
</div>
|
||
|
||
<p style="font-size:12px;color:#aaa">
|
||
Wenn die rechte Variante zu kontrastig oder zu farbig ist:
|
||
<code>App/sims/sonnensystem/scripts/enhance-earth-texture.php</code> hat
|
||
die Konstanten <code>IMG_FILTER_CONTRAST, -28</code> und
|
||
<code>$satBoost = 1.35</code> — beide Werte anpassen, Skript erneut
|
||
laufen lassen.
|
||
</p>
|
||
</body>
|
||
</html>
|