-
Notifications
You must be signed in to change notification settings - Fork 0
/
Engineering.json
101 lines (99 loc) · 5.25 KB
/
Engineering.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"@context": {
"@base": "http://ontology.projectchronos.eu/engineering",
"engineering": "http://ontology.projectchronos.eu/engineering/",
"device": "http://ontology.projectchronos.eu/devices/ontology",
"schema": "https://schema.org/",
"skos": "http://www.w3.org/2004/02/skos/core#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"dbpedia": "http://dbpedia.org/ontology/",
"defines": {
"@reverse": "rdfs:isDefinedBy"
}
},
"@id": "",
"@type": "http://www.w3.org/2002/07/owl#Ontology",
"rdfs:label": "Generic engineering concepts ",
"rdfs:comment": "a set of concepts to be used to describe engineering objects",
"defines": [
{
"@id": "http://ontology.projectchronos.eu/engineering/Satellite_Device",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/Satellite_Device"},
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "an artificial satellite",
"rdfs:comment": "a document representing an artificial satellite",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/Spacecraft" }
],
"rdfs:label": "Satellite_Device"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/GroundToOrbitVehicle",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/GroundToOrbitVehicle" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "a rocket or any transportation vehicle that can reach orbit",
"rdfs:comment": "a document representing a rocket or any transportation vehicle that can reach orbit",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/Spacecraft" },
{ "@id": "http://umbel.org/umbel/rc/AirTransportationVehicle" }
],
"rdfs:label": "GroundToOrbitVehicle"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/InformationGatheringDevice",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/InformationGatheringDevice" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "device typically used in instances of gathering information.",
"rdfs:comment": "a document representing a information gathering device",
"rdfs:label": "InformationGatheringDevice"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/AstronomicalSatellite",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/AstronomicalSatellite" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "an artificial satellite",
"rdfs:comment": "a document representing an artificial satellite",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/Satellite_Device" },
{ "@id": "http://umbel.org/umbel/rc/AstronomicalObservatory" }
],
"rdfs:label": "AstronomicalSatellite"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/WeatherSatellite",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/WeatherSatellite" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "an satellite collecting data on the weather of the heavenly body which it orbits",
"rdfs:comment": "a document representing a weather satellite",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/Satellite_Device" },
{ "@id": "http://umbel.org/umbel/rc/InformationGatheringDevice" }
],
"rdfs:label": "WeatherSatellite"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/EarthRemoteSensingSatellite",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/EarthRemoteSensingSatellite" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "an artificial satellite",
"rdfs:comment": "a document representing an artificial satellite",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/Satellite_Device" }
],
"rdfs:label": "EarthRemoteSensingSatellite"
},
{
"@id": "http://ontology.projectchronos.eu/engineering/SpaceProbe",
"owl:sameAs" : { "@id": "http://umbel.org/umbel/rc/SpaceProbe" },
"@type": "http://www.w3.org/2002/07/owl#Class",
"skos:prefLabel": "These are unmanned vehicles which are sent to other bodies in the Solar system for the purpose gathering data. Sometimes a separate vehicle (probe or lander) is launched from the main vehicle, the smaller vehicle usually being referred to as a probe. In these cases, both vehicle would be SpaceProbes in the present sense.",
"rdfs:comment": "a document representing a space faring probe",
"rdfs:subClassOf": [
{ "@id": "http://umbel.org/umbel/rc/InformationGatheringDevice" }
],
"rdfs:label": "SpaceProbe"
}
]
}