fecd8bb9c9
562 Ersetzungen in 50 Dateien: Halbgeviertstrich zwischen zwei Ziffern (= "bis"-Bereich) bekommt Leerzeichen davor/danach (3–4 -> 3 – 4). Regex /([0-9])\s*–\s*(?=[0-9])/ auf Rohtext (format-erhaltend, CRLF/Einrueckung unveraendert), Bindestriche in Woertern und Minuszeichen unangetastet, alle JSON weiter gueltig. Energiemanager-Zeitbloecke sind Display-Labels (kein Logik-Key) -> safe. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
730 lines
173 KiB
HTML
730 lines
173 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>GeoGraSim — Quellenverzeichnis Lernen durch Simulation</title>
|
||
<link rel="icon" type="image/png" href="../favicon-96x96.png" sizes="96x96" />
|
||
<link rel="icon" type="image/svg+xml" href="../favicon.svg" />
|
||
<style>
|
||
:root {
|
||
--font-ui: "Helvetica Neue", Arial, sans-serif;
|
||
--font-body: "Georgia", serif;
|
||
--font-mono: "Courier New", monospace;
|
||
--bg: #f5f5f2;
|
||
--card: #fff;
|
||
--border: #ddd;
|
||
--muted: #777;
|
||
|
||
/* Score-Farben */
|
||
--c5: #1a6b3c; /* ★★★★★ dunkelgrün */
|
||
--c4: #2e7d32; /* ★★★★☆ grün */
|
||
--c3: #e65100; /* ★★★☆☆ orange */
|
||
--c2: #b71c1c; /* ★★☆☆☆ rot */
|
||
}
|
||
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
html { font-size: 15px; background: var(--bg); }
|
||
body { font-family: var(--font-ui); max-width: 1000px; margin: 0 auto; padding: 2rem 1.5rem 6rem; color: #1a1a1a; }
|
||
|
||
/* ── Kopf ── */
|
||
header { border-bottom: 2px solid #aaa; padding-bottom: 1rem; margin-bottom: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
|
||
header h1 { font-size: 1.35rem; }
|
||
header p { font-size: 0.82rem; color: var(--muted); }
|
||
header a { color: #1a4e8a; font-size: 0.82rem; }
|
||
|
||
/* ── Stats-Leiste ── */
|
||
.stats { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
|
||
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 5px; padding: 0.6rem 1rem; font-size: 0.82rem; }
|
||
.stat strong { display: block; font-size: 1.4rem; font-weight: 700; }
|
||
|
||
/* ── Diagramm ── */
|
||
.chart-row { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
|
||
.chart-box { background: var(--card); border: 1px solid var(--border); border-radius: 5px; padding: 1rem 1.2rem; flex: 1; min-width: 200px; }
|
||
.chart-box h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.75rem; }
|
||
.bar-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; font-size: 0.8rem; }
|
||
.bar-item .label { width: 90px; flex-shrink: 0; color: #333; }
|
||
.bar-track { flex: 1; background: #eee; border-radius: 3px; height: 10px; overflow: hidden; }
|
||
.bar-fill { height: 100%; border-radius: 3px; background: #1a4e8a; transition: width 0.4s; }
|
||
.bar-item .count { width: 24px; text-align: right; color: var(--muted); }
|
||
|
||
/* ── Filter ── */
|
||
.filter-section { margin-bottom: 1.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
|
||
.filter-section label { font-size: 0.78rem; color: var(--muted); margin-right: 0.25rem; }
|
||
.filter-btn {
|
||
font-size: 0.75rem; padding: 0.25rem 0.65rem;
|
||
border: 1px solid #bbb; border-radius: 20px;
|
||
background: #fff; cursor: pointer; font-family: inherit;
|
||
transition: background 0.15s;
|
||
}
|
||
.filter-btn.active, .filter-btn:hover { background: #1a4e8a; color: #fff; border-color: #1a4e8a; }
|
||
.filter-sep { width: 1px; background: #ddd; height: 20px; margin: 0 0.25rem; }
|
||
#search-input {
|
||
border: 1px solid #bbb; border-radius: 20px; padding: 0.25rem 0.8rem;
|
||
font-size: 0.78rem; font-family: inherit; outline: none;
|
||
width: 200px;
|
||
}
|
||
#search-input:focus { border-color: #1a4e8a; }
|
||
|
||
/* ── Sortierung ── */
|
||
#sort-select { border: 1px solid #bbb; border-radius: 4px; padding: 0.2rem 0.5rem; font-size: 0.78rem; font-family: inherit; background: #fff; }
|
||
|
||
/* ── Ergebnis-Zähler ── */
|
||
#result-count { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.75rem; }
|
||
|
||
/* ── Quellkarte ── */
|
||
.source-card {
|
||
background: var(--card);
|
||
border: 1px solid var(--border);
|
||
border-left: 5px solid #aaa;
|
||
border-radius: 5px;
|
||
padding: 1rem 1.2rem;
|
||
margin-bottom: 0.85rem;
|
||
transition: box-shadow 0.15s;
|
||
}
|
||
.source-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
|
||
.source-card.hidden { display: none; }
|
||
|
||
/* Farbe nach Score */
|
||
.source-card[data-stars="5"] { border-left-color: var(--c5); }
|
||
.source-card[data-stars="4"] { border-left-color: var(--c4); }
|
||
.source-card[data-stars="3"] { border-left-color: var(--c3); }
|
||
.source-card[data-stars="2"] { border-left-color: var(--c2); }
|
||
|
||
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
|
||
|
||
/* Sterne */
|
||
.stars { font-size: 1rem; white-space: nowrap; flex-shrink: 0; }
|
||
.stars .filled { color: #f5a623; }
|
||
.stars .empty { color: #ddd; }
|
||
.score-num { font-size: 0.72rem; color: var(--muted); margin-left: 0.25rem; vertical-align: middle; }
|
||
|
||
/* Badges */
|
||
.badges { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.5rem; }
|
||
.badge {
|
||
font-size: 0.68rem; padding: 0.1rem 0.45rem;
|
||
border-radius: 10px; border: 1px solid currentColor;
|
||
white-space: nowrap;
|
||
}
|
||
.badge-peer { color: #1a6b3c; }
|
||
.badge-institution { color: #1a4e8a; }
|
||
.badge-book { color: #5a2d82; }
|
||
.badge-preprint { color: #e65100; }
|
||
.badge-web { color: #555; }
|
||
.badge-austria { color: #cc0000; }
|
||
.badge-openaccess { color: #1a6b3c; }
|
||
.badge-paywall { color: #b71c1c; }
|
||
.badge-math { color: #1a4e8a; }
|
||
.badge-cited { background:#e8f5e9;color:#2e7d32;border-color:#81c784;font-weight:600; }
|
||
|
||
/* Titel & Autoren */
|
||
.card-id { font-size: 0.72rem; color: var(--muted); font-family: var(--font-mono); margin-right: 0.5rem; }
|
||
.card-title { font-weight: 600; font-size: 0.92rem; line-height: 1.4; }
|
||
.card-title a { color: #1a4e8a; text-decoration: none; }
|
||
.card-title a:hover { text-decoration: underline; }
|
||
.card-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
|
||
.card-abstract { font-size: 0.83rem; color: #444; margin-top: 0.5rem; line-height: 1.55; font-family: var(--font-body); }
|
||
.card-footer { margin-top: 0.6rem; display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.75rem; color: var(--muted); }
|
||
.card-footer a { color: #1a4e8a; text-decoration: none; }
|
||
.card-footer a:hover { text-decoration: underline; }
|
||
.card-notes { font-size: 0.75rem; color: #888; font-style: italic; margin-top: 0.3rem; }
|
||
.copy-apa-btn { background: none; border: none; cursor: pointer; padding: 0 0.25rem; color: #aaa; font-size: 0.9rem; line-height: 1; vertical-align: middle; transition: color 0.15s; }
|
||
.copy-apa-btn:hover { color: #1a4e8a; }
|
||
#toast-copy { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(2rem); background: #1a4e8a; color: #fff; padding: 0.5rem 1.1rem; border-radius: 20px; font-size: 0.82rem; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 9999; white-space: nowrap; }
|
||
#toast-copy.show { opacity: 1; transform: translateX(-50%) translateY(0); }
|
||
|
||
/* ── Bewertungssystem ── */
|
||
.criteria-section {
|
||
margin-bottom: 2rem;
|
||
}
|
||
.criteria-section h2 {
|
||
font-size: 1rem; font-weight: 700; color: #1a4e8a;
|
||
margin-bottom: 0.3rem; padding-bottom: 0.5rem;
|
||
border-bottom: 2px solid #1a4e8a;
|
||
}
|
||
.criteria-section .criteria-intro {
|
||
font-size: 0.83rem; color: var(--muted); margin-bottom: 1.2rem;
|
||
}
|
||
/* Dimension-Cards */
|
||
.dim-cards {
|
||
display: grid;
|
||
grid-template-columns: repeat(3, 1fr);
|
||
gap: 1rem;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
.dim-card {
|
||
background: #fff;
|
||
border: 1px solid var(--border);
|
||
border-top: 3px solid #1a4e8a;
|
||
border-radius: 6px;
|
||
padding: 1rem 1.1rem 1.1rem;
|
||
}
|
||
.dim-card h4 {
|
||
font-size: 0.82rem; font-weight: 700;
|
||
margin-bottom: 0.3rem; color: #1a4e8a;
|
||
}
|
||
.dim-card .dim-sub {
|
||
font-size: 0.73rem; color: var(--muted);
|
||
margin-bottom: 0.6rem; font-style: italic;
|
||
}
|
||
.dim-card ul { padding-left: 0; list-style: none; }
|
||
.dim-card li {
|
||
font-size: 0.78rem; color: #333;
|
||
padding: 0.28rem 0;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
display: flex; gap: 0.5rem; align-items: baseline;
|
||
}
|
||
.dim-card li:last-child { border-bottom: none; }
|
||
.dim-card li .score-badge {
|
||
background: #1a4e8a; color: #fff;
|
||
border-radius: 3px; padding: 0 0.35rem;
|
||
font-size: 0.7rem; font-weight: 700;
|
||
flex-shrink: 0;
|
||
}
|
||
/* Stars + Badges row */
|
||
.stars-badges-row {
|
||
display: grid;
|
||
grid-template-columns: auto 1fr;
|
||
gap: 1rem;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
/* Stars table card */
|
||
.stars-card {
|
||
background: #fff; border: 1px solid var(--border);
|
||
border-radius: 6px; padding: 1rem 1.1rem;
|
||
}
|
||
.stars-card h4 {
|
||
font-size: 0.82rem; font-weight: 700;
|
||
color: #1a4e8a; margin-bottom: 0.7rem;
|
||
}
|
||
.stars-table { border-collapse: collapse; font-size: 0.8rem; width: 100%; }
|
||
.stars-table th {
|
||
background: #f4f6fb; padding: 0.35rem 0.9rem;
|
||
text-align: left; font-weight: 600; border: 1px solid #ddd;
|
||
color: #1a4e8a;
|
||
}
|
||
.stars-table td { padding: 0.35rem 0.9rem; border: 1px solid #ddd; }
|
||
.stars-table tr:hover td { background: #fafbff; }
|
||
.row-5star td:nth-child(2) { color: var(--c5); font-size: 0.95rem; }
|
||
.row-4star td:nth-child(2) { color: var(--c4); font-size: 0.95rem; }
|
||
.row-3star td:nth-child(2) { color: var(--c3); font-size: 0.95rem; }
|
||
.row-2star td:nth-child(2) { color: var(--c2); font-size: 0.95rem; }
|
||
/* Badges card */
|
||
.badges-card {
|
||
background: #fff; border: 1px solid var(--border);
|
||
border-radius: 6px; padding: 1rem 1.1rem;
|
||
}
|
||
.badges-card h4 {
|
||
font-size: 0.82rem; font-weight: 700;
|
||
color: #1a4e8a; margin-bottom: 0.7rem;
|
||
}
|
||
.badge-list {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 0.45rem 1rem;
|
||
}
|
||
.badge-list .badge-row {
|
||
display: flex; align-items: center; gap: 0.5rem;
|
||
font-size: 0.76rem; color: #444;
|
||
}
|
||
.badge-list .badge-desc { color: var(--muted); }
|
||
|
||
/* ── Druck ── */
|
||
@media print {
|
||
body { max-width: 100%; }
|
||
.filter-section, .stats, .chart-row, #search-input, #sort-select { display: none; }
|
||
.source-card { break-inside: avoid; box-shadow: none; }
|
||
}
|
||
</style>
|
||
<!-- DATA_INJECT_START --><script>window.SOURCES_DATA=[{"id": "S001", "title": "Simulation-Based Learning in Higher Education: A Meta-Analysis", "authors": ["Chernikova, O.", "Heitzmann, N.", "Stadler, M.", "Holzberger, D.", "Seidel, T.", "Fischer, F."], "year": 2020, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse zur Wirksamkeit simulationsbasierten Lernens in der Hochschulbildung. Analysiert Effektstärken über verschiedene Disziplinen hinweg und identifiziert Designmerkmale, die den Lernerfolg beeinflussen. Zentrale Erkenntnis: Simulationen mit Scaffolding und Feedback zeigen signifikant höhere Effekte.", "doi": "10.3102/0034654320933544", "url": "https://journals.sagepub.com/doi/10.3102/0034654320933544", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S002", "title": "Digital Simulations in STEM Education: Insights from Recent Empirical Studies, a Systematic Review", "authors": ["Karakoyun, F.", "Sırakaya, M."], "year": 2025, "journal": "Encyclopedia", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Systematisches Review von 31 empirischen Studien zum Einsatz digitaler Simulationen im MINT-Unterricht. Interaktive Simulationen dominieren als meistverwendetes digitales Werkzeug (25 von 31 Studien), gefolgt von spielbasierten Simulationen und virtuellen Labors.", "doi": null, "url": "https://www.mdpi.com/2673-8392/5/1/10", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S003", "title": "PhET: Simulations That Enhance Learning", "authors": ["Wieman, C.", "Adams, W.", "Perkins, K."], "year": 2008, "journal": "Science", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Grundlegender Artikel von Nobelpreisträger Carl Wieman über die Entwicklung und den Einsatz von PhET-Simulationen im naturwissenschaftlichen Unterricht. Beschreibt Designprinzipien interaktiver Simulationen und deren positive Wirkung auf konzeptuelles Verständnis.", "doi": "10.1126/science.1161948", "url": "https://www.science.org/doi/10.1126/science.1161948", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk zu PhET", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S004", "title": "The Impact of Physics Education Technology (PhET) Interactive Simulation-Based Learning on Motivation and Academic Achievement Among Malawian Physics Students", "authors": ["Banda, H.", "Nzabahimana, J."], "year": 2023, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Experimentelle Studie zur Wirkung von PhET-Simulationen auf Motivation und Lernerfolg. Die Experimentalgruppe steigerte ihren Mittelwert um 27 %, die Kontrollgruppe nur um 6 %. Signifikante Verbesserungen bei konzeptuellem Verständnis und kritischem Denken.", "doi": "10.1007/s10956-022-10010-3", "url": "https://link.springer.com/article/10.1007/s10956-022-10010-3", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S005", "title": "Design factors for educationally effective animations and simulations", "authors": ["Plass, J.", "Homer, B.", "Hayward, E."], "year": 2009, "journal": "Journal of Computing in Higher Education", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Identifiziert zentrale Designfaktoren für pädagogisch wirksame Animationen und Simulationen. Behandelt visuelle Gestaltung, Interaktionsdesign und die Integration multipler Repräsentationen als Schlüsselfaktoren für den Lernerfolg.", "doi": "10.1007/s12528-009-9011-x", "url": "https://link.springer.com/article/10.1007/s12528-009-9011-x", "local": null, "retrieved": "2026-04-09", "notes": "Designprinzipien", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S006", "title": "The Role of Computer Simulation in an Inquiry-Based Learning Environment: Reconstructing Geological Events as Geologists", "authors": ["Barak, M.", "Hussein-Farraj, R.", "Dori, Y."], "year": 2012, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Untersuchung der Rolle von Computersimulationen im forschenden Lernen am Beispiel geologischer Prozesse. Simulationen förderten Inquiry-Fähigkeiten und ermöglichten Beobachtungen auf verschiedenen Maßstabsebenen — direkt relevant für den Geografieunterricht.", "doi": "10.1007/s10956-011-9330-3", "url": "https://link.springer.com/article/10.1007/s10956-011-9330-3", "local": null, "retrieved": "2026-04-09", "notes": "Geologie/Geografie-Bezug", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S007", "title": "Effect of Interactive Learning Environments on Learning Outcomes in Science Education: A Network Meta-Analysis", "authors": ["Kim, S.", "Lee, J."], "year": 2025, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Netzwerk-Meta-Analyse von 53 Primärstudien zur Wirkung interaktiver Lernumgebungen (AR, VR, MR, interaktive Spiele) auf Lernergebnisse im naturwissenschaftlichen Unterricht. Mixed Reality zeigte die größten Effektstärken bei kognitiven und affektiven Outcomes.", "doi": "10.1007/s10956-025-10202-7", "url": "https://link.springer.com/article/10.1007/s10956-025-10202-7", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S008", "title": "Mit Simulationen im Biologieunterricht das Verständnis von Nature of Science reflektieren und fördern", "authors": ["Kremer, K.", "Höffler, T."], "year": 2024, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Buchkapitel über das Potenzial von Computersimulationen im Biologieunterricht zur Förderung des Verständnisses von Nature of Science (NOS). Simulationen gelten als dritte Säule der Wissenschaft neben Theorie und Empirie.", "doi": "10.1007/978-3-662-68409-2_7", "url": "https://link.springer.com/chapter/10.1007/978-3-662-68409-2_7", "local": null, "retrieved": "2026-04-09", "notes": "Deutschsprachig, NOS-Bezug", "download_status": null, "local_file": null, "tags": []}, {"id": "S009", "title": "The Potential of Immersive Virtual Reality for Teaching Geography in Schools", "authors": ["Schlemper, M.", "Kersten, T."], "year": 2025, "journal": "KN - Journal of Cartography and Geographic Information", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Untersucht das Potenzial immersiver VR für den Geografieunterricht. VR fungiert nicht nur als Visualisierungswerkzeug, sondern als didaktisch fundiertes Medium, das räumliches Denken, kritische Reflexion und Entscheidungskompetenz fördert.", "doi": "10.1007/s42489-025-00204-1", "url": "https://link.springer.com/article/10.1007/s42489-025-00204-1", "local": null, "retrieved": "2026-04-09", "notes": "Direkt relevant: VR + Geografieunterricht", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S010", "title": "Employing technology-enhanced feedback and scaffolding to support the development of deep science understanding using computer simulations", "authors": ["Gerard, L.", "Linn, M."], "year": 2024, "journal": "International Journal of STEM Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Studie zum Einsatz von technologiegestütztem Feedback und Scaffolding in Kombination mit Computersimulationen. Zeigt, dass adaptive Unterstützung durch die Lehrperson und das System gemeinsam zu vertieftem naturwissenschaftlichem Verständnis führen.", "doi": "10.1186/s40594-024-00490-7", "url": "https://link.springer.com/article/10.1186/s40594-024-00490-7", "local": null, "retrieved": "2026-04-09", "notes": "Scaffolding + Feedback bei Simulationen", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S011", "title": "The Cambridge Handbook of Multimedia Learning", "authors": ["Mayer, R.", "Fiorella, L."], "year": 2021, "journal": "Cambridge University Press", "type": "book", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["book", "peer"], "abstract": "Dritte Auflage des Standardwerks zur Multimedialen Lerntheorie mit 46 Kapiteln. Beschreibt 15 evidenzbasierte Prinzipien des Multimedia-Designs (Kohärenz, Redundanz, Modalität, Segmentierung u.a.) und deren Anwendung auf computerbasierte Lernumgebungen.", "doi": "10.1017/9781108894333", "url": "https://www.cambridge.org/core/books/cambridge-handbook-of-multimedia-learning/09E09224829AB8D3D327EF8A0E9B5288", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk Multimedia Learning", "download_status": null, "local_file": null, "tags": []}, {"id": "S012", "title": "Cognitive Architecture and Instructional Design: 20 Years Later", "authors": ["Sweller, J.", "van Merriënboer, J.", "Paas, F."], "year": 2019, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Umfassende Aktualisierung der Cognitive Load Theory durch ihre drei Begründer. Beschreibt die Entwicklung der Theorie über 20 Jahre, neue Instruktionseffekte, die Unterscheidung biologisch primärer und sekundärer Wissensinhalte sowie neue Methoden zur Messung kognitiver Belastung.", "doi": "10.1007/s10648-019-09465-5", "url": "https://link.springer.com/article/10.1007/s10648-019-09465-5", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk CLT", "download_status": null, "local_file": null, "tags": []}, {"id": "S013", "title": "Experiential Learning: Experience as the Source of Learning and Development", "authors": ["Kolb, D."], "year": 2015, "journal": "Pearson Education", "type": "book", "lang": "en", "authority": 4, "recency": 1, "relevance": 1, "score": 6, "badges": ["book"], "abstract": "Zweite Auflage des Standardwerks zum Erfahrungsbasierten Lernen. Beschreibt den vierstufigen Lernzyklus (konkrete Erfahrung, reflektierende Beobachtung, abstrakte Begriffsbildung, aktives Experimentieren) als theoretische Grundlage für simulationsbasiertes Lernen.", "doi": null, "url": "https://www.pearson.com/en-us/subject-catalog/p/experiential-learning-experience-as-the-source-of-learning-and-development/P200000000384/9780133892505", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk Experiential Learning", "download_status": null, "local_file": null, "tags": []}, {"id": "S014", "title": "The Evolution of Simulation-Based Learning Across the Disciplines, 1965 – 2018: A Science Map of the Literature", "authors": ["Hallinger, P.", "Wang, R."], "year": 2020, "journal": "Simulation & Gaming", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Bibliometrische Analyse der Entwicklung simulationsbasierten Lernens über sechs Jahrzehnte. Identifiziert vier Forschungsschulen: SBL in der Managementausbildung, medizinische Ausbildung, technologiegestütztes SBL und Lerntheorien. Zeigt den Wandel von konventionellen zu immersiven und datengetriebenen Ansätzen.", "doi": "10.1177/1046878119888246", "url": "https://journals.sagepub.com/doi/abs/10.1177/1046878119888246", "local": null, "retrieved": "2026-04-09", "notes": "Historischer Überblick SBL", "download_status": null, "local_file": null, "tags": []}, {"id": "S015", "title": "Computer Simulations to Support Science Instruction and Learning: A Critical Review of the Literature", "authors": ["Smetana, L.", "Bell, R."], "year": 2012, "journal": "International Journal of Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Kritisches Review von 61 empirischen Studien zur Wirkung von Computersimulationen im naturwissenschaftlichen Unterricht. Simulationen sind am wirksamsten als Ergänzung zum traditionellen Unterricht, mit qualitativ hochwertiger Unterstützungsstruktur, Reflexionsanregungen und Auslösung kognitiver Konflikte.", "doi": "10.1080/09500693.2011.605182", "url": "https://www.tandfonline.com/doi/abs/10.1080/09500693.2011.605182", "local": null, "retrieved": "2026-04-09", "notes": "Zentrales Review zu Simulationen im NaWi-Unterricht", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S016", "title": "The Learning Effects of Computer Simulations in Science Education", "authors": ["Rutten, N.", "van Joolingen, W.", "van der Veen, J."], "year": 2012, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Review der quasi-experimentellen Forschung zu Lerneffekten von Computersimulationen im naturwissenschaftlichen Unterricht. Untersucht, wie Simulationen den traditionellen Unterricht verbessern und unter welchen Bedingungen sie optimal wirken. Betont die Rolle von Scaffolding und gezielter Anleitung.", "doi": "10.1016/j.compedu.2011.07.017", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131511001758", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenreview Simulationen", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S017", "title": "Physical and Virtual Laboratories in Science and Engineering Education", "authors": ["de Jong, T.", "Linn, M.", "Zacharia, Z."], "year": 2013, "journal": "Science", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Hochrangiger Review in Science zum Vergleich physischer und virtueller Laboratorien. Virtuelle Labore ermöglichen die Visualisierung unsichtbarer Phänomene und die Manipulation abstrakter Variablen. Empfiehlt die Kombination beider Ansätze zur Stärkung des naturwissenschaftlichen Lernens.", "doi": "10.1126/science.1230579", "url": "https://www.science.org/doi/10.1126/science.1230579", "local": null, "retrieved": "2026-04-09", "notes": "Landmark-Paper physische vs. virtuelle Labore", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S018", "title": "Effectiveness of Virtual Laboratories in Science Education: A Meta-Analysis", "authors": ["Santos, M.", "Prudente, M."], "year": 2022, "journal": "International Journal of Information and Education Technology", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Meta-Analyse von 15 Studien zur Wirksamkeit virtueller Laboratorien im naturwissenschaftlichen Unterricht. Mittlerer Effekt (g = 0,587) zugunsten virtueller Labore bei Lernerfolg. Chemie und Physik zeigten die stärksten Effekte, wobei die Sekundarstufe am meisten profitierte.", "doi": "10.18178/ijiet.2022.12.2.1598", "url": "https://www.ijiet.org/vol12/1598-IJIET-3079.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S019", "title": "The Potential of Digital Tools to Enhance Mathematics and Science Learning in Secondary Schools: A Context-Specific Meta-Analysis", "authors": ["Hillmayr, D.", "Ziernwald, L.", "Reinhold, F.", "Hofer, S.", "Reiss, K."], "year": 2020, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse von 92 Studien zum Einsatz digitaler Werkzeuge im MINT-Unterricht der Sekundarstufe. Positiver Gesamteffekt (g = 0,65). Simulationen und dynamische Werkzeuge waren signifikant wirksamer als Hypermedia-Systeme. Lehrkräftefortbildung zum Tooleinsatz moderierte den Effekt signifikant.", "doi": "10.1016/j.compedu.2020.103897", "url": "https://www.sciencedirect.com/science/article/pii/S0360131520300968", "local": null, "retrieved": "2026-04-09", "notes": "TUM-Studie, DACH-Bezug", "download_status": null, "local_file": null, "tags": []}, {"id": "S020", "title": "The Cognitive Affective Model of Immersive Learning (CAMIL): A Theoretical Research-Based Model of Learning in Immersive Virtual Reality", "authors": ["Makransky, G.", "Petersen, G."], "year": 2021, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Theoretisches Modell des Lernens in immersiver virtueller Realität. CAMIL beschreibt sechs affektive und kognitive Faktoren (Interesse, Motivation, Selbstwirksamkeit, Embodiment, kognitive Belastung, Selbstregulation), die zu VR-basierten Lernergebnissen führen. Verbindet CLT mit immersiven Lernumgebungen.", "doi": "10.1007/s10648-020-09586-2", "url": "https://link.springer.com/article/10.1007/s10648-020-09586-2", "local": null, "retrieved": "2026-04-09", "notes": "Theoriemodell VR-Lernen", "download_status": null, "local_file": null, "tags": []}, {"id": "S021", "title": "Virtual Learning Simulations in High School: Effects on Cognitive and Non-cognitive Outcomes and Implications on the Development of STEM Academic and Career Choice", "authors": ["Thisgaard, M.", "Makransky, G."], "year": 2017, "journal": "Frontiers in Psychology", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer", "openaccess"], "abstract": "Experimentelle Studie mit 128 Oberstufenschüler*innen zum Vergleich virtueller Lernsimulationen mit traditionellem Unterricht zum Thema Evolution. Virtuelle Simulationen steigerten das Fachwissen signifikant stärker als der traditionelle Unterricht, zeigten jedoch keine signifikanten Unterschiede bei nicht-kognitiven Outcomes.", "doi": "10.3389/fpsyg.2017.00805", "url": "https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2017.00805/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S022", "title": "Learning Outcome Achievement in Non-Traditional (Virtual and Remote) versus Traditional (Hands-On) Laboratories: A Review of the Empirical Research", "authors": ["Brinson, J."], "year": 2015, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Review von 56 empirischen Studien zum Vergleich virtueller/ferngesteuerter und traditioneller Laboratorien. 87 % der Studien zeigten gleiche oder bessere Lernergebnisse in nicht-traditionellen Laboren. Entwickelt das KIPPAS-Framework zur Klassifikation von Laborlernzielen (Knowledge, Inquiry, Practical, Perception, Analytical, Social).", "doi": "10.1016/j.compedu.2015.07.003", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131515300087", "local": null, "retrieved": "2026-04-09", "notes": "Wichtiges Review virtuelle vs. physische Labore", "download_status": null, "local_file": null, "tags": []}, {"id": "S023", "title": "Virtual Laboratories for Education in Science, Technology, and Engineering: A Review", "authors": ["Potkonjak, V.", "Gardner, M.", "Callaghan, V.", "Mattila, P.", "Guetl, C.", "Petrovic, V.", "Jovanovic, K."], "year": 2016, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Systematisches Review virtueller Laboratorien in MINT-Bildung mit Klassifikation nach vier Kriterien. Analysiert verschiedene Typen virtueller Labore (Fernlabore, Simulationslabore, VR-Labore) und deren jeweilige Stärken und Schwächen. Ein Autor (Guetl) von der TU Graz — Österreich-Bezug.", "doi": "10.1016/j.compedu.2016.02.002", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131516300227", "local": null, "retrieved": "2026-04-09", "notes": "Klassifikation virtueller Labore, TU Graz Autor", "download_status": null, "local_file": null, "tags": []}, {"id": "S024", "title": "Improving Biotech Education Through Gamified Laboratory Simulations", "authors": ["Bonde, M.", "Makransky, G.", "Wandall, J.", "Larsen, M.", "Morsing, M.", "Jarmer, H.", "Sommer, M."], "year": 2014, "journal": "Nature Biotechnology", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Studie zur Wirksamkeit gamifizierter Laborsimulationen (Labster) im Biotechnologieunterricht. Kombination aus virtueller Simulation und traditionellem Unterricht steigerte den Lernerfolg um 101 %, alleiniger Einsatz der Simulation um 76 %. Zeigt das Potenzial spielbasierter Elemente in Simulationen.", "doi": "10.1038/nbt.2955", "url": "https://www.nature.com/articles/nbt.2955", "local": null, "retrieved": "2026-04-09", "notes": "Labster, gamifizierte Simulation", "download_status": null, "local_file": null, "tags": []}, {"id": "S025", "title": "PhET: Interactive Simulations for Teaching and Learning Physics", "authors": ["Perkins, K.", "Adams, W.", "Dubson, M.", "Finkelstein, N.", "Reid, S.", "Wieman, C.", "LeMaster, R."], "year": 2006, "journal": "The Physics Teacher", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Gründungsartikel des PhET-Projekts der University of Colorado. Beschreibt die forschungsbasierten Designprinzipien interaktiver Simulationen: Verbindung zu Alltagsphänomenen, implizite Anleitung durch Interface-Design, produktives Explorationsverhalten und sofortiges visuelles Feedback.", "doi": "10.1119/1.2150754", "url": "https://pubs.aip.org/aapt/pte/article-abstract/44/1/18/274167", "local": null, "retrieved": "2026-04-09", "notes": "PhET-Gründungsartikel", "download_status": null, "local_file": null, "tags": []}, {"id": "S026", "title": "Lernen und Lehren mit digitalen Medien: Eine Standortbestimmung", "authors": ["Scheiter, K."], "year": 2021, "journal": "Zeitschrift für Erziehungswissenschaft", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 1, "score": 6, "badges": ["peer", "openaccess"], "abstract": "Überblicksartikel zum aktuellen Forschungsstand des Lernens und Lehrens mit digitalen Medien. Unterscheidet zwei Forschungsperspektiven: kognitionspsychologische Grundlagenforschung und anwendungsbezogene Unterrichtsforschung. Betont die Notwendigkeit kontextspezifischer Wirksamkeitsforschung.", "doi": "10.1007/s11618-021-01047-y", "url": "https://link.springer.com/article/10.1007/s11618-021-01047-y", "local": null, "retrieved": "2026-04-09", "notes": "Deutschsprachige Standortbestimmung", "download_status": null, "local_file": null, "tags": []}, {"id": "S027", "title": "Multimedia und digitale Medien im Physikunterricht", "authors": ["Girwidz, R."], "year": 2020, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["book", "peer"], "abstract": "Umfassendes Buchkapitel in 'Physikdidaktik — Grundlagen' zu Multimedia und digitalen Medien im Physikunterricht. Behandelt Simulationen, Visualisierungen, interaktive Animationen und moderne Sensorik. Verknüpft multimediale Lerntheorie mit konkreten Gestaltungshinweisen für den Physikunterricht.", "doi": "10.1007/978-3-662-59490-2_13", "url": "https://link.springer.com/chapter/10.1007/978-3-662-59490-2_13", "local": null, "retrieved": "2026-04-09", "notes": "Deutschsprachig, Physikdidaktik LMU München", "download_status": null, "local_file": null, "tags": []}, {"id": "S028", "title": "Moving Towards Engaged Learning in STEM Domains; There Is No Simple Answer, but Clearly a Road Ahead", "authors": ["de Jong, T."], "year": 2019, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Narratives Review zum engagierten Lernen in MINT-Fächern mit Fokus auf Computersimulationen und pädagogische Agenten. Diskutiert, wie Simulationen inquiry-basiertes Lernen unterstützen und welche Scaffolding-Strategien den Lernprozess optimal begleiten.", "doi": "10.1111/jcal.12337", "url": "https://onlinelibrary.wiley.com/doi/10.1111/jcal.12337", "local": null, "retrieved": "2026-04-09", "notes": "de Jong — führender Simulationsforscher", "download_status": null, "local_file": null, "tags": []}, {"id": "S029", "title": "Physical versus Virtual Manipulative Experimentation in Physics Learning", "authors": ["Zacharia, Z.", "Olympiou, G."], "year": 2011, "journal": "Learning and Instruction", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Experimentelle Studie mit 182 Studierenden zum Vergleich physischer und virtueller Manipulationen im Physikunterricht (Wärme und Temperatur). Sequenzielle Kombination von virtuellen und physischen Experimenten führte zu besserem konzeptuellem Verständnis als jeder Ansatz allein.", "doi": "10.1016/j.learninstruc.2010.03.001", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0959475210000289", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S030", "title": "Effectiveness of Virtual Reality-Based Instruction on Students' Learning Outcomes in K-12 and Higher Education: A Meta-Analysis", "authors": ["Merchant, Z.", "Goetz, E.", "Cifuentes, L.", "Keeney-Kennicutt, W.", "Davis, T."], "year": 2014, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Meta-Analyse zur Wirksamkeit VR-basierter Instruktion auf Lernergebnisse in K-12 und Hochschule. Spiele (d = 0,51), Simulationen (d = 0,41) und virtuelle Welten (d = 0,41) zeigten positive Effekte. Simulationen waren besonders wirksam bei der Förderung prozeduralen Wissens.", "doi": "10.1016/j.compedu.2013.07.033", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131513002108", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S031", "title": "A Systematic Review of Immersive Virtual Reality Applications for Higher Education: Design Elements, Lessons Learned, and Research Agenda", "authors": ["Radianti, J.", "Majchrzak, T.", "Fromm, J.", "Wohlgenannt, I."], "year": 2020, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Systematisches Review von 38 Studien zu immersiven VR-Anwendungen in der Hochschulbildung. Analysiert Lerninhalte, VR-Designelemente und zugrundeliegende Lerntheorien. Identifiziert Forschungslücken bei der theoretischen Fundierung und der Evaluation langfristiger Lerneffekte.", "doi": "10.1016/j.compedu.2019.103778", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131519303276", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S032", "title": "Visible Learning: The Sequel — A Synthesis of Over 2,100 Meta-Analyses Relating to Achievement", "authors": ["Hattie, J."], "year": 2023, "journal": "Routledge", "type": "book", "lang": "en", "authority": 4, "recency": 3, "relevance": 1, "score": 8, "badges": ["book"], "abstract": "Aktualisierte Synthese von über 2.100 Meta-Analysen zu Einflussfaktoren auf schulischen Lernerfolg. Erweitert das ursprüngliche Modell um digitale Technologien, sozial-emotionales Lernen und schulweite Faktoren. Durchschnittliche Effektstärke d = 0,40 als Benchmark für bedeutsame Interventionen.", "doi": null, "url": "https://www.routledge.com/Visible-Learning-The-Sequel/Hattie/p/book/9781032462035", "local": null, "retrieved": "2026-04-09", "notes": "Hattie-Update mit Technologie-Dimension", "download_status": null, "local_file": null, "tags": []}, {"id": "S033", "title": "Implementing Kolb's Experiential Learning Cycle by Linking Real Experience, Case-Based Discussion and Simulation", "authors": ["Wijnen-Meijer, M.", "Brandhuber, T.", "Schneider, A.", "Berberat, P."], "year": 2022, "journal": "Journal of Medical Education and Curricular Development", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 1, "score": 6, "badges": ["peer", "openaccess"], "abstract": "Studie zur praktischen Umsetzung von Kolbs Lernzyklus durch Verknüpfung realer Erfahrung, fallbasierter Diskussion und Simulation. Kursdesign an der TU München integriert alle vier Phasen des Erfahrungslernens. Zeigt, wie der Lernzyklus als Framework für simulationsbasierte Lehrveranstaltungen dient.", "doi": "10.1177/23821205221091511", "url": "https://journals.sagepub.com/doi/10.1177/23821205221091511", "local": null, "retrieved": "2026-04-09", "notes": "TU München, Kolb + Simulation", "download_status": null, "local_file": null, "tags": []}, {"id": "S034", "title": "Foundations of Game-Based Learning", "authors": ["Plass, J.", "Homer, B.", "Kinzer, C."], "year": 2015, "journal": "Educational Psychologist", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Theoretischer Rahmen für spielbasiertes Lernen aus kognitiver, motivationaler, affektiver und soziokultureller Perspektive. Definiert Game-Based Learning und Gamification, beschreibt Designelemente die kognitive und affektive Engagement fördern. Zentral für das Verständnis von Simulationsspielen im Unterricht.", "doi": "10.1080/00461520.2015.1122533", "url": "https://www.tandfonline.com/doi/abs/10.1080/00461520.2015.1122533", "local": null, "retrieved": "2026-04-09", "notes": "Game-Based Learning Theorie", "download_status": null, "local_file": null, "tags": []}, {"id": "S035", "title": "Computer Gaming and Interactive Simulations for Learning: A Meta-Analysis", "authors": ["Vogel, J.", "Vogel, D.", "Cannon-Bowers, J.", "Bowers, C.", "Muse, K.", "Wright, M."], "year": 2006, "journal": "Journal of Educational Computing Research", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer"], "abstract": "Frühe Meta-Analyse von 32 Studien (1986 – 2003) zu kognitiven und einstellungsbezogenen Ergebnissen von Lernspielen und interaktiven Simulationen. Spiele und Simulationen führten zu signifikant höheren kognitiven (z = 6,05) und einstellungsbezogenen (z = 13,74) Ergebnissen als traditioneller Unterricht.", "doi": "10.2190/FLHV-K4WA-WPVQ-H0YM", "url": "https://journals.sagepub.com/doi/10.2190/FLHV-K4WA-WPVQ-H0YM", "local": null, "retrieved": "2026-04-09", "notes": "Historische Meta-Analyse", "download_status": null, "local_file": null, "tags": []}, {"id": "S036", "title": "Understanding Cognitive Load in Digital and Online Learning: A New Perspective on Extraneous Cognitive Load", "authors": ["Skulmowski, A.", "Xu, K."], "year": 2022, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Neukonzeptualisierung der extrinsischen kognitiven Belastung in digitalen Lernumgebungen. Interaktive Medien, Immersion, Realismus und redundante Elemente können aufgabenirrelevante kognitive Belastung erzeugen und gleichzeitig Motivation und Lernen fördern. Besonders relevant für das Design von Simulationen.", "doi": "10.1007/s10648-021-09624-7", "url": "https://link.springer.com/article/10.1007/s10648-021-09624-7", "local": null, "retrieved": "2026-04-09", "notes": "CLT + digitale Lernmedien", "download_status": null, "local_file": null, "tags": []}, {"id": "S037", "title": "Systematic Review and Meta-Analysis of the Impact of Virtual Experiments on Students' Learning Effectiveness", "authors": ["Luo, H.", "Li, G.", "Feng, Q.", "Yang, Y.", "Zuo, M."], "year": 2022, "journal": "Interactive Learning Environments", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse zum Einfluss virtueller Experimente auf die Lernwirksamkeit. Identifiziert fünf moderierende Variablen: Fachgebiet, Bildungsstufe, Stichprobengröße, Experimentdauer und virtuelle Form. Virtuelle Experimente zeigten insgesamt positive Effekte auf konzeptuelles Verständnis und Experimentierfertigkeiten.", "doi": "10.1080/10494820.2022.2072898", "url": "https://www.tandfonline.com/doi/abs/10.1080/10494820.2022.2072898", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S038", "title": "A Synthetic Review of Learning Theories, Elements and Virtual Environment Simulation Types to Improve Learning Within Higher Education", "authors": ["Sheridan, S.", "Scoular, C."], "year": 2024, "journal": "Thinking Skills and Creativity", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Syntheseüberblick über Lerntheorien, Designelemente und Simulationstypen virtueller Lernumgebungen in der Hochschulbildung. Verknüpft konstruktivistische, kognitivistische und sozial-konstruktivistische Theorien mit konkreten Simulationsformaten und identifiziert wirksame Kombinationen.", "doi": "10.1016/j.tsc.2024.101693", "url": "https://www.sciencedirect.com/science/article/pii/S1871187124002736", "local": null, "retrieved": "2026-04-09", "notes": "Lerntheorien + Simulationstypen", "download_status": null, "local_file": null, "tags": []}, {"id": "S039", "title": "Effectiveness of Virtual Laboratory in Engineering Education: A Meta-Analysis", "authors": ["Gamage, S.", "Ayres, J.", "Behrend, M.", "Smith, E."], "year": 2024, "journal": "PLOS ONE", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Meta-Analyse zur Wirksamkeit virtueller Laboratorien in der Ingenieurausbildung mit Effektstärke g = 0,686. Die höchsten Effekte zeigten sich bei Lernmotivation (g = 3,571) und Lernengagement (g = 2,888). Virtuelle Labore können physische Labore nicht vollständig ersetzen, aber Motivation und Engagement signifikant steigern.", "doi": "10.1371/journal.pone.0316269", "url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0316269", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S040", "title": "Sweller's Cognitive Load Theory and Educational Technology", "authors": ["Sweller, J."], "year": 2020, "journal": "Educational Technology Research and Development", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Anwendung der Cognitive Load Theory auf Bildungstechnologie durch ihren Begründer. Diskutiert, wie CLT-Prinzipien das Design digitaler Lernumgebungen einschließlich Simulationen leiten können. Betont die Unterscheidung zwischen intrinsischer und extrinsischer kognitiver Belastung bei technologiegestütztem Lernen.", "doi": "10.1007/s11423-019-09701-3", "url": "https://link.springer.com/article/10.1007/s11423-019-09701-3", "local": null, "retrieved": "2026-04-09", "notes": "CLT + Bildungstechnologie", "download_status": null, "local_file": null, "tags": []}, {"id": "S043", "title": "The Best of Two Worlds: A Systematic Review on Combining Real and Virtual Experiments in Science Education", "authors": ["Woerner, S.", "Kuhn, J.", "Scheiter, K."], "year": 2022, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Systematisches Review von 42 Studien zur Kombination realer und virtueller Experimente. Kombinationen fördern konzeptuelles Verständnis besser als einzelne Formen.", "doi": "10.3102/00346543221079417", "url": "https://journals.sagepub.com/doi/10.3102/00346543221079417", "local": null, "retrieved": "2026-04-09", "notes": "Kombination real + virtuell", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S044", "title": "Synthesizing Results From Empirical Research on Computer-Based Scaffolding in STEM Education: A Meta-Analysis", "authors": ["Belland, B.", "Walker, A.", "Kim, N.", "Lefler, M."], "year": 2017, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Meta-Analyse von 144 Studien zu computerbasiertem Scaffolding in MINT. Durchgängig positiver Effekt (g = 0,46) auf kognitive Ergebnisse.", "doi": "10.3102/0034654316670999", "url": "https://journals.sagepub.com/doi/10.3102/0034654316670999", "local": null, "retrieved": "2026-04-09", "notes": "Scaffolding Meta-Analyse", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S045", "title": "Meta-Analysis of Inquiry-Based Learning: Effects of Guidance", "authors": ["Lazonder, A.", "Harmsen, R."], "year": 2016, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Meta-Analyse von 72 Studien: Anleitung zeigt positive Effekte auf Lernaktivitäten (d = 0,66), Aufgabenerfolg (d = 0,71) und Lernergebnisse (d = 0,50).", "doi": "10.3102/0034654315627366", "url": "https://journals.sagepub.com/doi/abs/10.3102/0034654315627366", "local": null, "retrieved": "2026-04-09", "notes": "Guidance beim Inquiry Learning", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S046", "title": "Phases of inquiry-based learning: Definitions and the inquiry cycle", "authors": ["Pedaste, M.", "Maeots, M.", "Siiman, L.", "de Jong, T.", "van Riesen, S.", "Kamp, E.", "Manoli, C.", "Zacharia, Z.", "Tsourlidaki, E."], "year": 2015, "journal": "Educational Research Review", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Systematisches Review zur Definition der Inquiry-Phasen. Fünf Hauptphasen: Orientierung, Konzeptualisierung, Investigation, Schlussfolgerung, Diskussion.", "doi": "10.1016/j.edurev.2015.02.003", "url": "https://www.sciencedirect.com/science/article/pii/S1747938X15000068", "local": null, "retrieved": "2026-04-09", "notes": "Inquiry-Zyklus Rahmenmodell", "download_status": null, "local_file": null, "tags": []}, {"id": "S048", "title": "Blending physical and virtual manipulatives: An effort to improve students' conceptual understanding", "authors": ["Olympiou, G.", "Zacharia, Z."], "year": 2012, "journal": "Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Kombination physischer und virtueller Manipulative fördert konzeptuelles Verständnis signifikant stärker als jede einzelne Form.", "doi": "10.1002/sce.20463", "url": "https://onlinelibrary.wiley.com/doi/full/10.1002/sce.20463", "local": null, "retrieved": "2026-04-09", "notes": "Blending-Framework", "download_status": null, "local_file": null, "tags": []}, {"id": "S049", "title": "The use of a computer simulation to promote conceptual change: A quasi-experimental study", "authors": ["Trundle, K.", "Bell, R."], "year": 2010, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Quasi-experimentelle Studie mit 157 Lehramtsstudierenden. Simulation ebenso wirksam wie Naturbeobachtung bei Konzeptwandel.", "doi": "10.1016/j.compedu.2009.10.013", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131509002978", "local": null, "retrieved": "2026-04-09", "notes": "Conceptual Change", "download_status": null, "local_file": null, "tags": []}, {"id": "S050", "title": "Learning outcome achievement in non-traditional versus traditional laboratories: A review of the empirical research", "authors": ["Brinson, J."], "year": 2015, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Review von 56 Vergleichsstudien: 87 % zeigen gleiche oder bessere Ergebnisse in virtuellen Labors. Minds-on-Engagement wichtiger als Hands-on.", "doi": "10.1016/j.compedu.2015.07.003", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131515300087", "local": null, "retrieved": "2026-04-09", "notes": "Virtuell gleichwertig oder besser", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S051", "title": "Scientific Discovery Learning with Computer Simulations of Conceptual Domains", "authors": ["de Jong, T.", "van Joolingen, W."], "year": 1998, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Grundlegendes Review zum entdeckenden Lernen mit Simulationen. Analysiert Lernschwierigkeiten und instruktionale Unterstützung.", "doi": "10.3102/00346543068002179", "url": "https://journals.sagepub.com/doi/10.3102/00346543068002179", "local": null, "retrieved": "2026-04-09", "notes": "Historisches Grundlagenwerk", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S055", "title": "A Study of Educational Simulations Part II -- Interface Design", "authors": ["Adams, W.", "Reid, S.", "LeMaster, R.", "McKagan, S.", "Perkins, K.", "Dubson, M.", "Wieman, C."], "year": 2008, "journal": "Journal of Interactive Learning Research", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Empirisch fundierte Interface-Design-Richtlinien für Bildungssimulationen. Intuitive Gestaltung ist entscheidend.", "doi": null, "url": "https://phet.colorado.edu/publications/archive/PhET%20interview%20Paper%20Part%20II.pdf", "local": null, "retrieved": "2026-04-09", "notes": "Interface-Design", "download_status": null, "local_file": null, "tags": []}, {"id": "S056", "title": "The Impact of Computer Simulation on Students' Conceptual Understanding in K-12 Science Education: A Meta-Analysis", "authors": ["Hsu, Y.", "Ching, Y."], "year": 2025, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer"], "abstract": "Aktuelle Meta-Analyse: große Gesamteffektstärke g = 0,898 für Simulationen auf konzeptuelles Verständnis in K-12.", "doi": "10.1007/s10956-025-10264-7", "url": "https://link.springer.com/article/10.1007/s10956-025-10264-7", "local": null, "retrieved": "2026-04-09", "notes": "Sehr aktuell, große Effektstärke", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S058", "title": "Exploring effectiveness of simulation-based inquiry learning with integration of formative assessment", "authors": ["Chen, S.", "Law, V."], "year": 2016, "journal": "Journal of Computers in Education", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Kombination von Simulation und formativer Bewertung fördert konzeptuelles Lernen stärker als Simulation allein.", "doi": "10.1007/s40692-015-0037-y", "url": "https://link.springer.com/article/10.1007/s40692-015-0037-y", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S059", "title": "When the whole is greater than the sum of its parts: Combining real and virtual experiments in science education", "authors": ["Woerner, S.", "Kuhn, J.", "Scheiter, K."], "year": 2023, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer"], "abstract": "Empirische Studie: Kombination realer und virtueller Experimente fördert konzeptuelles Verständnis stärker als einzelne Formen.", "doi": "10.1016/j.compedu.2023.104781", "url": "https://www.sciencedirect.com/science/article/pii/S0360131523000222", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S060", "title": "Simulation-Based Inquiry Learning and Computer Modeling: Pitfalls and Potentials", "authors": ["Mulder, Y.", "Lazonder, A.", "de Jong, T."], "year": 2015, "journal": "Simulation & Gaming", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Verbindung von simulationsbasiertem Inquiry-Lernen und Computermodellierung. Analysiert Fallstricke und Potenziale.", "doi": "10.1177/1046878115577159", "url": "https://journals.sagepub.com/doi/10.1177/1046878115577159", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S061", "title": "Fostering elementary school students' understanding of simple electricity by combining simulation and laboratory activities", "authors": ["Jaakkola, T.", "Nurmi, S."], "year": 2008, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Kombination Simulation + Labor bei Grundschulkindern zeigte beste konzeptuelle Entwicklung. Labor allein blieb auf elementarem Niveau.", "doi": "10.1111/j.1365-2729.2008.00266.x", "url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1365-2729.2008.00266.x", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S062", "title": "The Past, Present, and Future of the Cognitive Theory of Multimedia Learning", "authors": ["Mayer, R."], "year": 2024, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Rückblick und Ausblick auf CTML durch ihren Begründer. Aktuelle Erweiterungen für immersive und interaktive Medien.", "doi": "10.1007/s10648-023-09842-1", "url": "https://link.springer.com/article/10.1007/s10648-023-09842-1", "local": null, "retrieved": "2026-04-09", "notes": "Aktuellste CTML durch Mayer", "download_status": null, "local_file": null, "tags": []}, {"id": "S063", "title": "A systematic review of immersive VR applications for higher education", "authors": ["Radianti, J.", "Majchrzak, T.", "Fromm, J.", "Wohlgenannt, I."], "year": 2020, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "VR-Anwendungen in der Hochschulbildung: Designelemente, Lerntheorien, Forschungsagenda.", "doi": "10.1016/j.compedu.2019.103778", "url": "https://www.sciencedirect.com/science/article/pii/S0360131519303276", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S065", "title": "The Effect of Physical and Virtual Inquiry-Based Experiments on Students' Attitudes and Learning", "authors": ["Tüllüce, H.", "Cecen, M."], "year": 2024, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Keine signifikanten Unterschiede zwischen physischen und virtuellen Inquiry-Experimenten. Beide gleichwertig einsetzbar.", "doi": "10.1007/s10956-023-10088-3", "url": "https://link.springer.com/article/10.1007/s10956-023-10088-3", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S066", "title": "Synergistic scaffolding in promoting learners' conceptual understanding in simulated inquiry-based learning", "authors": ["Mchunu, S.", "Naidoo, J."], "year": 2025, "journal": "Disciplinary and Interdisciplinary Science Education Research", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Lehrer- und Simulations-Scaffolding gemeinsam wirksamer als einzeln. Synergistisches Scaffolding-Modell.", "doi": "10.1186/s43031-025-00142-y", "url": "https://link.springer.com/article/10.1186/s43031-025-00142-y", "local": null, "retrieved": "2026-04-09", "notes": "Synergistisches Scaffolding", "download_status": null, "local_file": null, "tags": []}, {"id": "S067", "title": "Two comparative studies of computer simulations and experiments as learning tools", "authors": ["Kapici, H.", "Akcay, H.", "de Jong, T."], "year": 2022, "journal": "Instructional Science", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Vergleichbare Lernergebnisse bei Simulationen und realen Experimenten. Simulationen bieten Vorteile bei Visualisierung und Wiederholbarkeit.", "doi": "10.1007/s11251-021-09566-1", "url": "https://link.springer.com/article/10.1007/s11251-021-09566-1", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S068", "title": "Teaching geography with GIS: a systematic review, 2010-2024", "authors": ["Yanto, B.", "Putra, A."], "year": 2025, "journal": "Science Education Quarterly", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Review von 257 Artikeln zu GIS im Geografieunterricht. GIS fördert räumliches Denken, Inquiry und Problemlösung.", "doi": null, "url": "https://acnsci.org/journal/index.php/seq/article/view/903", "local": null, "retrieved": "2026-04-09", "notes": "GIS im Geographieunterricht", "download_status": null, "local_file": null, "tags": []}, {"id": "S069", "title": "Designing Effective Feedback Messages in Serious Games and Simulations", "authors": ["Johnson, C.", "Bailey, S.", "Van Buskirk, W."], "year": 2017, "journal": "Simulation & Gaming", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Wirksames Feedback muss zeitnah, spezifisch, konstruktiv und handlungsorientiert sein.", "doi": "10.1177/1046878116672113", "url": "https://journals.sagepub.com/doi/10.1177/1046878116672113", "local": null, "retrieved": "2026-04-09", "notes": "Feedback-Design", "download_status": null, "local_file": null, "tags": []}, {"id": "S070", "title": "Does combining real and virtual experiments improve learning achievement in physics? A meta-analysis (2001-2021)", "authors": ["Wang, J.", "Guo, L.", "Xu, Y."], "year": 2024, "journal": "Educational Research Review", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer"], "abstract": "Meta-Analyse: Kombination realer und virtueller Experimente signifikant wirksamer als reale allein.", "doi": "10.1016/j.edurev.2024.100592", "url": "https://www.sciencedirect.com/science/article/abs/pii/S1747938X24000708", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S072", "title": "Computer Simulations to Support Science Instruction: Critical Review (dup check)", "authors": ["Smetana, L.", "Bell, R."], "year": 2012, "journal": "International Journal of Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Kritisches Review von 61 Studien. Vier Erfolgsbedingungen für Simulationen.", "doi": "10.1080/09500693.2011.605182", "url": "https://www.tandfonline.com/doi/abs/10.1080/09500693.2011.605182", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S074", "title": "The guided discovery principle in multimedia learning", "authors": ["de Jong, T.", "Lazonder, A."], "year": 2014, "journal": "Cambridge University Press", "type": "book", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer", "book"], "abstract": "Kapitel im Cambridge Handbook zur geführten Entdeckung in multimedialen Lernumgebungen. Drei Arten von Hilfestellung: Heuristiken, Scaffolds, direkte Information.", "doi": null, "url": "https://psycnet.apa.org/record/2015-00153-015", "local": null, "retrieved": "2026-04-09", "notes": "Guided Discovery Principle", "download_status": null, "local_file": null, "tags": []}, {"id": "S075", "title": "Phases of inquiry-based learning: Definitions and inquiry cycle (dup check)", "authors": ["Pedaste, M.", "Mäeots, M.", "Siiman, L.", "de Jong, T."], "year": 2015, "journal": "Educational Research Review", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Fünf Hauptphasen forschenden Lernens identifiziert.", "doi": "10.1016/j.edurev.2015.02.003", "url": "https://www.sciencedirect.com/science/article/pii/S1747938X15000068", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S076", "title": "Simulations in Science Education – Status Quo (dup check)", "authors": ["Stinken-Rösner, L."], "year": 2020, "journal": "Progress in Science Education (PriSE)", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Befragung von 76 Lehrkräften: 61 % nutzen Simulationen.", "doi": "10.25321/prise.2020.996", "url": "https://e-publishing.cern.ch/index.php/prise/article/view/996", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S077", "title": "The Cognitive Affective Model of Immersive Learning CAMIL (dup check)", "authors": ["Makransky, G.", "Petersen, G."], "year": 2021, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "CAMIL-Modell für VR-Lernen.", "doi": "10.1007/s10648-020-09586-2", "url": "https://link.springer.com/article/10.1007/s10648-020-09586-2", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S079", "title": "Does the use of GIS in geographical education yield better learning outcomes?", "authors": ["Yang, D.", "Wang, C.", "Qian, L."], "year": 2024, "journal": "Transactions in GIS", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Quasi-experimentelle Studie zum GIS-Einsatz am Thema Luftverschmutzung. GIS-Gruppe zeigt signifikant bessere Ergebnisse.", "doi": "10.1111/tgis.13142", "url": "https://onlinelibrary.wiley.com/doi/abs/10.1111/tgis.13142", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S080", "title": "Beyond Geospatial Inquiry — How Can We Integrate the Latest Technological Advances into Geography Education?", "authors": ["Lee, J."], "year": 2023, "journal": "Education Sciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Integration neuer Technologien (Open Data, Big Data, KI, Coding) in den Geographieunterricht.", "doi": "10.3390/educsci13111128", "url": "https://www.mdpi.com/2227-7102/13/11/1128", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S081", "title": "Learning and teaching through inquiry with geospatial technologies: A systematic review", "authors": ["Mašterová, V."], "year": 2023, "journal": "European Journal of Geography", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Review von 36 Studien zum Zusammenspiel von Geospatial-Technologien und forschendem Lernen.", "doi": "10.48088/ejg.v.mas.14.3.042.054", "url": "https://eurogeojournal.eu/index.php/egj/article/view/431", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S082", "title": "Teacher Guidance and On-the-Fly Scaffolding in Primary School Students' Inquiry Learning", "authors": ["Sasse, L."], "year": 2025, "journal": "Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Studie mit 164 Grundschüler*innen zu geplantem und spontanem Scaffolding. Problematisieren wirkt positiv auf prozedurales Wissen.", "doi": "10.1002/sce.21921", "url": "https://onlinelibrary.wiley.com/doi/full/10.1002/sce.21921", "local": null, "retrieved": "2026-04-09", "notes": "On-the-Fly Scaffolding", "download_status": null, "local_file": null, "tags": []}, {"id": "S083", "title": "Understanding the Role of Simulations in K-12 Mathematics and Science Teacher Education", "authors": ["Lishka, A.", "DeSchryver, M.", "Bowers, J."], "year": 2021, "journal": "Contemporary Issues in Technology and Teacher Education", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Konferenzbericht über Simulationen in der Lehrkräftebildung für MINT. Verschiedene Scaffolding-Typen beeinflussen die Modellierungsqualität.", "doi": null, "url": "https://citejournal.org/volume-21/issue-3-21/general/understanding-the-role-of-simulations-in-k-12-mathematics-and-science-teacher-education-outcomes-from-a-teacher-education-simulation-conference/", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S084", "title": "Digital simulations as pedagogical tool: How ready are science teachers?", "authors": ["Nandani, S.", "Raturi, S."], "year": 2024, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Mixed-Methods-Studie zur Bereitschaft von Lehrkräften für digitale Simulationen.", "doi": "10.1111/jcal.13071", "url": "https://onlinelibrary.wiley.com/doi/10.1111/jcal.13071", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S085", "title": "Enhancing professional development in digital STEM education: cross-disciplinary success factors", "authors": ["Schmit, S.", "Blauza, S.", "Heuckmann, B."], "year": 2025, "journal": "Frontiers in Psychology", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "IGTP-Modell für Lehrkräftefortbildung im digitalen MINT-Unterricht: Insight, Goal, Technique, Practice.", "doi": "10.3389/fpsyg.2025.1653606", "url": "https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2025.1653606/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S086", "title": "Impact of digitalization-related STEM teacher trainings with out-of-school student labs", "authors": ["Fokken, N.", "Großschedl, J."], "year": 2025, "journal": "Frontiers in Psychology", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Wirkung von Lehrkräftefortbildungen im digitalen MINT-Bereich in Kooperation mit Schülerlabors.", "doi": "10.3389/fpsyg.2025.1656648", "url": "https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2025.1656648/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S087", "title": "Emerging trends and effective strategies in STEM teacher professional development", "authors": ["Chen, X.", "Zhu, G."], "year": 2024, "journal": "Humanities and Social Sciences Communications", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 1, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Systematisches Review zu MINT-Lehrkräftefortbildung. Betont interdisziplinäre Integration und technologische Kompetenz.", "doi": "10.1057/s41599-024-04272-y", "url": "https://www.nature.com/articles/s41599-024-04272-y", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S088", "title": "Geographische Bildung in digitalen Kulturen (Pettig & Gryl Sammelband)", "authors": ["Pettig, F.", "Gryl, I."], "year": 2024, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "book", "austria"], "abstract": "Sammelband zu geographischer Bildung in digitalen Kulturen. Herausgegeben von Pettig (Uni Graz) und Gryl (Uni Duisburg-Essen).", "doi": "10.1007/978-3-662-66486-5", "url": "https://link.springer.com/book/10.1007/978-3-662-66486-5", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S089", "title": "Geographiedidaktik: Fachwissenschaftliche Grundlagen, fachdidaktische Bezüge, unterrichtspraktische Beispiele", "authors": ["Gryl, I.", "Lehner, M.", "Fleischhauer, T.", "Hoffmann, K."], "year": 2023, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "book"], "abstract": "Erstes deutschsprachiges Lehrbuch zur Geographiedidaktik, verfasst von 83 Autor*innen aus dem DACH-Raum.", "doi": "10.1007/978-3-662-65730-0", "url": "https://link.springer.com/book/10.1007/978-3-662-65730-0", "local": null, "retrieved": "2026-04-09", "notes": "Standardwerk Geographiedidaktik", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S090", "title": "Mündigkeit und digitale Geomedien — Implementation eines Fachkonzepts in der geographischen Lehrkräftebildung", "authors": ["Schulze, U.", "Kanwischer, D.", "Gryl, I.", "Budke, A."], "year": 2020, "journal": "AGIT — Journal für Angewandte Geoinformatik", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Fachdidaktisches Konzept für kritisch-reflexiven Umgang mit digitalen Geomedien in der Lehrkräftebildung.", "doi": null, "url": "https://gispoint.de/fileadmin/user_upload/paper_gis_open/AGIT_2020/537698011.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S091", "title": "Bildung, Raum und Digitalität: Geographische Bildung in einer Kultur der Digitalität", "authors": ["Kanwischer, D.", "Gryl, I."], "year": 2022, "journal": "Die Deutsche Schule (DDS)", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Verortung geographischer Bildung in einer Kultur der Digitalität. Digitale Raumkonstruktionen verändern den Bildungsbegriff.", "doi": null, "url": "https://www.pedocs.de/volltexte/2022/24321/pdf/DDS_2022_1_Kanwischer_Gryl_Bildung_Raum_und_Digitalitaet.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S092", "title": "Das eigene Leben nachhaltig gestalten. Zum neu verordneten Lehrplan für Geographie und wirtschaftliche Bildung", "authors": ["Pichler, H.", "Jekel, T.", "Koller, A.", "Vorage, M.", "Fridrich, C.", "Hinsch, S.", "Hofmann, P.", "Chreiska-Höbinger, C.", "Keller, L."], "year": 2023, "journal": "GW-Unterricht", "type": "journal", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "austria", "openaccess"], "abstract": "Kommentar zum 2023 neu verordneten österreichischen Lehrplan für Geografie und wirtschaftliche Bildung der Sekundarstufe I.", "doi": "10.1553/gw-unterricht170s44", "url": "https://austriaca.at/0xc1aa5576_0x003e5c65.pdf", "local": null, "retrieved": "2026-04-09", "notes": "Österreichischer GW-Lehrplan 2023", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S093", "title": "Geographische Bildung in digitalen Kulturen — Distance Learning an österreichischen Sekundarschulen", "authors": ["Oberrauch, A.", "Jekel, T.", "Breitfuss-Horner, A."], "year": 2023, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "book", "austria"], "abstract": "Delphi-Studie zum Distance Learning im Fach Geographie an österreichischen Schulen. Leitet Handlungsempfehlungen ab.", "doi": "10.1007/978-3-662-66486-5_32", "url": "https://link.springer.com/chapter/10.1007/978-3-662-66486-5_32", "local": null, "retrieved": "2026-04-09", "notes": "Delphi-Studie Österreich", "download_status": null, "local_file": null, "tags": []}, {"id": "S094", "title": "Die Professionalisierung von Lehrkräften für eine geographische Bildung in digitalen Kulturen", "authors": ["Pettig, F.", "Gryl, I."], "year": 2024, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "book", "austria"], "abstract": "Kompetenzen für kritisch-reflexiven Einsatz digitaler Geomedien und nötige Fortbildungsstrukturen.", "doi": "10.1007/978-3-662-66486-5_29", "url": "https://link.springer.com/chapter/10.1007/978-3-662-66486-5_29", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S095", "title": "Geomedien und Kompetenzentwicklung — ein Modell zur reflexiven Kartenarbeit im Unterricht", "authors": ["Gryl, I.", "Kanwischer, D."], "year": 2011, "journal": "Zeitschrift für Didaktik der Naturwissenschaften", "type": "journal", "lang": "de", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer"], "abstract": "Kompetenzmodell für reflexive Kartenarbeit im Geographieunterricht.", "doi": null, "url": "https://www.pedocs.de/volltexte/2024/31693/pdf/ZfDN_2011_Gryl_Kanwischer_Geomedien_und_Kompetenzentwicklung_ein_Modell.pdf", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk Geomedienkompetenz", "download_status": null, "local_file": null, "tags": []}, {"id": "S096", "title": "Towards Enhanced Understanding of Landforms, Geohazards through VR in Education: GeoVT Project", "authors": ["Migoń, P.", "Pijet-Migoń, E.", "Guardia, V."], "year": 2024, "journal": "Geosciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "EU-Erasmus+-Projekt GeoVT: VR-Plattform für interaktive Exkursionen zu Geomorphologie und Naturgefahren.", "doi": "10.3390/geosciences14050127", "url": "https://www.mdpi.com/2076-3263/14/5/127", "local": null, "retrieved": "2026-04-09", "notes": "VR Naturgefahren", "download_status": null, "local_file": null, "tags": []}, {"id": "S097", "title": "Educational Seismology through an Immersive VR Game: VRQuake", "authors": ["Maragkou, V.", "Rangoussi, M.", "Kalogeras, I.", "Melis, N."], "year": 2023, "journal": "Education Sciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "VR-Anwendung VRQuake für Erdbeben-Bildung. Positive Usability und Bildungspotenzial.", "doi": "10.3390/educsci13111088", "url": "https://www.mdpi.com/2227-7102/13/11/1088", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S098", "title": "PhET Simulations in Elementary Schools (Arabit/Galang)", "authors": ["Arabit, J.", "Galang, J."], "year": 2024, "journal": "Multimodal Technologies and Interaction", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "PhET fördert aktives Engagement, Problemlösefähigkeiten und konzeptuelles Verständnis in Grundschulen.", "doi": "10.3390/mti8110105", "url": "https://www.mdpi.com/2414-4088/8/11/105", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S099", "title": "Geospatial Technologies in Geography Education", "authors": ["de Miguel González, R.", "Donert, K.", "Koutsopoulos, K."], "year": 2019, "journal": "Springer", "type": "book", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "book"], "abstract": "IGU-Sammelband zu Geospatial-Technologien im Geographieunterricht. Erfahrungen aus formaler und informeller Bildung.", "doi": "10.1007/978-3-030-17783-6", "url": "https://link.springer.com/book/10.1007/978-3-030-17783-6", "local": null, "retrieved": "2026-04-09", "notes": "IGU Sammelband", "download_status": null, "local_file": null, "tags": []}, {"id": "S100", "title": "Digitale Geomedien — Kapitel im Lehrbuch Geographiedidaktik", "authors": ["Kanwischer, D.", "Schulze, U."], "year": 2023, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "book"], "abstract": "Digitale Geomedien im Geographieunterricht. Spatial Citizenship als theoretische Rahmung.", "doi": "10.1007/978-3-662-65730-0_4", "url": "https://link.springer.com/chapter/10.1007/978-3-662-65730-0_4", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S105", "title": "Transforming Science Education in Elementary Schools: PhET Simulations", "authors": ["Alassaf, H.", "Alnajdi, S."], "year": 2024, "journal": "Multimodal Technologies and Interaction", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "PhET-Simulationen verbesserten signifikant das konzeptuelle Verständnis und die Lernmotivation in der Grundschulbildung.", "doi": "10.3390/mti8110105", "url": "https://www.mdpi.com/2414-4088/8/11/105", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S106", "title": "Integrating PhET Simulations into Elementary Science Education: A Qualitative Analysis", "authors": ["Alassaf, H."], "year": 2023, "journal": "Education Sciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Qualitative Analyse der PhET-Integration im Sachunterricht der Grundschule. Spielerische Umgebung unterstützt exploratives Lernen.", "doi": "10.3390/educsci13090884", "url": "https://www.mdpi.com/2227-7102/13/9/884", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S108", "title": "Gamification in Education: Why, Where, When, and How? -- A Systematic Review", "authors": ["Zeybek, N.", "Saygi, E."], "year": 2024, "journal": "Games and Culture", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Systematisches Review zur Gamification in der Bildung. Punkte, Abzeichen und Bestenlisten sind die häufigsten Spielelemente.", "doi": "10.1177/15554120231158625", "url": "https://journals.sagepub.com/doi/abs/10.1177/15554120231158625", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S109", "title": "Exploring the Impact of Gamification on Students' Academic Performance: A Meta-Analysis (2008-2023)", "authors": ["Zeng, J.", "Sun, D.", "Looi, C.", "Fan, A."], "year": 2024, "journal": "British Journal of Educational Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 1, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse: Gamification zeigt moderat positiven Effekt (Hedges' g = 0,782). Quests und Storytelling besonders wirksam.", "doi": "10.1111/bjet.13471", "url": "https://bera-journals.onlinelibrary.wiley.com/doi/full/10.1111/bjet.13471", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S110", "title": "The Gamification of Learning: A Meta-analysis", "authors": ["Sailer, M.", "Homner, L."], "year": 2020, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Meta-Analyse: Gamification wirkt auf kognitive (g = 0,49), motivationale (g = 0,36) und verhaltensbezogene Outcomes (g = 0,25).", "doi": "10.1007/s10648-019-09498-w", "url": "https://link.springer.com/article/10.1007/s10648-019-09498-w", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S111", "title": "A Meta-Analysis of the Cognitive and Motivational Effects of Serious Games", "authors": ["Wouters, P.", "van Nimwegen, C.", "van Oostendorp, H.", "van der Spek, E."], "year": 2013, "journal": "Journal of Educational Psychology", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Serious Games effektiver als konventioneller Unterricht beim Lernen (d = 0,29) und Wissensspeicherung (d = 0,36), aber nicht signifikant motivierender.", "doi": "10.1037/a0031311", "url": "https://psycnet.apa.org/record/2013-03484-001", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S112", "title": "Virtual Reality and Gamification in Education: A Systematic Review", "authors": ["Huang, Y.", "Richter, E.", "Kleickmann, T.", "Richter, D."], "year": 2024, "journal": "Educational Technology Research and Development", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Review zur Kombination von VR und Gamification in der Bildung. Potenzial zur Steigerung von Engagement und Lernerfolg.", "doi": "10.1007/s11423-024-10351-3", "url": "https://link.springer.com/article/10.1007/s11423-024-10351-3", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S113", "title": "Affordances of Augmented Reality in Science Learning: Suggestions for Future Research", "authors": ["Cheng, K.", "Tsai, C."], "year": 2013, "journal": "Journal of Science Education and Technology", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer"], "abstract": "Frühes Review zu AR-Affordanzen im naturwissenschaftlichen Lernen. Bildbasierte AR fördert räumliches Vorstellungsvermögen.", "doi": "10.1007/s10956-012-9405-9", "url": "https://link.springer.com/article/10.1007/s10956-012-9405-9", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S114", "title": "The Cognitive Affective Model of Immersive Learning (CAMIL)", "authors": ["Makransky, G.", "Petersen, G."], "year": 2021, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Theoretisches Modell des Lernens in immersiver VR. Beschreibt sechs affektive und kognitive Faktoren und deren Einfluss auf Wissenserwerb.", "doi": "10.1007/s10648-020-09586-2", "url": "https://link.springer.com/article/10.1007/s10648-020-09586-2", "local": null, "retrieved": "2026-04-09", "notes": "Zentrales Theoriemodell VR-Lernen", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S117", "title": "Systematic Review of Mobile Augmented Reality Applications in Geography Education", "authors": ["Schmidt, R.", "Stumpe, B."], "year": 2025, "journal": "Review of Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Review von 18 Studien zu mobilen AR-Anwendungen im Geographieunterricht. Positive Effekte auf affektive, verhaltensbezogene und kognitive Lernergebnisse.", "doi": "10.1002/rev3.70042", "url": "https://bera-journals.onlinelibrary.wiley.com/doi/full/10.1002/rev3.70042", "local": null, "retrieved": "2026-04-09", "notes": "AR + Geographie", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S118", "title": "Leading VR and AR in Education: Bibliometric and Content Analysis (2018-2022)", "authors": ["Zhao, X.", "Ren, Y.", "Cheah, K."], "year": 2023, "journal": "SAGE Open", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Bibliometrische Analyse von VR/AR in der Bildung. AR und VR ermöglichen virtuelle Exkursionen an schwer zugängliche Orte.", "doi": "10.1177/21582440231190821", "url": "https://journals.sagepub.com/doi/10.1177/21582440231190821", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S119", "title": "VR and AR-Supported K-12 STEM Learning: Trends, Advantages and Challenges", "authors": ["Li, Q.", "Cho, H.", "Cosso, J.", "Maeda, Y."], "year": 2024, "journal": "Education and Information Technologies", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Review von 117 Artikeln zu VR/AR im K-12 MINT-Lernen. Schwerpunkt auf naturwissenschaftlichem Lernen.", "doi": "10.1007/s10639-024-13210-z", "url": "https://link.springer.com/article/10.1007/s10639-024-13210-z", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S120", "title": "Ten Years of Augmented Reality in Education: A Meta-Analysis of (Quasi-) Experimental Studies", "authors": ["Garzón, J.", "Baldiris, S.", "Gutiérrez, J.", "Pavón, J."], "year": 2022, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse von zehn Jahren AR-Forschung im Bildungsbereich. AR zeigt insgesamt positive Wirkung auf Lernerfolg.", "doi": "10.1016/j.compedu.2022.104606", "url": "https://www.sciencedirect.com/science/article/pii/S0360131522002123", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S121", "title": "AI-Driven Adaptive Learning for Sustainable Educational Transformation", "authors": ["Strielkowski, W.", "Grebennikova, V.", "Lisovskiy, A.", "Rakhimova, G.", "Vasileva, T."], "year": 2025, "journal": "Sustainable Development", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Transformation des Bildungswesens durch KI-gestütztes adaptives Lernen. COVID-19 beschleunigte die Akzeptanz.", "doi": "10.1002/sd.3221", "url": "https://onlinelibrary.wiley.com/doi/10.1002/sd.3221", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S122", "title": "Development of a GenAI-Enhanced Simulation to Enhance Problem-Solving Skills for Pre-Service Teachers", "authors": ["Lim, J.", "Lee, U.", "Koh, J.", "Jeong, Y."], "year": 2025, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer"], "abstract": "Generative-KI-erweiterte Simulation für Lehramtsstudierende. Beide Simulationsgruppen zeigten signifikante Verbesserungen gegenüber textbasiertem Ansatz.", "doi": "10.1016/j.compedu.2025.105306", "url": "https://www.sciencedirect.com/science/article/pii/S0360131525000740", "local": null, "retrieved": "2026-04-09", "notes": "GenAI + Simulation", "download_status": null, "local_file": null, "tags": []}, {"id": "S123", "title": "Integrating Generative AI into STEM Education: Enhancing Conceptual Understanding", "authors": ["Cheng, Y.", "Tsai, C.", "Chen, M."], "year": 2025, "journal": "Disciplinary and Interdisciplinary Science Education Research", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Generative KI in der MINT-Bildung erleichtert Conceptual Change effektiver als konventioneller Unterricht.", "doi": "10.1186/s43031-025-00125-z", "url": "https://diser.springeropen.com/articles/10.1186/s43031-025-00125-z", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S124", "title": "Open Educational Resources, Student Efficacy, and User Perceptions: A Synthesis", "authors": ["Hilton, J."], "year": 2020, "journal": "Educational Technology Research and Development", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "Synthese: Lernende mit OER erzielen gleiche oder bessere Lernergebnisse bei erheblichen Kosteneinsparungen.", "doi": "10.1007/s11423-019-09700-4", "url": "https://link.springer.com/article/10.1007/s11423-019-09700-4", "local": null, "retrieved": "2026-04-09", "notes": "OER-Grundlagenwerk", "download_status": null, "local_file": null, "tags": []}, {"id": "S125", "title": "The Impact of Open Educational Resources on Student Achievement: A Meta-Analysis", "authors": ["Cho, K.", "Permzadian, V."], "year": 2024, "journal": "International Journal of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 1, "score": 8, "badges": ["peer"], "abstract": "OER-Kurse mit höheren Noten assoziiert (d = 0,17). Offene Lernressourcen qualitativ gleichwertig oder überlegen.", "doi": "10.1016/j.ijer.2024.102365", "url": "https://www.sciencedirect.com/science/article/pii/S0883035524000521", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S126", "title": "UNESCO Recommendation on Open Educational Resources (OER)", "authors": ["UNESCO"], "year": 2019, "journal": "UNESCO", "type": "report", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["institution", "openaccess"], "abstract": "Erstes internationales Normativdokument zu OER. Definiert fünf Handlungsfelder für offene Bildungsmaterialien.", "doi": null, "url": "https://www.unesco.org/en/legal-affairs/recommendation-open-educational-resources-oer", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S127", "title": "Simulations in Science Education -- Status Quo", "authors": ["Hoyer, C.", "Girwidz, R."], "year": 2020, "journal": "Progress in Science Education (PriSE)", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Befragung von 76 Lehrkräften: 61 % setzen Simulationen ein. Wichtigste Qualitätskriterien: wissenschaftliche Korrektheit, Fachsprache, freie Verfügbarkeit.", "doi": "10.25321/prise.2020.996", "url": "https://e-publishing.cern.ch/index.php/prise/article/view/996", "local": null, "retrieved": "2026-04-09", "notes": "Qualitätskriterien für Simulationen", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S128", "title": "Geographische Bildung in digitalen Kulturen", "authors": ["Pettig, F.", "Gryl, I."], "year": 2023, "journal": "Springer Spektrum", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["book", "peer"], "abstract": "Sammelband mit Perspektiven auf Digitalität und Medien in geographischen Bildungskontexten.", "doi": "10.1007/978-3-662-66486-5", "url": "https://link.springer.com/book/10.1007/978-3-662-66486-5", "local": null, "retrieved": "2026-04-09", "notes": "Geographie + Digitalität", "download_status": null, "local_file": null, "tags": []}, {"id": "S129", "title": "Mediendidaktik: Konzeption und Entwicklung digitaler Lernangebote", "authors": ["Kerres, M."], "year": 2018, "journal": "De Gruyter Oldenbourg", "type": "book", "lang": "de", "authority": 3, "recency": 1, "relevance": 1, "score": 5, "badges": ["book"], "abstract": "Standardwerk der Mediendidaktik. Interdisziplinäre Einführung in Grundlagen des Lernens mit Medien.", "doi": "10.1515/9783110456837", "url": "https://www.degruyterbrill.com/document/doi/10.1515/9783110456837/html", "local": null, "retrieved": "2026-04-09", "notes": "Deutschsprachiges Standardwerk", "download_status": null, "local_file": null, "tags": []}, {"id": "S130", "title": "Digital Simulations as a Pedagogical Tool: How Ready Are Science Teachers?", "authors": ["Nandani, S.", "Raturi, S."], "year": 2024, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Mixed-Methods-Studie zur Bereitschaft von Lehrkräften für den Einsatz digitaler Simulationen. Identifiziert Infrastruktur und Ausbildung als zentrale Hürden.", "doi": "10.1111/jcal.13071", "url": "https://onlinelibrary.wiley.com/doi/10.1111/jcal.13071", "local": null, "retrieved": "2026-04-09", "notes": "Lehrkräfte-Perspektive", "download_status": null, "local_file": null, "tags": []}, {"id": "S131", "title": "The Digital Divide in Online Education: Inequality in Digital Readiness of Students and Schools", "authors": ["Deursen, A.", "Helsper, E."], "year": 2022, "journal": "International Journal of Educational Technology in Higher Education", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 1, "score": 6, "badges": ["peer", "openaccess"], "abstract": "Untersucht die digitale Kluft im Online-Unterricht anhand der digitalen Bereitschaft von Schüler*innen und Schulen.", "doi": "10.1016/j.ijedro.2022.100173", "url": "https://www.sciencedirect.com/science/article/pii/S2666557322000295", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S132", "title": "Simulations to Teach Science Subjects: Connections Among Students' Engagement, Self-Confidence, Satisfaction, and Learning Styles", "authors": ["Almasri, F."], "year": 2022, "journal": "Education and Information Technologies", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Analyse der Wahrnehmungen von 1034 Studierenden beim Einsatz von Simulationen in Physik, Chemie und Biologie. Sehr hohes Engagement und hohe Zufriedenheit.", "doi": "10.1007/s10639-022-10940-w", "url": "https://link.springer.com/article/10.1007/s10639-022-10940-w", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S133", "title": "Understanding Cognitive Load in Digital and Online Learning: A New Perspective on Extraneous Cognitive Load", "authors": ["Skulmowski, A.", "Xu, K."], "year": 2022, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Neue Perspektive auf extrinsische kognitive Belastung in digitalen Lernumgebungen.", "doi": "10.1007/s10648-021-09624-7", "url": "https://link.springer.com/article/10.1007/s10648-021-09624-7", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S134", "title": "Assessment and Evaluation of Simulation-Based Learning in Higher Education and Professional Training", "authors": ["Chernikova, O.", "Stadler, M.", "Holzberger, D.", "Fischer, F."], "year": 2022, "journal": "Evaluation and Program Planning", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Einführender Beitrag zur Bewertung simulationsbasierter Lernumgebungen in der Hochschulbildung.", "doi": "10.1016/j.evalprogplan.2022.102117", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0191491X22000876", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S135", "title": "The Effects of Online Simulation-Based Collaborative Problem-Solving on Students' Problem-Solving, Communication and Collaboration Attitudes", "authors": ["Chen, M.", "She, H.", "Tsai, P."], "year": 2024, "journal": "Education and Information Technologies", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Studie zu simulationsbasiertem kollaborativem Problemlösen im Physikunterricht. Kollaboratives Problemlösen führte zu signifikant besseren Ergebnissen.", "doi": "10.1007/s10639-024-12609-y", "url": "https://link.springer.com/article/10.1007/s10639-024-12609-y", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S136", "title": "Mapping the Evolution of AI in Education: Toward a Co-Adaptive and Human-Centered Paradigm", "authors": ["Tahiru, F."], "year": 2025, "journal": "International Journal of Educational Technology in Higher Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 1, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Kartiert die Entwicklung von KI in der Bildung hin zu einem ko-adaptiven, menschenzentrierten Paradigma.", "doi": null, "url": "https://www.sciencedirect.com/science/article/pii/S2666920X25001535", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S137", "title": "Geographische Bildung in digitalen Kulturen: Perspektiven für Forschung und Lehre", "authors": ["Kanwischer, D.", "Schlottmann, A."], "year": 2023, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["book", "peer"], "abstract": "Sammelband mit 83 Autor*innen aus der deutschsprachigen Geographiedidaktik-Community. Enthält Beiträge zu digitalen Geomedien, Simulationen und VR im Geographieunterricht.", "doi": "10.1007/978-3-662-66486-5", "url": "https://link.springer.com/book/10.1007/978-3-662-66486-5", "local": null, "retrieved": "2026-04-09", "notes": "Zentrales deutschsprachiges Werk", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S138", "title": "A Scoping Review on Climate Change Education", "authors": ["Monroe, M.", "Plate, R.", "Oxarart, A.", "Bowers, A.", "Chaves, W."], "year": 2019, "journal": "PLOS Climate", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Scoping Review zur Klimabildung. Simulationen und Rollenspiele erwiesen sich als besonders engaging.", "doi": "10.1371/journal.pclm.0000356", "url": "https://journals.plos.org/climate/article?id=10.1371/journal.pclm.0000356", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S139", "title": "An Introduction to Agent-Based Modeling: Modeling Natural, Social, and Engineered Complex Systems with NetLogo", "authors": ["Wilensky, U.", "Rand, W."], "year": 2015, "journal": "MIT Press", "type": "book", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["book"], "abstract": "Umfassende Einführung in die agentenbasierte Modellierung mit NetLogo.", "doi": null, "url": "https://mitpress.mit.edu/9780262731898/an-introduction-to-agent-based-modeling/", "local": null, "retrieved": "2026-04-09", "notes": "Standardwerk zu NetLogo", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S140", "title": "Computer Simulations to Support Science Instruction and Learning: A Critical Review of the Literature", "authors": ["Smetana, L.", "Bell, R."], "year": 2012, "journal": "International Journal of Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Kritisches Review von 61 empirischen Studien zu Computersimulationen im naturwissenschaftlichen Unterricht.", "doi": "10.1080/09500693.2011.605182", "url": "https://www.tandfonline.com/doi/abs/10.1080/09500693.2011.605182", "local": null, "retrieved": "2026-04-09", "notes": "Viel zitiertes Grundlagenreview", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S141", "title": "The Learning Effects of Computer Simulations in Science Education", "authors": ["Rutten, N.", "Joolingen, W.", "Veen, J."], "year": 2012, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Review der quasi-experimentellen Forschung zum Lerneffekt von Computersimulationen im naturwissenschaftlichen Unterricht.", "doi": "10.1016/j.compedu.2011.07.017", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0360131511001758", "local": null, "retrieved": "2026-04-09", "notes": "Klassisches Review", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S142", "title": "Transforming Science Education in Elementary Schools: The Power of PhET Simulations in Enhancing Student Learning", "authors": ["Perkins, K.", "Moore, E.", "Lancaster, K."], "year": 2024, "journal": "Multimodal Technologies and Interaction", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "PhET-Simulationen im Grundschulunterricht: besonders effektiv für Engagement und Verständnis.", "doi": null, "url": "https://www.mdpi.com/2414-4088/8/11/105", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S143", "title": "Meta-Analysis of the Effectiveness of PhET Simulations in Physics Education", "authors": ["Sari, U.", "Pektas, H."], "year": 2024, "journal": "International Journal of Online and Biomedical Engineering", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Meta-Analyse mit Gesamteffektstärke d = 0,83. Besonders wirksam auf Sekundarstufen-Niveau.", "doi": null, "url": "https://online-journals.org/index.php/i-joe/article/view/59007", "local": null, "retrieved": "2026-04-09", "notes": "PhET Meta-Analyse", "download_status": null, "local_file": null, "tags": []}, {"id": "S144", "title": "Cognitive Load Theory: Emerging Trends and Innovations", "authors": ["Chen, O.", "Kalyuga, S."], "year": 2025, "journal": "Education Sciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Neue Trends in der CLT, inkl. Integration mit KI-gestützten adaptiven Lernsystemen und Simulationen.", "doi": null, "url": "https://www.mdpi.com/2227-7102/15/4/458", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S145", "title": "Challenging Cognitive Load Theory: The Role of Educational Neuroscience and Artificial Intelligence", "authors": ["Sweller, J.", "Paas, F.", "Renkl, A."], "year": 2024, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Systematisches Review, das CLT, Neuroscience und KI integriert. KI kann extrinsische kognitive Belastung reduzieren.", "doi": null, "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11852728/", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S146", "title": "The Power of Simulation for Climate Action: En-ROADS", "authors": ["Burga, R.", "Etz, R.", "Sterman, J."], "year": 2023, "journal": "Academy of Management Learning & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Wirkung des En-ROADS-Klimasimulators. Signifikante Zugewinne bei Wissen und Handlungsfähigkeit.", "doi": "10.5465/amle.2023.0187", "url": "https://journals.aom.org/doi/10.5465/amle.2023.0187", "local": null, "retrieved": "2026-04-09", "notes": "En-ROADS Klimasimulation", "download_status": null, "local_file": null, "tags": []}, {"id": "S147", "title": "Simulating Climate Policies Influences How Laypersons Evaluate the Effectiveness of Climate Protection Measures", "authors": ["Rasch, R.", "Schlüter, A."], "year": 2024, "journal": "Environment, Development and Sustainability", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Klimasimulatoren erhöhen Risikoperzeption und Erleben kollektiver Wirksamkeit.", "doi": "10.1007/s10668-024-05028-z", "url": "https://link.springer.com/article/10.1007/s10668-024-05028-z", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S148", "title": "Teaching Computational Thinking Skills Through Scratch in K-12 Education: A Systematic Review", "authors": ["Sun, L.", "Hu, L.", "Yang, W."], "year": 2026, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Scratch fördert CT-Fähigkeiten wie Abstraktion, Dekomposition und algorithmisches Denken.", "doi": "10.1002/jcal.70230", "url": "https://onlinelibrary.wiley.com/doi/10.1002/jcal.70230", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S149", "title": "Integrating Computational Thinking with K-12 Science Education Using Agent-Based Computation", "authors": ["Wilensky, U.", "Brady, C.", "Horn, M."], "year": 2014, "journal": "Education and Information Technologies", "type": "journal", "lang": "en", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer"], "abstract": "Theoretisches Framework zur Integration von CT in den K-12-Unterricht mittels ABM und NetLogo.", "doi": "10.1007/s10639-012-9240-x", "url": "https://link.springer.com/article/10.1007/s10639-012-9240-x", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S150", "title": "Visible Learning: The Sequel. A Synthesis of Over 2,100 Meta-Analyses Relating to Achievement", "authors": ["Hattie, J."], "year": 2023, "journal": "Routledge", "type": "book", "lang": "en", "authority": 4, "recency": 3, "relevance": 1, "score": 8, "badges": ["book"], "abstract": "Nachfolgewerk basierend auf über 2100 Meta-Analysen. Simulationen zeigen Effekt g = 0,49.", "doi": "10.4324/9781003380542", "url": "https://www.taylorfrancis.com/books/mono/10.4324/9781003380542/visible-learning-sequel-john-hattie", "local": null, "retrieved": "2026-04-09", "notes": "Maßgebliche Effektstärken-Referenz", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S151", "title": "Integrating Immersive Technologies with STEM Education: A Systematic Review", "authors": ["Liu, X.", "Chen, Y."], "year": 2024, "journal": "Frontiers in Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Systematisches Review zu VR/AR im MINT-Unterricht. Engagement ist die am häufigsten untersuchte Variable.", "doi": "10.3389/feduc.2024.1410163", "url": "https://www.frontiersin.org/journals/education/articles/10.3389/feduc.2024.1410163/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S152", "title": "Collaborative and Individual Learning of Geography in Immersive Virtual Reality: An Effectiveness Study", "authors": ["Petersen, G.", "Klingenberg, S.", "Mayer, R.", "Makransky, G."], "year": 2023, "journal": "British Journal of Educational Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer"], "abstract": "Experimentelle Studie zum kollaborativen und individuellen Geographielernen in immersiver VR.", "doi": null, "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9578614/", "local": null, "retrieved": "2026-04-09", "notes": "VR + Geographie + kollaborativ", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S153", "title": "An Empirical Study of Geography Learning on Students' Emotions and Motivation in Immersive Virtual Reality", "authors": ["Klingenberg, S.", "Jørgensen, M.", "Dandanell, G.", "Skriver, K.", "Makransky, G."], "year": 2022, "journal": "Frontiers in Education", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Empirische Studie zu Emotionen und Motivation beim Geographielernen in immersiver VR.", "doi": "10.3389/feduc.2022.831619", "url": "https://www.frontiersin.org/journals/education/articles/10.3389/feduc.2022.831619/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S154", "title": "Empfehlung der Kultusministerkonferenz zur Bildung für nachhaltige Entwicklung", "authors": ["KMK"], "year": 2024, "journal": "Kultusministerkonferenz", "type": "report", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["institution"], "abstract": "Überarbeitete BNE-Empfehlung der KMK. Nennt Simulationen und Planspiele als empfohlene Methoden.", "doi": null, "url": "https://www.kmk.org/fileadmin/veroeffentlichungen_beschluesse/2024/2024_06_13-BNE-Empfehlung.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S155", "title": "Perspektiven auf Geographieunterricht in einer Kultur der Digitalität", "authors": ["Kanwischer, D.", "Budke, A."], "year": 2023, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["book", "peer"], "abstract": "Untersucht, wie Simulationen, digitale Geomedien und interaktive Lernumgebungen den Geographieunterricht verändern.", "doi": "10.1007/978-3-662-66486-5_1", "url": "https://link.springer.com/chapter/10.1007/978-3-662-66486-5_1", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S156", "title": "Digitale und analoge Politiksimulatoren", "authors": ["Ancuta, A.", "Preisinger, A."], "year": 2022, "journal": "Edition polis, Wien", "type": "book", "lang": "de", "authority": 2, "recency": 2, "relevance": 2, "score": 6, "badges": ["book", "austria"], "abstract": "Digitale und analoge Politiksimulatoren für den Unterricht mit Österreich-Bezug.", "doi": null, "url": "https://www.politik-lernen.at/digitaleundanalogepolitiksimulatoren", "local": null, "retrieved": "2026-04-09", "notes": "Österreich-Bezug", "download_status": null, "local_file": null, "tags": []}, {"id": "S157", "title": "Technology-Enhanced Collaborative Inquiry in K-12 Classrooms: A Systematic Review", "authors": ["Zhang, Y.", "Xu, K."], "year": 2024, "journal": "Science & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Systematisches Review zu technologiegestütztem kollaborativem forschenden Lernen im K-12-Bereich.", "doi": "10.1007/s11191-024-00538-8", "url": "https://link.springer.com/article/10.1007/s11191-024-00538-8", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S158", "title": "Challenges and Opportunities for Classroom-Based Formative Assessment and AI", "authors": ["Misiejuk, K.", "Wasson, B."], "year": 2023, "journal": "Frontiers in Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 1, "score": 7, "badges": ["peer", "openaccess"], "abstract": "KI-gestütztes formatives Assessment ermöglicht präzisere Rückmeldungen basierend auf dem individuellen Lernstand.", "doi": "10.3389/feduc.2023.1270700", "url": "https://www.frontiersin.org/journals/education/articles/10.3389/feduc.2023.1270700/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S159", "title": "Transformative Bildung zwischen Simulation und Umwelt", "authors": ["Hagedorn, J.", "Seybusch, M."], "year": 2024, "journal": "Universität Bielefeld", "type": "conference", "lang": "de", "authority": 2, "recency": 3, "relevance": 3, "score": 8, "badges": ["institution"], "abstract": "Verbindet Simulationsdidaktik mit Nachhaltigkeitsbildung im deutschsprachigen Kontext.", "doi": null, "url": "https://pub.uni-bielefeld.de/record/2993227", "local": null, "retrieved": "2026-04-09", "notes": "BNE + Simulation", "download_status": null, "local_file": null, "tags": []}, {"id": "S160", "title": "Investigating the Impact of Simulation Software on Students' Academic Achievement and Skill Development", "authors": ["Aksu, G.", "Korkmaz, Ö."], "year": 2024, "journal": "ERIC", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Simulationssoftware verbessert theoretisches Wissen und praktische Fertigkeiten. Kollaborative Settings stärken Peer-Teaching.", "doi": null, "url": "https://files.eric.ed.gov/fulltext/EJ1462572.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S161", "title": "Das eigene Leben nachhaltig gestalten. Zum Lehrplan für Geographie und wirtschaftliche Bildung (Pichler et al.)", "authors": ["Pichler, H.", "Jekel, T.", "Koller, A.", "Vorage, M.", "Fridrich, C."], "year": 2023, "journal": "GW-Unterricht", "type": "journal", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "austria", "openaccess"], "abstract": "Kommentar zum 2023 verordneten österreichischen Lehrplan für Geographie und wirtschaftliche Bildung. Kompetenzorientierung mit Basiskonzepten.", "doi": "10.1553/gw-unterricht170s44", "url": "https://austriaca.at/?arp=0x003e5c65", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S162", "title": "Lehrplan Digitale Grundbildung. Verordnung BGBl. II Nr. 267/2022", "authors": ["BMBWF"], "year": 2022, "journal": "Bundesgesetzblatt für die Republik Österreich", "type": "report", "lang": "de", "authority": 2, "recency": 2, "relevance": 2, "score": 6, "badges": ["institution", "austria", "openaccess"], "abstract": "Pflichtfach Digitale Grundbildung ab 2022/23 für die Sekundarstufe I. Fünf Kompetenzbereiche inkl. Computational Thinking.", "doi": null, "url": "https://www.ris.bka.gv.at/Dokumente/BgblAuth/BGBLA_2022_II_267/BGBLA_2022_II_267.html", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S163", "title": "Kompetenzmodell der Modellierkompetenz – Die Rolle abduktiven Schließens beim Modellieren", "authors": ["Krüger, D.", "Upmeier zu Belzen, A."], "year": 2021, "journal": "Zeitschrift für Didaktik der Naturwissenschaften", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Erweiterung des Kompetenzmodells der Modellkompetenz um abduktives Schließen. Fünf Teilkompetenzen auf drei Niveaustufen.", "doi": "10.1007/s40573-021-00129-y", "url": "https://link.springer.com/article/10.1007/s40573-021-00129-y", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S164", "title": "The Past, Present, and Future of the CTML (Mayer 2024, dup check)", "authors": ["Mayer, R."], "year": 2024, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Vier Jahrzehnte CTML. Erweiterung auf affektive Prozesse und interaktive Lernumgebungen.", "doi": "10.1007/s10648-023-09842-1", "url": "https://link.springer.com/article/10.1007/s10648-023-09842-1", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S165", "title": "Multimedia Learning", "authors": ["Mayer, R."], "year": 2021, "journal": "Cambridge University Press", "type": "book", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["book", "peer"], "abstract": "Dritte Auflage des Standardwerks. Evidenzbasierte Prinzipien für multimediale Lernumgebungen inkl. Simulationen.", "doi": null, "url": "https://www.cambridge.org/highereducation/books/multimedia-learning/FB7E79A165D24D47CEACEB4D2C426ECD", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S166", "title": "Effectiveness of conceptual change strategies in science education: A meta-analysis", "authors": ["Pacaci, C.", "Ustun, U.", "Ozdemir, O."], "year": 2024, "journal": "Journal of Research in Science Teaching", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Meta-Analyse (218 Studien, 18.051 Schüler*innen): Gesamteffekt g = 1,10. Simulationen als Instrument für Conceptual Change.", "doi": "10.1002/tea.21887", "url": "https://onlinelibrary.wiley.com/doi/full/10.1002/tea.21887", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S168", "title": "Immersive VR increases liking but not learning with a science simulation", "authors": ["Makransky, G.", "Andreasen, N.", "Baceviciute, S.", "Mayer, R."], "year": 2021, "journal": "Journal of Educational Psychology", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "IVR steigert Präsenz und Vergnügen, nicht aber Lernerfolg. Generative Lernstrategien verbessern das Lernen in IVR signifikant.", "doi": "10.1037/edu0000473", "url": "https://psycnet.apa.org/record/2020-19121-001", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S170", "title": "Handbook of Game-Based Learning", "authors": ["Plass, J.", "Mayer, R.", "Homer, B."], "year": 2020, "journal": "MIT Press", "type": "book", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["book", "peer"], "abstract": "Handbuch zu spielbasiertem Lernen: kognitive, motivationale, affektive und soziokulturelle Perspektiven auf Spiele und Simulationen.", "doi": null, "url": "https://mitpress.mit.edu/9780262043380/handbook-of-game-based-learning/", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S172", "title": "Transforming STEM Learning at Scale: PhET Interactive Simulations", "authors": ["Perkins, K."], "year": 2020, "journal": "Childhood Education", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Über 150 Simulationen in 93 Sprachen, 180 Mio. Nutzungen jährlich. Forschungsbasierte Designprinzipien.", "doi": "10.1080/00094056.2020.1796451", "url": "https://www.tandfonline.com/doi/full/10.1080/00094056.2020.1796451", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S174", "title": "Education for Spatial Citizenship: Versuch einer Einordnung", "authors": ["Jekel, T.", "Gryl, I.", "Oberrauch, A."], "year": 2015, "journal": "GW-Unterricht", "type": "journal", "lang": "de", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer", "austria", "openaccess"], "abstract": "Einordnung des Spatial-Citizenship-Konzepts in die Geographiedidaktik. Integration politischer Bildung mit räumlicher Perspektive.", "doi": null, "url": "https://www.gw-unterricht.at/images/pdf/gwu_137_05_13_jekel_gryl_oberrauch.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S175", "title": "Reflexion über fachliche Inhalte am Beispiel des Stadtaufbauspiels PocketCity im Geographieunterricht", "authors": ["Baßeng, G.", "Budke, A."], "year": 2023, "journal": "GW-Unterricht", "type": "journal", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Empirische Studie zur Reflexion von Schüler*innen beim Spielen von PocketCity im GW-Unterricht. Empfehlungen für Gamification.", "doi": null, "url": "https://www.researchgate.net/publication/377415550", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S176", "title": "Bildung, Raum und Digitalität. Neue Lernumgebungen in der Diskussion (Kanwischer/Gryl DDS)", "authors": ["Kanwischer, D.", "Gryl, I."], "year": 2022, "journal": "Die Deutsche Schule", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Zusammenspiel von Bildung, Raum und Digitalität. Wie digitale Räume den Geographieunterricht transformieren.", "doi": "10.31244/dds.2022.01.04", "url": "https://www.pedocs.de/volltexte/2022/24321/pdf/DDS_2022_1_Kanwischer_Gryl_Bildung_Raum_und_Digitalitaet.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S177", "title": "Beliefs angehender Lehrpersonen zum Experimentieren im Geographieunterricht", "authors": ["Velling, H.", "Schubert, J.", "Naujoks-Schober, N."], "year": 2022, "journal": "Zeitschrift für Didaktik der Naturwissenschaften", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Fragebogenentwicklung zu Überzeugungen angehender GW-Lehrpersonen zum Experimentieren. Fünf Faktoren identifiziert.", "doi": "10.1007/s40573-022-00148-3", "url": "https://link.springer.com/article/10.1007/s40573-022-00148-3", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S178", "title": "Geographische Bildung in der digitalen Welt (Schulze/Gryl Waxmann)", "authors": ["Schulze, U.", "Gryl, I."], "year": 2022, "journal": "Waxmann", "type": "book", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["book", "peer"], "abstract": "Drei Dimensionen des Lernens mit Geomedien: Lernen mit, über und durch Geomedien.", "doi": null, "url": "https://www.researchgate.net/publication/361265396", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S179", "title": "Young People's Pre-Conceptions of Climate Change and Soils", "authors": ["Oberrauch, A.", "Keller, L.", "Geitner, C.", "Stötter, J."], "year": 2022, "journal": "Journal of Geography", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "austria"], "abstract": "421 Schüler*innen zeigen erhebliche konzeptuelle Lücken bei Klimawandel-Boden-Interaktionen. Unterstreicht Bedarf an Simulationen.", "doi": "10.1080/00221341.2022.2037011", "url": "https://www.tandfonline.com/doi/full/10.1080/00221341.2022.2037011", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S180", "title": "Computational Thinking", "authors": ["Wing, J."], "year": 2006, "journal": "Communications of the ACM", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 1, "score": 6, "badges": ["peer"], "abstract": "Wegweisender Aufsatz: Computational Thinking als fundamentale Fähigkeit für alle Menschen.", "doi": "10.1145/1118178.1118215", "url": "https://dl.acm.org/doi/10.1145/1118178.1118215", "local": null, "retrieved": "2026-04-09", "notes": "Grundlagenwerk CT", "download_status": null, "local_file": null, "tags": []}, {"id": "S181", "title": "Computational thinking in STEM education: current state and future directions", "authors": ["Saqr, M.", "Lopez-Pernas, S."], "year": 2024, "journal": "Frontiers in Computer Science", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "PRISMA-Review zu CT in MINT. Framework verknüpft CT-Kompetenzen mit Simulationen und Programmierung.", "doi": "10.3389/fcomp.2024.1480404", "url": "https://www.frontiersin.org/journals/computer-science/articles/10.3389/fcomp.2024.1480404/full", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S183", "title": "Interactive simulation with En-ROADS spurs climate action among decision-makers", "authors": ["Rooney-Varga, J.", "Jones, A.", "Kapmeier, F.", "Sterman, J."], "year": 2026, "journal": "npj Climate Action", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 3, "score": 10, "badges": ["peer", "openaccess"], "abstract": "En-ROADS-Studie: Signifikante Zugewinne bei Wissen, persönlicher Betroffenheit und Empowerment bei Entscheidungsträger*innen.", "doi": null, "url": "https://www.nature.com/articles/s44168-026-00348-4", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S185", "title": "Agent-Based Modelling and Geographical Information Systems: A Practical Primer", "authors": ["Crooks, A.", "Malleson, N.", "Manley, E.", "Heppenstall, A."], "year": 2019, "journal": "SAGE Publications", "type": "book", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["book"], "abstract": "ABM + GIS für Geographie: Stadtentwicklung, Bevölkerungsdynamik, Landnutzungswandel. Relevant für NetLogo im Unterricht.", "doi": null, "url": "https://www.abmgis.org/", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S186", "title": "Learning activities in technology-enhanced learning: A meta-analysis of meta-analyses", "authors": ["Schneider, M.", "Beege, M.", "Nebel, S.", "Rey, G."], "year": 2024, "journal": "Computers & Education", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 1, "score": 8, "badges": ["peer"], "abstract": "Second-Order-Meta-Analyse: Simulationen und interaktive Umgebungen zeigen besonders hohe Effektstärken.", "doi": null, "url": "https://www.sciencedirect.com/science/article/pii/S1041608024000396", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S187", "title": "Maschinelles Lernen mit Aussagen zur Modellkompetenz", "authors": ["Krüger, D.", "Krell, M."], "year": 2020, "journal": "Zeitschrift für Didaktik der Naturwissenschaften", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "openaccess"], "abstract": "Computergestützte Bewertung von Modellkompetenz mittels vier ML-Algorithmen.", "doi": "10.1007/s40573-020-00118-7", "url": "https://link.springer.com/article/10.1007/s40573-020-00118-7", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S188", "title": "Modelle und das Modellieren in den Naturwissenschaften", "authors": ["Upmeier zu Belzen, A.", "Krüger, D."], "year": 2019, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["book", "peer"], "abstract": "Grundlagenkapitel: Fünf Teilkompetenzen der Modellkompetenz auf drei Niveaustufen.", "doi": "10.1007/978-3-662-56320-5_9", "url": "https://link.springer.com/chapter/10.1007/978-3-662-56320-5_9", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S189", "title": "Unterrichtsqualität im Fach Geographie – fachdidaktisch erweitertes Modell", "authors": ["Scholten, N.", "Bienert, N.", "Mehren, M.", "Mehren, R."], "year": 2024, "journal": "Zeitschrift für Geographiedidaktik", "type": "journal", "lang": "de", "authority": 3, "recency": 3, "relevance": 2, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Fachdidaktisch erweitertes Modell der Unterrichtsqualität für Geographie. Anknüpfungspunkte für digitale Medien und Simulationen.", "doi": null, "url": "https://zgd-journal.de/index.php/zgd/article/view/183", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S191", "title": "Stellarium Software for Students' Research Competence in Physics", "authors": ["Tkachenko, V.", "Semerikov, S.", "Yechkalo, Y."], "year": 2022, "journal": "IEEE UkrMiCo", "type": "conference", "lang": "en", "authority": 2, "recency": 2, "relevance": 3, "score": 7, "badges": ["peer"], "abstract": "Open-Source-Planetariumssoftware Stellarium für Forschungskompetenzen im Physikunterricht.", "doi": "10.1109/UkrMiCo56066.2022.9913116", "url": "https://ieeexplore.ieee.org/document/9913116/", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S193", "title": "Students' Perception of Geography Teaching Through Google Earth Pro", "authors": ["Masele, F.", "Rwezimula, G."], "year": 2025, "journal": "Education Sciences", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "openaccess"], "abstract": "Google Earth Pro erzeugt Realitätsgefühl und verankert geographische Informationen nachhaltig.", "doi": "10.3390/educsci16020268", "url": "https://www.mdpi.com/2227-7102/16/2/268", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S194", "title": "Combining role-play with interactive simulation for climate action: World Climate", "authors": ["Rooney-Varga, J.", "Sterman, J.", "Fracassi, E.", "Franck, T.", "Kapmeier, F."], "year": 2018, "journal": "PLoS ONE", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "World-Climate-Simulation: Rollenspiel + C-ROADS fördert Klimaverständnis bei 2.000 Teilnehmer*innen.", "doi": "10.1371/journal.pone.0202877", "url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0202877", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S195", "title": "C-ROADS Climate Policy Model", "authors": ["Sterman, J.", "Fiddaman, T.", "Franck, T.", "Jones, A."], "year": 2012, "journal": "System Dynamics Review", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "C-ROADS-Klimasimulationsmodell für interaktive Exploration von Emissionsszenarien.", "doi": "10.1002/sdr.1474", "url": "https://onlinelibrary.wiley.com/doi/abs/10.1002/sdr.1474", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S197", "title": "Long-Lasting Conceptual Change in Science Education", "authors": ["Asterhan, C.", "Schwarz, B."], "year": 2022, "journal": "Science & Education", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Kollaborative Argumentation zeigt verzögerten aber nachhaltigen Konzeptwechsel.", "doi": "10.1007/s11191-021-00288-x", "url": "https://link.springer.com/article/10.1007/s11191-021-00288-x", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S199", "title": "Spatial thinking and GIS: developing student competencies", "authors": ["Zwartjes, L.", "de Lázaro Torres, M."], "year": 2023, "journal": "International Research in Geographical and Environmental Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Räumliche Denkkompetenzen durch GIS. Standardisierte Assessments fehlen noch.", "doi": "10.1080/10382046.2022.2138172", "url": "https://www.tandfonline.com/doi/full/10.1080/10382046.2022.2138172", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S200", "title": "Connecting spatial thinking to STEM learning through visualizations", "authors": ["Taylor, H.", "Burte, H.", "Renshaw, K."], "year": 2023, "journal": "Nature Reviews Psychology", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Visualisierungen als Brücke zwischen räumlichem Denken und MINT-Lernerfolg.", "doi": "10.1038/s44159-023-00224-6", "url": "https://www.nature.com/articles/s44159-023-00224-6", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S201", "title": "Students need more practice with spatial thinking in geoscience education", "authors": ["Atit, K.", "Uttal, D.", "Stieff, M."], "year": 2022, "journal": "Studies in Science Education", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 2, "score": 8, "badges": ["peer"], "abstract": "Mehr gezielte Übung mit räumlichem Denken in Geowissenschaften nötig.", "doi": "10.1080/03057267.2022.2029305", "url": "https://www.tandfonline.com/doi/full/10.1080/03057267.2022.2029305", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S203", "title": "DigComp 2.2: Digital Competence Framework for Citizens", "authors": ["Vuorikari, R.", "Kluzer, S.", "Punie, Y."], "year": 2022, "journal": "EU Publications Office", "type": "report", "lang": "en", "authority": 3, "recency": 2, "relevance": 1, "score": 6, "badges": ["institution", "openaccess"], "abstract": "Europäischer Referenzrahmen für digitale Kompetenzen. 250+ Beispiele inkl. KI.", "doi": "10.2760/115376", "url": "https://publications.jrc.ec.europa.eu/repository/handle/JRC128415", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S208", "title": "Intrinsic and extrinsic motivation from a SDT perspective", "authors": ["Ryan, R.", "Deci, E."], "year": 2020, "journal": "Contemporary Educational Psychology", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 1, "score": 7, "badges": ["peer"], "abstract": "SDT-Review: Autonome Motivation sagt positive Lernergebnisse vorher.", "doi": "10.1016/j.cedpsych.2020.101860", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0361476X20300254", "local": null, "retrieved": "2026-04-09", "notes": "SDT Grundlagenwerk", "download_status": null, "local_file": null, "tags": []}, {"id": "S209", "title": "SDT: Teacher Support Enhances Engagement in Simulation-Based Learning with GenAI", "authors": ["Fang, X.", "Yang, M.", "Zhou, X.", "Li, Y.", "Chiu, T."], "year": 2026, "journal": "Journal of Educational Computing Research", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "SDT auf simulationsbasiertes Lernen mit generativer KI.", "doi": "10.1177/07356331261421079", "url": "https://journals.sagepub.com/doi/10.1177/07356331261421079", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S214", "title": "The Role of Collaboration, Computer Use in CSCL: A Meta-Analysis", "authors": ["Chen, J.", "Wang, M.", "Kirschner, P.", "Tsai, C."], "year": 2018, "journal": "Review of Educational Research", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "425 CSCL-Studien: Kollaboration positiv auf Wissenserwerb (ES=0,42).", "doi": "10.3102/0034654318791584", "url": "https://journals.sagepub.com/doi/10.3102/0034654318791584", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S216", "title": "From simulations to real: Learning and transfer from simulations to real tasks", "authors": ["Falloon, G."], "year": 2020, "journal": "British Journal of Educational Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Prozeduales Wissen transferiert, konzeptuelles nur teilweise. Interaktivität und Feedback entscheidend.", "doi": "10.1111/bjet.12885", "url": "https://bera-journals.onlinelibrary.wiley.com/doi/10.1111/bjet.12885", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": ["core"]}, {"id": "S218", "title": "Digital simulation-based training: A meta-analysis", "authors": ["Gegenfurtner, A.", "Quesada-Pallarès, C.", "Knogler, M."], "year": 2014, "journal": "British Journal of Educational Technology", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Benutzersteuerung wichtiger als soziale/narrative Elemente. Post-Assessment für Transfer entscheidend.", "doi": "10.1111/bjet.12188", "url": "https://bera-journals.onlinelibrary.wiley.com/doi/10.1111/bjet.12188", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S219", "title": "Serious educational games, serious games, and simulations: meta-analysis", "authors": ["Lamb, R.", "Annetta, L.", "Firestone, J.", "Etopio, E."], "year": 2018, "journal": "Computers in Human Behavior", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Meta-Analyse differenziert Spieltypen und deren spezifische Lerneffekte.", "doi": "10.1016/j.chb.2017.10.040", "url": "https://www.sciencedirect.com/science/article/abs/pii/S0747563217306143", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S220", "title": "GI & Spatial Citizenship", "authors": ["Gryl, I.", "Jekel, T.", "Donert, K."], "year": 2010, "journal": "Learning with GI V", "type": "conference", "lang": "en", "authority": 3, "recency": 1, "relevance": 2, "score": 6, "badges": ["peer", "austria"], "abstract": "Spatial Citizenship: Technische Kompetenz, Reflexion, Kommunikation mit Geomedien.", "doi": null, "url": "https://www.researchgate.net/publication/295401228", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S222", "title": "DiGeo-OER: Offene Bildungsmaterialien zum Lernen mit Geomedien", "authors": ["Schulze, U.", "Lauffenburger, M.", "Jekel, T.", "Gryl, I.", "Budke, A.", "Kanwischer, D."], "year": 2022, "journal": "GW-Unterricht", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer", "austria", "openaccess"], "abstract": "30+ frei zugängliche OER-Materialien für Lehrkräftebildung mit digitalen Geomedien.", "doi": null, "url": "https://www.researchgate.net/publication/363940041", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S225", "title": "Motivational processes in simulation-based learning: SDT in teacher education", "authors": ["Hagenauer, G.", "Reszner, N.", "Gegenfurtner, A."], "year": 2025, "journal": "European Journal of Teacher Education", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Autonomie, Kompetenz und Eingebundenheit beeinflussen Engagement in Simulationen.", "doi": "10.1080/02619768.2025.2554684", "url": "https://www.tandfonline.com/doi/full/10.1080/02619768.2025.2554684", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"id": "S227", "title": "Co-constructing knowledge with generative AI tools: CSCL perspective", "authors": ["Cress, U.", "Kimmerle, J."], "year": 2023, "journal": "International Journal of Computer-Supported Collaborative Learning", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Ko-Konstruktion von Wissen mit generativer KI verändert kollaborative Lernprozesse.", "doi": "10.1007/s11412-023-09409-w", "url": "https://link.springer.com/article/10.1007/s11412-023-09409-w", "local": null, "retrieved": "2026-04-09", "notes": "", "download_status": null, "local_file": null, "tags": []}, {"title": "Lehrpläne der Mittelschulen. BGBl. II Nr. 185/2012 idF BGBl. II Nr. 178/2025", "authors": ["BMBWF"], "year": 2025, "journal": "Bundesgesetzblatt für die Republik Österreich", "type": "report", "lang": "de", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["institution", "austria", "openaccess"], "abstract": "Aktueller österreichischer Lehrplan der Mittelschule, inkl. Geografie und wirtschaftliche Bildung. Kompetenzmodell mit Orientierungs-, Urteils- und Handlungskompetenz. Geomedien als Unterrichtsmittel verankert.", "doi": null, "url": "https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=20007850", "local": null, "retrieved": "2026-04-09", "notes": "Primärquelle Lehrplan", "id": "S228", "download_status": null, "local_file": null, "tags": []}, {"title": "Simulation-based training in professional education: learning, participation, and instructional design", "authors": ["Billett, S.", "Noble, C."], "year": 2025, "journal": "Instructional Science", "type": "journal", "lang": "en", "authority": 4, "recency": 3, "relevance": 2, "score": 9, "badges": ["peer"], "abstract": "Meta-Analysen berichten große Gesamtgewinne durch simulationsbasiertes Training. Stärkste Verbesserungen bei technischer Performanz und Problemlösung.", "doi": "10.1007/s11251-025-09763-2", "url": "https://link.springer.com/article/10.1007/s11251-025-09763-2", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S229", "download_status": null, "local_file": null, "tags": []}, {"title": "Unveiling Environmental Complexity: High School Students Through Computer Simulations", "authors": ["Levy, S.", "Wilensky, U."], "year": 2025, "journal": "Springer", "type": "book", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer", "book"], "abstract": "Schüler*innen lernen Interaktionen und Dynamiken komplexer ökologischer Systeme durch computationale Werkzeuge und innovative Pädagogik.", "doi": "10.1007/978-3-031-96551-7_4", "url": "https://link.springer.com/chapter/10.1007/978-3-031-96551-7_4", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S230", "download_status": null, "local_file": null, "tags": []}, {"title": "Improving students' geography achievement using computer simulation in flipped classroom settings", "authors": ["Olayinka, T.", "Oyewole, B."], "year": 2023, "journal": "Education and Information Technologies", "type": "journal", "lang": "en", "authority": 3, "recency": 3, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Computersimulationen und Animationspakete in Flipped-Classroom-Szenarien verbessern signifikant den Lernerfolg im Geographieunterricht.", "doi": null, "url": "https://www.researchgate.net/publication/369531962", "local": null, "retrieved": "2026-04-09", "notes": "Flipped Classroom + Geo-Simulation", "id": "S231", "download_status": null, "local_file": null, "tags": []}, {"title": "The Effect of Simulation Technique on Academic Achievement in Geography", "authors": ["Ezegbe, B.", "Ogbonna, C."], "year": 2022, "journal": "Journal of Education and Practice", "type": "journal", "lang": "en", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Quasi-experimentelle Studie: Simulationstechnik verbessert den Lernerfolg im Geographieunterricht signifikant gegenüber konventionellem Unterricht.", "doi": null, "url": "https://files.eric.ed.gov/fulltext/EJ1286535.pdf", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S232", "download_status": null, "local_file": null, "tags": []}, {"title": "Scaffolding in Teacher-Student Interaction: A Decade of Research", "authors": ["van de Pol, J.", "Volman, M.", "Beishuizen, J."], "year": 2010, "journal": "Educational Psychology Review", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Grundlagenreview zu Scaffolding in der Lehrer-Schüler-Interaktion. Drei Schlüsselelemente: Kontingenz, Fading und Transfer der Verantwortung.", "doi": "10.1007/s10648-010-9127-6", "url": "https://link.springer.com/article/10.1007/s10648-010-9127-6", "local": null, "retrieved": "2026-04-09", "notes": "Scaffolding-Grundlagenwerk", "id": "S233", "download_status": null, "local_file": null, "tags": []}, {"title": "Complementary Roles of Software-Based Scaffolding and Teacher-Student Interactions in Inquiry Learning", "authors": ["Tabak, I."], "year": 2004, "journal": "Journal of the Learning Sciences", "type": "journal", "lang": "en", "authority": 4, "recency": 1, "relevance": 3, "score": 8, "badges": ["peer"], "abstract": "Synergistisches Scaffolding-Konzept: Software und Lehrkraft ergänzen sich bei der Unterstützung forschenden Lernens.", "doi": "10.1207/s15327809jls1303_1", "url": "https://www.tandfonline.com/doi/abs/10.1207/s15327809jls1303_1", "local": null, "retrieved": "2026-04-09", "notes": "Synergistic Scaffolding Grundlagenwerk", "id": "S234", "download_status": null, "local_file": null, "tags": []}, {"title": "Engaged Learning in STEM Disciplines with Simulations", "authors": ["de Jong, T."], "year": 2019, "journal": "Journal of Computer Assisted Learning", "type": "journal", "lang": "en", "authority": 4, "recency": 2, "relevance": 3, "score": 9, "badges": ["peer"], "abstract": "Überblick über aktives Lernen mit Simulationen in MINT-Fächern. Betont die Notwendigkeit geeigneter Unterstützungsstrukturen und die Kombination mit realen Experimenten.", "doi": "10.1111/jcal.12395", "url": "https://onlinelibrary.wiley.com/doi/10.1111/jcal.12395", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S235", "download_status": null, "local_file": null, "tags": []}, {"title": "Gamification and Geography Education", "authors": ["Davis, K.", "Singh, S."], "year": 2024, "journal": "UNI ScholarWorks", "type": "journal", "lang": "en", "authority": 2, "recency": 3, "relevance": 3, "score": 8, "badges": ["peer", "openaccess"], "abstract": "Vier Spielkategorien im Geographieunterricht: standortbasierte, Erzähl-, Simulations- und VR-Spiele. Simulationsspiele fördern Verständnis für ökologische Systeme.", "doi": null, "url": "https://scholarworks.uni.edu/cgi/viewcontent.cgi?article=5622&context=grp", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S236", "download_status": null, "local_file": null, "tags": []}, {"title": "Lernen und Lehren mit digitalen Medien: Befunde, Evidenz und Praxisimplikationen", "authors": ["Scheiter, K."], "year": 2021, "journal": "Zeitschrift für Erziehungswissenschaft", "type": "journal", "lang": "de", "authority": 3, "recency": 2, "relevance": 2, "score": 7, "badges": ["peer"], "abstract": "Übersicht über Befunde zu digitalen Medien im Unterricht im deutschsprachigen Raum. Simulationen als besonders wirksame digitale Werkzeuge hervorgehoben.", "doi": "10.1007/s11618-021-01047-w", "url": "https://link.springer.com/article/10.1007/s11618-021-01047-w", "local": null, "retrieved": "2026-04-09", "notes": "Deutschsprachig", "id": "S237", "download_status": null, "local_file": null, "tags": []}, {"title": "Multimedia im Physikunterricht", "authors": ["Girwidz, R."], "year": 2020, "journal": "Springer", "type": "book", "lang": "de", "authority": 3, "recency": 2, "relevance": 3, "score": 8, "badges": ["book", "peer"], "abstract": "Lehrbuch zu Multimedia im Physikunterricht inkl. Simulationen, Animationen und interaktiven Visualisierungen. Deutschsprachiges Standardwerk.", "doi": "10.1007/978-3-662-59614-2", "url": "https://link.springer.com/book/10.1007/978-3-662-59614-2", "local": null, "retrieved": "2026-04-09", "notes": "", "id": "S238", "download_status": null, "local_file": null, "tags": []}];window.CITED_IDS=["S001", "S002", "S004", "S005", "S006", "S007", "S008", "S009", "S010", "S011", "S012", "S013", "S014", "S015", "S016", "S017", "S019", "S020", "S022", "S025", "S027", "S028", "S032", "S034", "S036", "S043", "S044", "S045", "S046", "S049", "S050", "S051", "S055", "S056", "S058", "S059", "S062", "S065", "S066", "S067", "S068", "S069", "S070", "S072", "S074", "S075", "S077", "S079", "S081", "S082", "S083", "S084", "S085", "S086", "S087", "S088", "S089", "S092", "S094", "S096", "S097", "S100", "S110", "S111", "S114", "S117", "S122", "S125", "S126", "S127", "S130", "S131", "S132", "S133", "S135", "S137", "S139", "S140", "S141", "S144", "S148", "S149", "S150", "S151", "S152", "S153", "S155", "S161", "S162", "S163", "S164", "S165", "S166", "S168", "S172", "S175", "S177", "S178", "S179", "S185", "S188", "S189", "S193", "S194", "S195", "S197", "S200", "S201", "S208", "S209", "S216", "S218", "S220", "S222", "S225", "S227", "S228", "S231", "S233", "S234", "S235", "S238"];window.CIT_LOCATIONS={"S015": ["cite-S015-1", "cite-S015-2", "cite-S015-3", "cite-S015-4"], "S001": ["cite-S001-1", "cite-S001-2"], "S010": ["cite-S010-1", "cite-S010-2", "cite-S010-3", "cite-S010-4"], "S006": ["cite-S006-1", "cite-S006-2"], "S009": ["cite-S009-1", "cite-S009-2"], "S005": ["cite-S005-1", "cite-S005-2", "cite-S005-3"], "S016": ["cite-S016-1"], "S008": ["cite-S008-1", "cite-S008-2"], "S036": ["cite-S036-1", "cite-S036-2"], "S144": ["cite-S144-1"], "S062": ["cite-S062-1"], "S002": ["cite-S002-1"], "S172": ["cite-S172-1", "cite-S172-2", "cite-S172-3"], "S025": ["cite-S025-1"], "S055": ["cite-S055-1"], "S175": ["cite-S175-1"], "S020": ["cite-S020-1", "cite-S020-2", "cite-S020-3"], "S097": ["cite-S097-1", "cite-S097-2"], "S117": ["cite-S117-1"], "S139": ["cite-S139-1"], "S185": ["cite-S185-1", "cite-S185-2"], "S149": ["cite-S149-1"], "S059": ["cite-S059-1", "cite-S059-2"], "S208": ["cite-S208-1"], "S220": ["cite-S220-1"], "S193": ["cite-S193-1"], "S195": ["cite-S195-1"], "S092": ["cite-S092-1"], "S067": ["cite-S067-1"], "S044": ["cite-S044-1", "cite-S044-2"], "S046": ["cite-S046-1"], "S069": ["cite-S069-1"], "S058": ["cite-S058-1", "cite-S058-2"], "S216": ["cite-S216-1", "cite-S216-2"], "S087": ["cite-S087-1"], "S209": ["cite-S209-1"], "S032": ["cite-S032-1"], "S019": ["cite-S019-1"], "S056": ["cite-S056-1"], "S043": ["cite-S043-1"], "S070": ["cite-S070-1"], "S066": ["cite-S066-1"], "S125": ["cite-S125-1"], "S178": ["cite-S178-1"]};</script><!-- DATA_INJECT_END -->
|
||
</head>
|
||
<body>
|
||
|
||
<header>
|
||
<div>
|
||
<h1>Quellenverzeichnis</h1>
|
||
<p>Lernen durch Simulation · Lernprogrammplanung · 9. April 2026</p>
|
||
</div>
|
||
<a href="lernen-durch-simulation.html">← Zum Artikel</a>
|
||
</header>
|
||
|
||
<!-- Bewertungssystem -->
|
||
<section class="criteria-section">
|
||
<h2>Methodik der Quellenbewertung</h2>
|
||
<p class="criteria-intro">Jede Quelle wird anhand von drei Dimensionen bewertet. Die Summe (3 – 10 Punkte) ergibt die Sternbewertung.</p>
|
||
|
||
<div class="dim-cards">
|
||
<div class="dim-card">
|
||
<h4>📐 Autorität</h4>
|
||
<p class="dim-sub">Wie verlässlich und anerkannt ist die Quelle?</p>
|
||
<ul>
|
||
<li><span class="score-badge">4</span> Peer-reviewed in Nature, PNAS, ICLR u.ä.</li>
|
||
<li><span class="score-badge">3</span> Begutachtetes Journal, Institution (OECD, BMB)</li>
|
||
<li><span class="score-badge">2</span> Preprint (arXiv), Fachbuch mit Verlag</li>
|
||
<li><span class="score-badge">1</span> Blog, Web, informelle Quelle</li>
|
||
</ul>
|
||
</div>
|
||
<div class="dim-card">
|
||
<h4>🕐 Aktualität</h4>
|
||
<p class="dim-sub">Wie aktuell ist die Publikation?</p>
|
||
<ul>
|
||
<li><span class="score-badge">3</span> 2024 oder neuer</li>
|
||
<li><span class="score-badge">2</span> 2022 – 2023</li>
|
||
<li><span class="score-badge">1</span> Vor 2022</li>
|
||
</ul>
|
||
</div>
|
||
<div class="dim-card">
|
||
<h4>🎯 Relevanz</h4>
|
||
<p class="dim-sub">Wie direkt behandelt sie das Kernthema: Simulationen im naturwissenschaftlichen und geografischen Unterricht?</p>
|
||
<ul>
|
||
<li><span class="score-badge">3</span> Direkt: Simulationen + Naturwissenschafts-/Geografieunterricht + Didaktik</li>
|
||
<li><span class="score-badge">2</span> Simulationen + MINT-Bildung oder digitale Lernmedien + Unterricht</li>
|
||
<li><span class="score-badge">1</span> Allgemein digitale Bildung, Lerntheorien, Mediendidaktik</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="stars-badges-row">
|
||
<div class="stars-card">
|
||
<h4>⭐ Sternbewertung (Score 3 – 10)</h4>
|
||
<table class="stars-table">
|
||
<thead><tr><th>Score</th><th>Sterne</th><th>Bedeutung</th></tr></thead>
|
||
<tbody>
|
||
<tr class="row-5star"><td>9 – 10</td><td>★★★★★</td><td>Kernquelle</td></tr>
|
||
<tr class="row-4star"><td>7 – 8</td><td>★★★★☆</td><td>Sehr relevant</td></tr>
|
||
<tr class="row-3star"><td>5 – 6</td><td>★★★☆☆</td><td>Relevant</td></tr>
|
||
<tr class="row-2star"><td>3 – 4</td><td>★★☆☆☆</td><td>Orientierung</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
<div class="badges-card">
|
||
<h4>🏷️ Badges</h4>
|
||
<div class="badge-list">
|
||
<div class="badge-row"><span class="badge badge-peer">🎓 Peer-reviewed</span> <span class="badge-desc">Begutachtete Fachpublikation</span></div>
|
||
<div class="badge-row"><span class="badge badge-openaccess">🔓 Open Access</span> <span class="badge-desc">Frei zugänglich</span></div>
|
||
<div class="badge-row"><span class="badge badge-institution">🏛️ Institution</span> <span class="badge-desc">Offizielle Institution</span></div>
|
||
<div class="badge-row"><span class="badge badge-austria">🇦🇹 Österreich</span> <span class="badge-desc">Österreichbezug</span></div>
|
||
<div class="badge-row"><span class="badge badge-preprint">🔬 Preprint</span> <span class="badge-desc">arXiv, noch nicht peer-reviewed</span></div>
|
||
<div class="badge-row"><span class="badge badge-book">📚 Buch</span> <span class="badge-desc">Monografie oder Buchkapitel</span></div>
|
||
<div class="badge-row"><span class="badge badge-web">🌐 Web</span> <span class="badge-desc">Webpublikation, Blog</span></div>
|
||
<div class="badge-row"><span class="badge badge-paywall">🔒 Paywall</span> <span class="badge-desc">Nur mit Abonnement</span></div>
|
||
<div class="badge-row"><span class="badge badge-math">🧮 Mathematik</span> <span class="badge-desc">Mathematik- oder Informatikfokus</span></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Reload-Pill (schwebend, oben rechts) -->
|
||
<div id="rpill" style="position:fixed;top:.75rem;right:.75rem;z-index:9000;display:flex;align-items:center;gap:.4rem;background:#fff;border:1px solid #ddd;border-radius:20px;padding:.2rem .45rem .2rem .7rem;font-family:sans-serif;font-size:.72rem;box-shadow:0 1px 6px rgba(0,0,0,.12);white-space:nowrap">
|
||
<span id="reload-clock" style="font-variant-numeric:tabular-nums;letter-spacing:.03em;color:#333">00:00:00</span>
|
||
<span id="reload-countdown" style="color:#aaa;font-size:.66rem;min-width:0"></span>
|
||
<button id="reload-btn" onclick="toggleReload()" style="background:#1a4e8a;color:#fff;border:none;border-radius:14px;padding:.14rem .48rem;font-size:.66rem;cursor:pointer;font-family:sans-serif;font-weight:600;line-height:1.7">⏵</button>
|
||
</div>
|
||
|
||
<!-- Stats -->
|
||
<div class="stats" id="stats-row"></div>
|
||
|
||
<!-- Diagramme -->
|
||
<div class="chart-row" id="chart-row">
|
||
<div class="chart-box"><h3>Score-Verteilung</h3><div id="chart-score"></div></div>
|
||
<div class="chart-box"><h3>Quelltyp</h3><div id="chart-type"></div></div>
|
||
<div class="chart-box"><h3>Sprache</h3><div id="chart-lang"></div></div>
|
||
</div>
|
||
|
||
<!-- Filter & Suche -->
|
||
<div class="filter-section">
|
||
<label>Sterne:</label>
|
||
<button class="filter-btn active" data-filter-stars="all">Alle</button>
|
||
<button class="filter-btn" data-filter-stars="5">★★★★★</button>
|
||
<button class="filter-btn" data-filter-stars="4">★★★★</button>
|
||
<button class="filter-btn" data-filter-stars="3">★★★</button>
|
||
<button class="filter-btn" data-filter-stars="2">★★</button>
|
||
<div class="filter-sep"></div>
|
||
<label>Badge:</label>
|
||
<button class="filter-btn active" data-filter-badge="all">Alle</button>
|
||
<button class="filter-btn" data-filter-badge="peer">🎓 Peer-reviewed</button>
|
||
<button class="filter-btn" data-filter-badge="institution">🏛️ Institution</button>
|
||
<button class="filter-btn" data-filter-badge="openaccess">🔓 Open Access</button>
|
||
<button class="filter-btn" data-filter-badge="austria">🇦🇹 Österreich</button>
|
||
<div class="filter-sep"></div>
|
||
<label>Verwendung:</label>
|
||
<button class="filter-btn active" data-filter-cited="all">Alle</button>
|
||
<button class="filter-btn" data-filter-cited="1">✓ Im Artikel</button>
|
||
<button class="filter-btn" data-filter-cited="0">Nur Archiv</button>
|
||
<div class="filter-sep"></div>
|
||
<input type="search" id="search-input" placeholder="Suchen …" />
|
||
<div class="filter-sep"></div>
|
||
<label>Sortierung:</label>
|
||
<select id="sort-select">
|
||
<option value="score-desc">Score ↓</option>
|
||
<option value="score-asc">Score ↑</option>
|
||
<option value="year-desc">Jahr ↓</option>
|
||
<option value="year-asc">Jahr ↑</option>
|
||
<option value="id-asc">ID ↑</option>
|
||
</select>
|
||
</div>
|
||
|
||
<div id="result-count"></div>
|
||
<div id="cards-container"></div>
|
||
|
||
<script>
|
||
/* ══════════════════════════════════════════
|
||
Konfiguration
|
||
══════════════════════════════════════════ */
|
||
const SOURCES_URL = "sources/sources.json";
|
||
|
||
const BADGE_LABELS = {
|
||
peer: "🎓 Peer-reviewed",
|
||
institution: "🏛️ Institution",
|
||
book: "📚 Verlag/Buch",
|
||
preprint: "🔬 Preprint",
|
||
web: "🌐 Web",
|
||
austria: "🇦🇹 Österreich",
|
||
openaccess: "🔓 Open Access",
|
||
paywall: "🔒 Paywall",
|
||
math: "🧮 Mathematik"
|
||
};
|
||
|
||
const TYPE_LABELS = {
|
||
journal: "Journal-Artikel",
|
||
conference: "Konferenz",
|
||
report: "Bericht",
|
||
book: "Buch / Kapitel",
|
||
preprint: "Preprint",
|
||
web: "Webseite",
|
||
curriculum: "Lehrplan"
|
||
};
|
||
|
||
/* ══════════════════════════════════════════
|
||
Hilfsfunktionen
|
||
══════════════════════════════════════════ */
|
||
function stars(score) {
|
||
const s = score >= 9 ? 5 : score >= 7 ? 4 : score >= 5 ? 3 : 2;
|
||
return { stars: s, filled: "★".repeat(s), empty: "★".repeat(5 - s) };
|
||
}
|
||
|
||
function makeBar(items, colorMap) {
|
||
const max = Math.max(...Object.values(items), 1);
|
||
return Object.entries(items).map(([label, count]) => `
|
||
<div class="bar-item">
|
||
<span class="label">${label}</span>
|
||
<div class="bar-track"><div class="bar-fill" style="width:${Math.round(count/max*100)}%;background:${colorMap?.[label]||'#1a4e8a'}"></div></div>
|
||
<span class="count">${count}</span>
|
||
</div>`).join("");
|
||
}
|
||
|
||
/* ══════════════════════════════════════════
|
||
Render
|
||
══════════════════════════════════════════ */
|
||
function formatAPA7(src) {
|
||
const authors = src.authors || [];
|
||
let authStr = "";
|
||
if (authors.length === 0) { authStr = ""; }
|
||
else if (authors.length === 1) { authStr = authors[0]; }
|
||
else if (authors.length === 2) { authStr = authors[0] + ", & " + authors[1]; }
|
||
else if (authors.length <= 20) { authStr = authors.slice(0,-1).join(", ") + ", & " + authors[authors.length-1]; }
|
||
else { authStr = authors.slice(0,19).join(", ") + ", ... " + authors[authors.length-1]; }
|
||
const year = src.year ? "(" + src.year + ")" : "(o.\u00a0J.)";
|
||
const title = src.title || "";
|
||
const journal = src.journal ? " " + src.journal + "." : "";
|
||
const link = src.doi ? " https://doi.org/" + src.doi : (src.url && src.url !== "#" ? " " + src.url : "");
|
||
return authStr + " " + year + ". " + title + "." + journal + link;
|
||
}
|
||
|
||
let _toastTimer = null;
|
||
function showCopyToast(msg) {
|
||
let t = document.getElementById("toast-copy");
|
||
if (!t) { t = document.createElement("div"); t.id = "toast-copy"; document.body.appendChild(t); }
|
||
t.textContent = msg;
|
||
t.classList.add("show");
|
||
clearTimeout(_toastTimer);
|
||
_toastTimer = setTimeout(function() { t.classList.remove("show"); }, 2200);
|
||
}
|
||
|
||
function copyAPA(id) {
|
||
const src = (window.SOURCES_DATA || []).find(function(s) { return s.id === id; });
|
||
if (!src) return;
|
||
const text = formatAPA7(src);
|
||
if (navigator.clipboard && navigator.clipboard.writeText) {
|
||
navigator.clipboard.writeText(text).then(function() { showCopyToast("APA-Zitat kopiert \u2713"); });
|
||
} else {
|
||
const ta = document.createElement("textarea"); ta.value = text;
|
||
document.body.appendChild(ta); ta.select(); document.execCommand("copy"); document.body.removeChild(ta);
|
||
showCopyToast("APA-Zitat kopiert \u2713");
|
||
}
|
||
}
|
||
|
||
function renderCard(src, cited) {
|
||
const { stars: s, filled, empty } = stars(src.score || 3);
|
||
const authorsStr = (src.authors || []).join(", ");
|
||
const localLink = src.local
|
||
? `<a href="${src.local}" title="Lokale Kopie">📁 Lokal</a>` : "";
|
||
const doiLink = src.doi
|
||
? `<a href="https://doi.org/${src.doi}" target="_blank" rel="noopener">DOI: ${src.doi}</a>` : "";
|
||
const origLink = src.url && src.url !== "#"
|
||
? `<a href="${src.url}" target="_blank" rel="noopener">🔗 Original</a>` : "";
|
||
const citedBadge = cited ? `<span class="badge badge-cited">✓ Im Artikel</span>` : "";
|
||
const citLocs = ((window.CIT_LOCATIONS || {})[src.id]) || [];
|
||
const circled = ["①","②","③","④","⑤","⑥","⑦","⑧","⑨","⑩"];
|
||
const citLinks = citLocs.map((anchor, i) =>
|
||
`<a class="badge badge-cited" style="text-decoration:none;cursor:pointer" href="lernen-durch-simulation.html#${anchor}" target="_blank" title="Im Artikel: Zitat ${i+1}">${circled[i]||"#"+(i+1)}</a>`
|
||
).join("");
|
||
const badgesHtml = (src.badges || []).map(b =>
|
||
`<span class="badge badge-${b}">${BADGE_LABELS[b] || b}</span>`).join("") + citedBadge + citLinks;
|
||
const notesHtml = src.notes
|
||
? `<div class="card-notes">Notiz: ${src.notes}</div>` : "";
|
||
|
||
return `
|
||
<div class="source-card" data-stars="${s}" data-badges="${(src.badges||[]).join(" ")}"
|
||
data-cited="${cited ? '1' : '0'}"
|
||
data-year="${src.year||0}" data-score="${src.score||0}" data-id="${src.id||""}">
|
||
<div class="card-top">
|
||
<div>
|
||
<div>
|
||
<span class="card-id">[${src.id}]</span><button class="copy-apa-btn" title="APA 7-Zitat kopieren" onclick="copyAPA('${src.id}')">⎘</button>
|
||
<span class="card-title">
|
||
${src.url && src.url !== "#"
|
||
? `<a href="${src.url}" target="_blank" rel="noopener">${src.title}</a>`
|
||
: src.title}
|
||
</span>
|
||
</div>
|
||
<div class="card-meta">${authorsStr}${authorsStr && src.year ? " · " : ""}${src.year || ""}${src.journal ? " · <em>" + src.journal + "</em>" : ""}${src.type ? " · " + (TYPE_LABELS[src.type]||src.type) : ""}${src.lang ? " · " + src.lang.toUpperCase() : ""}</div>
|
||
</div>
|
||
<div class="stars">
|
||
<span class="filled">${filled}</span><span class="empty">${empty}</span>
|
||
<span class="score-num">${src.score}/10</span>
|
||
</div>
|
||
</div>
|
||
<div class="badges">${badgesHtml}</div>
|
||
${src.abstract ? `<div class="card-abstract">${src.abstract}</div>` : ""}
|
||
<div class="card-footer">${[localLink, doiLink, origLink].filter(Boolean).join(" · ")}${src.retrieved ? `<span>Abgerufen: ${src.retrieved}</span>` : ""}</div>
|
||
${notesHtml}
|
||
</div>`;
|
||
}
|
||
|
||
/* ══════════════════════════════════════════
|
||
Filter + Sortierung
|
||
══════════════════════════════════════════ */
|
||
let allSources = [];
|
||
let activeStars = "all";
|
||
let activeBadge = "all";
|
||
let searchTerm = "";
|
||
let sortMode = "score-desc";
|
||
let activeCited = "all";
|
||
|
||
function applyFilters() {
|
||
const cards = document.querySelectorAll(".source-card");
|
||
let visible = 0;
|
||
cards.forEach(card => {
|
||
const cardStars = card.dataset.stars;
|
||
const cardBadges = card.dataset.badges;
|
||
const cardCited = card.dataset.cited;
|
||
const cardText = card.textContent.toLowerCase();
|
||
const matchStar = activeStars === "all" || cardStars === activeStars;
|
||
const matchBadge = activeBadge === "all" || cardBadges.includes(activeBadge);
|
||
const matchCited = activeCited === "all" || cardCited === activeCited;
|
||
const matchSearch= !searchTerm || cardText.includes(searchTerm);
|
||
const show = matchStar && matchBadge && matchCited && matchSearch;
|
||
card.classList.toggle("hidden", !show);
|
||
if (show) visible++;
|
||
});
|
||
document.getElementById("result-count").textContent =
|
||
`${visible} von ${cards.length} Quellen angezeigt`;
|
||
}
|
||
|
||
function sortCards() {
|
||
const container = document.getElementById("cards-container");
|
||
const cards = [...container.querySelectorAll(".source-card")];
|
||
cards.sort((a, b) => {
|
||
if (sortMode === "score-desc") return +b.dataset.score - +a.dataset.score;
|
||
if (sortMode === "score-asc") return +a.dataset.score - +b.dataset.score;
|
||
if (sortMode === "year-desc") return +b.dataset.year - +a.dataset.year;
|
||
if (sortMode === "year-asc") return +a.dataset.year - +b.dataset.year;
|
||
return a.dataset.id.localeCompare(b.dataset.id);
|
||
});
|
||
cards.forEach(c => container.appendChild(c));
|
||
}
|
||
|
||
/* ══════════════════════════════════════════
|
||
Charts + Stats
|
||
══════════════════════════════════════════ */
|
||
function renderStats(sources, citedSet) {
|
||
const citedCount = citedSet ? citedSet.size : 0;
|
||
const real = sources.filter(s => s.id !== "PLACEHOLDER");
|
||
const byScore = { "★★★★★": 0, "★★★★☆": 0, "★★★☆☆": 0, "★★☆☆☆": 0 };
|
||
const byType = {};
|
||
const byLang = {};
|
||
real.forEach(s => {
|
||
const st = s.score >= 9 ? "★★★★★" : s.score >= 7 ? "★★★★☆" : s.score >= 5 ? "★★★☆☆" : "★★☆☆☆";
|
||
byScore[st]++;
|
||
const tl = TYPE_LABELS[s.type] || s.type || "—";
|
||
byType[tl] = (byType[tl] || 0) + 1;
|
||
const ll = (s.lang || "?").toUpperCase();
|
||
byLang[ll] = (byLang[ll] || 0) + 1;
|
||
});
|
||
|
||
const oa = real.filter(s => (s.badges||[]).includes("openaccess")).length;
|
||
const peer = real.filter(s => (s.badges||[]).includes("peer")).length;
|
||
|
||
document.getElementById("stats-row").innerHTML = `
|
||
<div class="stat"><strong>${real.length}</strong>Quellen gesamt</div>
|
||
<div class="stat"><strong>${peer}</strong>Peer-reviewed</div>
|
||
<div class="stat"><strong>${oa}</strong>Open Access</div>
|
||
<div class="stat"><strong>${real.filter(s=>s.score>=9).length}</strong>★★★★★ Kernquellen</div>
|
||
<div class="stat"><strong>${citedCount}</strong>✓ Im Artikel</div>`;
|
||
|
||
const scoreColors = { "★★★★★": "#1a6b3c", "★★★★☆": "#2e7d32", "★★★☆☆": "#e65100", "★★☆☆☆": "#b71c1c" };
|
||
document.getElementById("chart-score").innerHTML = makeBar(byScore, scoreColors);
|
||
document.getElementById("chart-type").innerHTML = makeBar(byType, null);
|
||
document.getElementById("chart-lang").innerHTML = makeBar(byLang, null);
|
||
}
|
||
|
||
/* ══════════════════════════════════════════
|
||
Init
|
||
══════════════════════════════════════════ */
|
||
async function init() {
|
||
try {
|
||
let raw, citedIds;
|
||
if (window.SOURCES_DATA) {
|
||
raw = window.SOURCES_DATA;
|
||
citedIds = window.CITED_IDS || [];
|
||
} else {
|
||
[raw, citedIds] = await Promise.all([
|
||
fetch(SOURCES_URL).then(r => r.json()),
|
||
fetch("sources/cited_ids.json").then(r => r.json()).catch(() => [])
|
||
]);
|
||
}
|
||
allSources = raw.filter(s => !s._comment && !s._schema);
|
||
const citedSet = new Set(citedIds);
|
||
|
||
const container = document.getElementById("cards-container");
|
||
container.innerHTML = allSources.map(s => renderCard(s, citedSet.has(s.id))).join("");
|
||
|
||
renderStats(allSources, citedSet);
|
||
applyFilters();
|
||
|
||
/* Filter-Buttons Sterne */
|
||
document.querySelectorAll("[data-filter-stars]").forEach(btn => {
|
||
btn.addEventListener("click", () => {
|
||
document.querySelectorAll("[data-filter-stars]").forEach(b => b.classList.remove("active"));
|
||
btn.classList.add("active");
|
||
activeStars = btn.dataset.filterStars;
|
||
applyFilters();
|
||
});
|
||
});
|
||
|
||
/* Filter-Buttons Badge */
|
||
document.querySelectorAll("[data-filter-badge]").forEach(btn => {
|
||
btn.addEventListener("click", () => {
|
||
document.querySelectorAll("[data-filter-badge]").forEach(b => b.classList.remove("active"));
|
||
btn.classList.add("active");
|
||
activeBadge = btn.dataset.filterBadge;
|
||
applyFilters();
|
||
});
|
||
});
|
||
|
||
/* Filter-Buttons Verwendung (cited) */
|
||
document.querySelectorAll("[data-filter-cited]").forEach(btn => {
|
||
btn.addEventListener("click", () => {
|
||
document.querySelectorAll("[data-filter-cited]").forEach(b => b.classList.remove("active"));
|
||
btn.classList.add("active");
|
||
activeCited = btn.dataset.filterCited;
|
||
applyFilters();
|
||
});
|
||
});
|
||
|
||
/* Suche */
|
||
document.getElementById("search-input").addEventListener("input", e => {
|
||
searchTerm = e.target.value.toLowerCase().trim();
|
||
applyFilters();
|
||
});
|
||
|
||
/* Sortierung */
|
||
document.getElementById("sort-select").addEventListener("change", e => {
|
||
sortMode = e.target.value;
|
||
sortCards();
|
||
});
|
||
|
||
} catch(err) {
|
||
document.getElementById("cards-container").textContent = "Fehler: " + err.message;
|
||
console.error(err);
|
||
}
|
||
}
|
||
|
||
document.addEventListener("DOMContentLoaded", init);
|
||
</script>
|
||
|
||
<script>
|
||
/* ── Timelapse / Reload-Panel ── */
|
||
(function() {
|
||
var INTERVAL = 20;
|
||
var LS_KEY = 'quellen_reload_active';
|
||
var countdown = INTERVAL;
|
||
var reloadTimer = null;
|
||
var clockTimer = null;
|
||
|
||
// Uhr laufend anzeigen
|
||
function updateClock() {
|
||
var now = new Date();
|
||
var h = String(now.getHours()).padStart(2,'0');
|
||
var m = String(now.getMinutes()).padStart(2,'0');
|
||
var s = String(now.getSeconds()).padStart(2,'0');
|
||
document.getElementById('reload-clock').textContent = h+':'+m+':'+s;
|
||
}
|
||
|
||
function startClock() {
|
||
updateClock();
|
||
clockTimer = setInterval(updateClock, 1000);
|
||
}
|
||
|
||
function updateCountdown() {
|
||
var el = document.getElementById('reload-countdown');
|
||
if (el) el.textContent = countdown + 's';
|
||
countdown--;
|
||
if (countdown < 0) {
|
||
localStorage.setItem(LS_KEY, '1');
|
||
window.location.reload();
|
||
}
|
||
}
|
||
|
||
function startReload() {
|
||
countdown = INTERVAL;
|
||
localStorage.setItem(LS_KEY, '1');
|
||
document.getElementById('reload-btn').textContent = '⏹';
|
||
document.getElementById('reload-btn').style.background = '#b71c1c';
|
||
updateCountdown();
|
||
reloadTimer = setInterval(updateCountdown, 1000);
|
||
}
|
||
|
||
function stopReload() {
|
||
localStorage.removeItem(LS_KEY);
|
||
clearInterval(reloadTimer);
|
||
document.getElementById('reload-countdown').textContent = '';
|
||
document.getElementById('reload-btn').textContent = '⏵';
|
||
document.getElementById('reload-btn').style.background = '#1a4e8a';
|
||
}
|
||
|
||
window.toggleReload = function() {
|
||
if (reloadTimer) { stopReload(); } else { startReload(); }
|
||
};
|
||
|
||
// Panel immer sichtbar machen (Uhr zeigen)
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
startClock();
|
||
|
||
// War Reload aktiv vor dem letzten Reload?
|
||
if (localStorage.getItem(LS_KEY) === '1') {
|
||
// Zur Stats-Ansicht scrollen
|
||
setTimeout(function() {
|
||
var el = document.getElementById('stats-row');
|
||
if (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
||
}, 600);
|
||
// Reload wieder starten
|
||
setTimeout(startReload, 800);
|
||
}
|
||
});
|
||
})();
|
||
</script>
|
||
</body>
|
||
</html>
|