Advanced Video Production
820010ME01 · Pflichtmodul · Hochschule Darmstadt
URI: http://hr-qde.org/data/koeppe/module_hda_820010me01_d0a7a9
Lernziele
Mit Mapping zu ESCO-Skills und Provenance-Daten aus der Säule-B-Pipeline.
a comprehensive project management plan to chart the time allocated to the different stages of the • Use a professional project management from brief and concept through to implementation and
multichannel audio recording parallel to the shoot, techniques for minimising audio interference in an
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_820010me01_d0a7a9"})
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_820010me01_d0a7a9"})
-[: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_820010me01_d0a7a9"})
-[: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_820010me01_d0a7a9"})
-[: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