-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcortex-index.owl
91 lines (79 loc) · 3.44 KB
/
cortex-index.owl
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
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY drb "http://www.gael.fr/drb#">
<!ENTITY aeolus "http://www.esa.int/aeolus#">
]>
<rdf:RDF xmlns:rdf = "&rdf;"
xmlns:rdfs = "&rdfs;"
xmlns:owl = "&owl;"
xmlns:drb = "&drb;"
xmlns:aeolus = "&aeolus;">
<owl:Ontology rdf:about="&aeolus;"/>
<!--
Based on
https://earth.esa.int/pi/esa?type=file&table=aotarget&cmd=image&alias=Aeolus_L2B_2C_Input_Output_DD_ICD
https://earth.esa.int/pi/esa?type=file&table=aotarget&cmd=image&alias=Aeolus_L1B_Input_Output_DD_ICD
-->
<!-- ========================================= -->
<!-- -->
<!-- Aeolus PRODUCT -->
<!-- -->
<!-- ========================================= -->
<owl:Class rdf:about="&aeolus;product">
<rdfs:label xml:lang="en">Aeolus Product</rdfs:label>
<rdfs:comment xml:lang="en">
</rdfs:comment>
<rdfs:subClassOf rdf:resource="&drb;tgz"/>
<drb:signature rdf:parseType="Resource">
<drb:nameMatch>AE_(OPER|RPRO|TEST)_.........._[0-9]{8}T[0-9]{6}.*\.(TGZ|tar)</drb:nameMatch>
</drb:signature>
</owl:Class>
<!-- ========================================= -->
<!-- XML Header -->
<!-- ========================================= -->
<owl:Class rdf:about="&aeolus;productXmlHeader">
<rdfs:label xml:lang="en">Aeolus Product: XML Header</rdfs:label>
<rdfs:comment xml:lang="en">
</rdfs:comment>
<rdfs:subClassOf rdf:resource="&drb;item"/>
<rdfs:subClassOf rdf:resource="&drb;xml-content"/>
<drb:signature rdf:parseType="Resource">
<drb:nameMatch>AE_(OPER|RPRO|TEST)_.........._[0-9]{8}T[0-9]{6}.*\.HDR</drb:nameMatch>
</drb:signature>
</owl:Class>
<!-- ========================================= -->
<!-- DBL File L1B -->
<!-- ========================================= -->
<owl:Class rdf:about="&aeolus;product1bDbl">
<rdfs:label xml:lang="en">AEOLUS ALD_U_N_1B DBL</rdfs:label>
<rdfs:comment xml:lang="en">
</rdfs:comment>
<rdfs:subClassOf rdf:resource="&drb;item"/>
<drb:signature rdf:parseType="Resource">
<drb:nameMatch>AE_(OPER|RPRO|TEST)_ALD_U_N_1B_[0-9]{8}T[0-9]{6}.*\.DBL</drb:nameMatch>
</drb:signature>
<drb:schemaLocation>
xsd/ALD_U_N_1B_B11.xsd
</drb:schemaLocation>
<drb:implementationIdentifier>sdf</drb:implementationIdentifier>
</owl:Class>
<!-- ========================================= -->
<!-- DBL File L2B -->
<!-- ========================================= -->
<owl:Class rdf:about="&aeolus;product2bDbl">
<rdfs:label xml:lang="en">AEOLUS ALD_U_N_1B DBL</rdfs:label>
<rdfs:comment xml:lang="en">
</rdfs:comment>
<rdfs:subClassOf rdf:resource="&drb;item"/>
<drb:signature rdf:parseType="Resource">
<drb:nameMatch>AE_(OPER|RPRO|TEST)_ALD_U_N_2B_[0-9]{8}T[0-9]{6}.*\.DBL</drb:nameMatch>
</drb:signature>
<drb:schemaLocation>
xsd/ALD_U_N_2B_B11.xsd
</drb:schemaLocation>
<drb:implementationIdentifier>sdf</drb:implementationIdentifier>
</owl:Class>
</rdf:RDF>