Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Assignment2/hunvadam-AdamVaradi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Assignment2/hunvadam-AdamVaradi.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix : <http://example.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:Class01 :includes :Sensor029 ;
:includes :Computer101 .

:Sensor029 :hasMeasurement :Measurament8401 .

:Measurament8401 :hasTemperature "29"^^xsd:decimal ;
:atTime "2010-06-12T12:00:12"^^xsd:dateTime .

:Computer101 :hasOwner :User10A .

:User10A :hasName "Pedro" .
54 changes: 54 additions & 0 deletions Assignment2/hunvadam-fromJSONtoJSON-LD.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"@context": {
"ex": "http://www.example.es/",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"ex:fullname": "Ádám Váradi",
"ex:hometown": "Kecskemét",
"ex:age": {
"@value": 30,
"@type": "xsd:integer"
},
"ex:almaMater": "Universidad Politécnica de Madrid",
"ex:parents": {
"ex:father": "Zoltán Váradi",
"ex:mother": "Judit Váczi"
},
"ex:subjects": [
{
"ex:name": "Open Data and Knowledge Graphs",
"ex:teachers": ["CORCHO GARCIA OSCAR", "CASTRO GARCIA RAUL"],
"ex:description": "This subject covers the principles of open data and the creation, management, and querying of knowledge graphs."
},
{
"ex:name": "Data Analysis",
"ex:teachers": ["MENASALVAS RUIZ ERNESTINA"],
"ex:description": "This subject teaches how to do a Data Analysis project plan from top to bottom."
},
{
"ex:name": "Data Mining and Time Series",
"ex:teachers": ["PEREZ AURORA"],
"ex:description": "This subject introduces basic data analysis methods."
},
{
"ex:name": "I&E study",
"ex:teachers": ["Jorge Díaz", "Federico G. Linares", "Sergio Ríos", "Raúl G. Sanchis"],
"ex:description": "This subject is about doing a business case with a partner company."
},
{
"ex:name": "Complex Data in Health",
"ex:teachers": ["OTERO CARRASCO BELEN", "PRIETO SANTAMARIA LUCIA", "RODRIGUEZ GONZALEZ ALEJANDRO", "TEJERA NEVADO PALOMA"],
"ex:description": "This subject introduces what medical data is, how it is stored and used."
},
{
"ex:name": "Cloud computing and big data",
"ex:teachers": ["PATIÑO MARTINEZ MARTA"],
"ex:description": "This subject introduces how big cloud infrastructure-based databases work."
},
{
"ex:name": "Massively Parallel Machine Learning",
"ex:teachers": ["MOZO VELASCO BONIFACIO ALBERTO"],
"ex:description": "This subject gives an under-the-hood view on how basic ML algorithms are coded."
}
]
}
30 changes: 30 additions & 0 deletions Assignment2/hunvadam-fromRDFtoJSON-LD.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"@context": {
"ex": "http://example.org#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@id": "ex:Class01",
"includes": [
{
"@id": "ex:Sensor029",
"hasMeasurement": {
"@id": "ex:Measurement8401",
"hasTemperature": {
"@value": 29,
"@type": "xsd:integer"
},
"atTime": {
"@value": "2010-06-12T12:00:12",
"@type": "xsd:dateTime"
}
}
},
{
"@id": "ex:Computer101",
"hasOwner": {
"@id": "ex:User10A",
"hasName": "Pedro"
}
}
]
}