Science in Media and Scientific Methods
EM-Sci Science in Media and Scienti · Pflichtmodul · Hochschule Darmstadt
URI: http://hr-qde.org/data/koeppe/module_hda_em_sci_science_in_media_and_scienti_475242
Lernziele
Mit Mapping zu ESCO-Skills und Provenance-Daten aus der Säule-B-Pipeline.
Make use of information management techniques; Make use of information management techniques.
Science in Media and Scientific Methods EM-Sci Science in Media and Scientific Methods Science in Media and Scientific Methods
management techniques and read and write scientific publications.
Unmapped Outcomes
Outcomes, die die Pipeline nicht eindeutig einem ESCO-Skill zuordnen konnte und für Curator-Review markiert sind.
Voraussetzungen
ESCO-Skills, die das Modul als hrqde:requiresCompetence deklariert.
Berechnungs-Transparenz Vier Cypher-Queries
Vier Cypher-Queries produzieren die obenstehenden Daten. Parameter sind als Literale eingesetzt — direkt kopierbar in den Neo4j-Browser (http://localhost:7474).
1. Modul-Basisdaten
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_em_sci_science_in_media_and_scienti_475242"})
OPTIONAL MATCH (m)-[:hrqde__offeredBy]->(hei:hrqde__HigherEducationInstitution)
RETURN m.uri AS uri,
m.rdfs__label AS label,
m.hrqde__moduleCode AS code,
m.hrqde__ects AS ects,
m.hrqde__moduleType AS moduleType,
hei.uri AS heiUri,
hei.rdfs__label AS heiLabel
2. Lernziele mit ESCO-Mapping
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_em_sci_science_in_media_and_scienti_475242"})
-[:hrqde__hasOutcome]->(o:hrqde__LearningOutcome)
OPTIONAL MATCH (o)-[:hrqde__targetsCompetence]->(skill)
OPTIONAL MATCH (skill)-[:skosxl__prefLabel]->(label:Resource)
OPTIONAL MATCH (o)-[:hrqde__targetLevel]->(level)
WITH o, skill, level,
collect(label.skosxl__literalForm) AS labelForms
RETURN o.uri AS outcomeUri,
o.rdfs__comment AS outcomeText,
o.hrqde__provenanceConfidence AS confidence,
o.hrqde__provenanceSource AS source,
skill.uri AS skillUri,
labelForms AS skillLabels,
level.uri AS levelUri,
level.rdfs__label AS levelLabel
ORDER BY o.uri
3. Unmapped Outcomes
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_em_sci_science_in_media_and_scienti_475242"})
-[:hrqde__hasUnmappedOutcome]->(u:hrqde__UnmappedLearningOutcome)
RETURN u.uri AS uri,
u.rdfs__label AS label,
u.rdfs__comment AS text,
u.hrqde__reviewReason AS reviewReason,
u.hrqde__evidenceExcerpt AS evidence,
u.hrqde__provenanceConfidence AS confidence
ORDER BY u.uri
4. Voraussetzungen
MATCH (m:hrqde__EducationalModule {uri: "http://hr-qde.org/data/koeppe/module_hda_em_sci_science_in_media_and_scienti_475242"})
-[:hrqde__requiresCompetence]->(skill)
OPTIONAL MATCH (skill)-[:skosxl__prefLabel]->(label:Resource)
WITH skill, collect(label.skosxl__literalForm) AS labelForms
RETURN skill.uri AS skillUri, labelForms
ORDER BY skill.uri