drbx-kb-metadata-common 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- drbx_kb_metadata_common-1.1.0/PKG-INFO +28 -0
- drbx_kb_metadata_common-1.1.0/README.md +17 -0
- drbx_kb_metadata_common-1.1.0/pyproject.toml +28 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common/__init__.py +26 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common/common-metadata.ttl +632 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common/iceberg-metadata.ttl +118 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/PKG-INFO +28 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/SOURCES.txt +11 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/dependency_links.txt +1 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/entry_points.txt +2 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/requires.txt +2 -0
- drbx_kb_metadata_common-1.1.0/python/drbx_kb_metadata_common.egg-info/top_level.txt +1 -0
- drbx_kb_metadata_common-1.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: drbx-kb-metadata-common
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: DRB Knowledge-Base metadata descriptor: common structures (TTL, auto-loaded)
|
|
5
|
+
Author-email: GAEL Systems <drb-python@gael.fr>
|
|
6
|
+
License-Expression: LGPL-3.0-or-later
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: drb>=2.9.0
|
|
10
|
+
Requires-Dist: drb-metadata>=1.4
|
|
11
|
+
|
|
12
|
+
# Common metadata
|
|
13
|
+
|
|
14
|
+
The common metadata project contains metadata that can be generalized to any others metadata missions.
|
|
15
|
+
|
|
16
|
+
## Python packaging (pip)
|
|
17
|
+
|
|
18
|
+
Since drb-testbench#40 phase 1, this repo also ships a Python package,
|
|
19
|
+
**`drbx-kb-metadata-common`**, mirroring the `drbx-kb-topics-*` pattern: the package ships the repo's
|
|
20
|
+
metadata TTLs (the very same files as the Maven resources) and exposes them
|
|
21
|
+
through `cortex_paths()` (drb-testbench#15); drb core >= 2.9 merges every file
|
|
22
|
+
into the shared topic graph at resolver import. `drb-metadata` (`MetadataAddon`) then works **pip-only, without any
|
|
23
|
+
Fuseki service**:
|
|
24
|
+
|
|
25
|
+
```shell
|
|
26
|
+
pip install drbx-kb-metadata-common
|
|
27
|
+
```
|
|
28
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Common metadata
|
|
2
|
+
|
|
3
|
+
The common metadata project contains metadata that can be generalized to any others metadata missions.
|
|
4
|
+
|
|
5
|
+
## Python packaging (pip)
|
|
6
|
+
|
|
7
|
+
Since drb-testbench#40 phase 1, this repo also ships a Python package,
|
|
8
|
+
**`drbx-kb-metadata-common`**, mirroring the `drbx-kb-topics-*` pattern: the package ships the repo's
|
|
9
|
+
metadata TTLs (the very same files as the Maven resources) and exposes them
|
|
10
|
+
through `cortex_paths()` (drb-testbench#15); drb core >= 2.9 merges every file
|
|
11
|
+
into the shared topic graph at resolver import. `drb-metadata` (`MetadataAddon`) then works **pip-only, without any
|
|
12
|
+
Fuseki service**:
|
|
13
|
+
|
|
14
|
+
```shell
|
|
15
|
+
pip install drbx-kb-metadata-common
|
|
16
|
+
```
|
|
17
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "setuptools-scm>=8"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "drbx-kb-metadata-common"
|
|
7
|
+
description = "DRB Knowledge-Base metadata descriptor: common structures (TTL, auto-loaded)"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
|
+
license = "LGPL-3.0-or-later"
|
|
11
|
+
authors = [{ name = "GAEL Systems", email = "drb-python@gael.fr" }]
|
|
12
|
+
dynamic = ["version"]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"drb>=2.9.0",
|
|
15
|
+
"drb-metadata>=1.4",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.entry-points."drb.topic"]
|
|
19
|
+
metadata-common = "drbx_kb_metadata_common"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools]
|
|
22
|
+
package-dir = { "" = "python" }
|
|
23
|
+
packages = ["drbx_kb_metadata_common"]
|
|
24
|
+
|
|
25
|
+
[tool.setuptools.package-data]
|
|
26
|
+
drbx_kb_metadata_common = ["*.ttl"]
|
|
27
|
+
|
|
28
|
+
[tool.setuptools_scm]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""DRB Knowledge-Base metadata descriptor: Common.
|
|
2
|
+
|
|
3
|
+
Phase 1 (drb-testbench#40): this package ships this repo's metadata TTLs
|
|
4
|
+
(the very same files as the Maven resources — symlinked at source, resolved
|
|
5
|
+
at build) and exposes them through :func:`cortex_paths` (drb-testbench#15).
|
|
6
|
+
drb core >= 2.9 merges every returned file into the shared topic graph at
|
|
7
|
+
resolver import; ``drb-metadata`` (``MetadataAddon``) then finds the
|
|
8
|
+
``metadataset:`` triples without any Fuseki service.
|
|
9
|
+
"""
|
|
10
|
+
import os
|
|
11
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
12
|
+
|
|
13
|
+
try:
|
|
14
|
+
__version__ = version("drbx-kb-metadata-common")
|
|
15
|
+
except PackageNotFoundError: # running from a source tree without install
|
|
16
|
+
__version__ = "0+unknown"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def cortex_paths():
|
|
20
|
+
"""Paths of every packaged descriptor TTL, for the drb core loader."""
|
|
21
|
+
here = os.path.dirname(__file__)
|
|
22
|
+
return sorted(
|
|
23
|
+
os.path.join(here, name)
|
|
24
|
+
for name in os.listdir(here)
|
|
25
|
+
if name.endswith(".ttl")
|
|
26
|
+
)
|
|
@@ -0,0 +1,632 @@
|
|
|
1
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
2
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
3
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
4
|
+
|
|
5
|
+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
|
6
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
7
|
+
|
|
8
|
+
@prefix drb: <http://www.gael.fr/drb#> .
|
|
9
|
+
|
|
10
|
+
@prefix metadataset: <http://knowledge-base.gael.fr/drb/addons/metadataset/> .
|
|
11
|
+
|
|
12
|
+
@prefix property: <http://knowledge-base.gael.fr/drb/addons/metadata/property/> .
|
|
13
|
+
|
|
14
|
+
<http://knowledge-base.gael.fr/drb/common/> a owl:Ontology .
|
|
15
|
+
|
|
16
|
+
# =============================================================================
|
|
17
|
+
# Structures
|
|
18
|
+
# =============================================================================
|
|
19
|
+
|
|
20
|
+
drb:metadata rdf:type owl:AnnotationProperty .
|
|
21
|
+
|
|
22
|
+
property:category rdf:type owl:AnnotationProperty .
|
|
23
|
+
|
|
24
|
+
property:name rdf:type owl:AnnotationProperty .
|
|
25
|
+
|
|
26
|
+
property:type rdf:type owl:AnnotationProperty .
|
|
27
|
+
|
|
28
|
+
property:description rdf:type owl:AnnotationProperty .
|
|
29
|
+
|
|
30
|
+
# =============================================================================
|
|
31
|
+
# Metadata set
|
|
32
|
+
# =============================================================================
|
|
33
|
+
|
|
34
|
+
# =====================================
|
|
35
|
+
# Category: platform
|
|
36
|
+
# =====================================
|
|
37
|
+
|
|
38
|
+
metadataset:platform_name rdf:type owl:AnnotationProperty ;
|
|
39
|
+
property:category "platform" ;
|
|
40
|
+
property:name "Platform name" ;
|
|
41
|
+
property:type "text/plain" ;
|
|
42
|
+
property:description "The mission full name of the platform. This name is not a perfect identifier." ;
|
|
43
|
+
rdfs:subPropertyOf drb:metadata .
|
|
44
|
+
|
|
45
|
+
metadataset:platform_short_name rdf:type owl:AnnotationProperty ;
|
|
46
|
+
property:category "platform" ;
|
|
47
|
+
property:name "Platform short name" ;
|
|
48
|
+
property:type "text/plain" ;
|
|
49
|
+
property:description "The mission short name of the platform. This name is not a perfect identifier." ;
|
|
50
|
+
rdfs:subPropertyOf drb:metadata .
|
|
51
|
+
|
|
52
|
+
metadataset:platform_serial_identifier rdf:type owl:AnnotationProperty ;
|
|
53
|
+
property:category "platform" ;
|
|
54
|
+
property:name "Platform serial identifier" ;
|
|
55
|
+
property:type "text/plain" ;
|
|
56
|
+
property:description "The platform serial identifier is the sequence number of the platform among the mission. This serial identifier may follow different rules. It may start from 0 or 1, be Roman or alphabetical numbers, or a combination (e.g. '1', '2', '1A', 'B', 'IX', etc.)." ;
|
|
57
|
+
rdfs:subPropertyOf drb:metadata .
|
|
58
|
+
|
|
59
|
+
metadataset:platform_nssdc_identifier rdf:type owl:AnnotationProperty ;
|
|
60
|
+
property:category "platform" ;
|
|
61
|
+
property:name "Platform NSSDC identifier" ;
|
|
62
|
+
property:type "text/plain" ;
|
|
63
|
+
property:description "Univocally identifies the platform. The exact syntax and lexical space of this identifier is defined by the World Data Center for Satellite Information (WDC-SI), which depends on the NASA's National Space Science Data Center. For each platform, the exact identifier is available from the mission name at the address: https://nssdc.gsfc.nasa.gov/nmc/SpacecraftQuery.jsp." ;
|
|
64
|
+
rdfs:subPropertyOf drb:metadata .
|
|
65
|
+
|
|
66
|
+
# =====================================
|
|
67
|
+
# Category: instrument
|
|
68
|
+
# =====================================
|
|
69
|
+
|
|
70
|
+
metadataset:instrument_name rdf:type owl:AnnotationProperty ;
|
|
71
|
+
property:category "instrument" ;
|
|
72
|
+
property:name "Instrument name" ;
|
|
73
|
+
property:type "text/plain" ;
|
|
74
|
+
property:description "Name of the instrument used for acquiring the data." ;
|
|
75
|
+
rdfs:subPropertyOf drb:metadata .
|
|
76
|
+
|
|
77
|
+
metadataset:instrument_short_name rdf:type owl:AnnotationProperty ;
|
|
78
|
+
property:category "instrument" ;
|
|
79
|
+
property:name "Instrument short name" ;
|
|
80
|
+
property:type "text/plain" ;
|
|
81
|
+
property:description "Short name of the instrument used for acquiring the data." ;
|
|
82
|
+
rdfs:subPropertyOf drb:metadata .
|
|
83
|
+
|
|
84
|
+
# =====================================
|
|
85
|
+
# Category: sensor
|
|
86
|
+
# =====================================
|
|
87
|
+
|
|
88
|
+
metadataset:sensor_type rdf:type owl:AnnotationProperty ;
|
|
89
|
+
property:category "sensor" ;
|
|
90
|
+
property:name "Sensor type" ;
|
|
91
|
+
property:type "text/plain" ;
|
|
92
|
+
property:description "Sensor type based on codelist. Values: 'OPTICAL', 'RADAR', 'ALTIMETRIC', 'ATMOSPHERIC', 'LIMB'." ;
|
|
93
|
+
rdfs:subPropertyOf drb:metadata .
|
|
94
|
+
|
|
95
|
+
metadataset:operational_mode rdf:type owl:AnnotationProperty ;
|
|
96
|
+
property:category "sensor" ;
|
|
97
|
+
property:name "Operational mode" ;
|
|
98
|
+
property:type "text/plain" ;
|
|
99
|
+
property:description "Sensor mode. Possible values are mission specific." ;
|
|
100
|
+
rdfs:subPropertyOf drb:metadata .
|
|
101
|
+
|
|
102
|
+
metadataset:swath_identifier rdf:type owl:AnnotationProperty ;
|
|
103
|
+
property:category "sensor" ;
|
|
104
|
+
property:name "Swath identifier" ;
|
|
105
|
+
property:type "text/plain" ;
|
|
106
|
+
property:description "Swath identifier for the sensor." ;
|
|
107
|
+
rdfs:subPropertyOf drb:metadata .
|
|
108
|
+
|
|
109
|
+
# =====================================
|
|
110
|
+
# Category: processing
|
|
111
|
+
# =====================================
|
|
112
|
+
|
|
113
|
+
metadataset:processing_level rdf:type owl:AnnotationProperty ;
|
|
114
|
+
property:category "processing" ;
|
|
115
|
+
property:name "Processing level" ;
|
|
116
|
+
property:type "text/plain" ;
|
|
117
|
+
property:description "The level of the last processing." ;
|
|
118
|
+
rdfs:subPropertyOf drb:metadata .
|
|
119
|
+
|
|
120
|
+
metadataset:processing_name rdf:type owl:AnnotationProperty ;
|
|
121
|
+
property:category "processing" ;
|
|
122
|
+
property:name "Processing name" ;
|
|
123
|
+
property:type "text/plain" ;
|
|
124
|
+
property:description "The name of the last processing." ;
|
|
125
|
+
rdfs:subPropertyOf drb:metadata .
|
|
126
|
+
|
|
127
|
+
metadataset:processing_mode rdf:type owl:AnnotationProperty ;
|
|
128
|
+
property:category "processing" ;
|
|
129
|
+
property:name "Processing mode" ;
|
|
130
|
+
property:type "text/plain" ;
|
|
131
|
+
property:description "Mode of the last processing. Possible values are mission specific. Examples of values are: 'NRT', 'NOMINAL', 'BACKLOGGED', 'REPROCESSED', 'VALIDATE'." ;
|
|
132
|
+
rdfs:subPropertyOf drb:metadata .
|
|
133
|
+
|
|
134
|
+
metadataset:processing_center rdf:type owl:AnnotationProperty ;
|
|
135
|
+
property:category "processing" ;
|
|
136
|
+
property:name "Processing center" ;
|
|
137
|
+
property:type "text/plain" ;
|
|
138
|
+
property:description "Code of the center where last processing was performed." ;
|
|
139
|
+
rdfs:subPropertyOf drb:metadata .
|
|
140
|
+
|
|
141
|
+
metadataset:processing_date rdf:type owl:AnnotationProperty ;
|
|
142
|
+
property:category "processing" ;
|
|
143
|
+
property:name "Processing date" ;
|
|
144
|
+
property:type "text/date+iso8601" ;
|
|
145
|
+
property:description "Date time of the last processing." ;
|
|
146
|
+
rdfs:subPropertyOf drb:metadata .
|
|
147
|
+
|
|
148
|
+
metadataset:processor_name rdf:type owl:AnnotationProperty ;
|
|
149
|
+
property:category "processing" ;
|
|
150
|
+
property:name "Processor name" ;
|
|
151
|
+
property:type "text/plain" ;
|
|
152
|
+
property:description "Name of the processor software used for the last processing." ;
|
|
153
|
+
rdfs:subPropertyOf drb:metadata .
|
|
154
|
+
|
|
155
|
+
metadataset:processor_version rdf:type owl:AnnotationProperty ;
|
|
156
|
+
property:category "processing" ;
|
|
157
|
+
property:name "Processor version" ;
|
|
158
|
+
property:type "text/plain" ;
|
|
159
|
+
property:description "Version of the processor software used for the last processing." ;
|
|
160
|
+
rdfs:subPropertyOf drb:metadata .
|
|
161
|
+
|
|
162
|
+
metadataset:creation_date rdf:type owl:AnnotationProperty ;
|
|
163
|
+
property:category "processing" ;
|
|
164
|
+
property:name "Creation date" ;
|
|
165
|
+
property:type "text/date+iso8601" ;
|
|
166
|
+
property:description "Creation date for the item. When retrieved from a metadata catalogue, the creation date is the date when the metadata item was ingested for the first time (i.e. inserted) in the catalogue." ;
|
|
167
|
+
rdfs:subPropertyOf drb:metadata .
|
|
168
|
+
|
|
169
|
+
# =====================================
|
|
170
|
+
# Category: acquisition
|
|
171
|
+
# =====================================
|
|
172
|
+
|
|
173
|
+
metadataset:beginning_date_time rdf:type owl:AnnotationProperty ;
|
|
174
|
+
property:category "acquisition" ;
|
|
175
|
+
property:name "Beginning date time" ;
|
|
176
|
+
property:type "text/date+iso8601" ;
|
|
177
|
+
property:description "Acquisition start date time, i.e. time of the oldest data within the product. Format standard: YYYY-MM-DDThh:mm:ss.mmmZ" ;
|
|
178
|
+
rdfs:subPropertyOf drb:metadata .
|
|
179
|
+
|
|
180
|
+
metadataset:ending_date_time rdf:type owl:AnnotationProperty ;
|
|
181
|
+
property:category "acquisition" ;
|
|
182
|
+
property:name "Ending date time" ;
|
|
183
|
+
property:type "text/date+iso8601" ;
|
|
184
|
+
property:description "Acquisition end date time, i.e. time of the most recent data within the product. Format standard: YYYY-MM-DDThh:mm:ss.mmmZ" ;
|
|
185
|
+
rdfs:subPropertyOf drb:metadata .
|
|
186
|
+
|
|
187
|
+
metadataset:acquisition_station rdf:type owl:AnnotationProperty ;
|
|
188
|
+
property:category "acquisition" ;
|
|
189
|
+
property:name "Acquisition station" ;
|
|
190
|
+
property:type "text/plain" ;
|
|
191
|
+
property:description "Acquisition / receiving station code. Possible values are mission specific." ;
|
|
192
|
+
rdfs:subPropertyOf drb:metadata .
|
|
193
|
+
|
|
194
|
+
metadataset:acquisition_type rdf:type owl:AnnotationProperty ;
|
|
195
|
+
property:category "acquisition" ;
|
|
196
|
+
property:name "Acquisition type" ;
|
|
197
|
+
property:type "text/plain" ;
|
|
198
|
+
property:description """Used to distinguish at a high level the appropriateness of the acquisition for 'general' use, whether the product is a nominal acquisition, special calibration product or other. Values: 'NOMINAL', 'CALIBRATION', 'OTHER'.
|
|
199
|
+
The broad value defined by the acquisition_type is however too restrictive, so the 'OTHER' value can be extented to 'OTHER:.*' value. Examples of value: 'OTHER:AUXILIARY', 'OTHER:TEST', ...""" ;
|
|
200
|
+
rdfs:subPropertyOf drb:metadata .
|
|
201
|
+
|
|
202
|
+
metadataset:status rdf:type owl:AnnotationProperty ;
|
|
203
|
+
property:category "acquisition" ;
|
|
204
|
+
property:name "Status" ;
|
|
205
|
+
property:type "text/plain" ;
|
|
206
|
+
property:description "Refers to product status. Values : 'ARCHIVED', 'ACQUIRED', 'CANCELLED', 'FAILED', 'PLANNED', 'POTENTIAL', 'REJECTED'." ;
|
|
207
|
+
rdfs:subPropertyOf drb:metadata .
|
|
208
|
+
|
|
209
|
+
metadataset:polarisation_mode rdf:type owl:AnnotationProperty ;
|
|
210
|
+
property:category "acquisition" ;
|
|
211
|
+
property:name "Polarisation mode" ;
|
|
212
|
+
property:type "text/plain" ;
|
|
213
|
+
property:description "Polarisation mode taken from codelist: 'S' (for single), 'D' (for dual), 'T' (for twin), 'Q' (for quad), 'UNDEFINED'." ;
|
|
214
|
+
rdfs:subPropertyOf drb:metadata .
|
|
215
|
+
|
|
216
|
+
metadataset:polarisation_channels rdf:type owl:AnnotationProperty ;
|
|
217
|
+
property:category "acquisition" ;
|
|
218
|
+
property:name "Polarisation channels" ;
|
|
219
|
+
property:type "text/plain" ;
|
|
220
|
+
property:description "For radars designed to transmit either vertically polarised or horizontally polarised radiation. This means that the electric field of the wave is in a vertical plane or a horizontal plane. Likewise, the radar can receive either vertically or horizontally polarised radiation, and sometimes both. The planes of transmitted and received polarisation are designated by the letters H for Horizontal and V for Vertical. Thus the polarisation of a radar image can be HH, for horizontal transmit, horizontal receive, VV for vertical transmit, vertical receive, HV for horizontal transmit vertical receive, and vice versa (VH). Possible values: 'HH', 'HV', 'VH', 'VV', 'HH, VV', 'HH, VH', 'HH, HV', 'VH, VV', 'VH, HV', 'VV, HV', 'VV, VH', 'HV, VH', 'HH, HV, VH, VV', UNDEFINED." ;
|
|
221
|
+
rdfs:subPropertyOf drb:metadata .
|
|
222
|
+
|
|
223
|
+
# =====================================
|
|
224
|
+
# Category: orbit
|
|
225
|
+
# =====================================
|
|
226
|
+
|
|
227
|
+
metadataset:orbit_number rdf:type owl:AnnotationProperty ;
|
|
228
|
+
property:category "orbit" ;
|
|
229
|
+
property:name "Orbit number" ;
|
|
230
|
+
property:type "text/integer" ;
|
|
231
|
+
property:description "Absolute orbit number to which the oldest data unit of the product refers." ;
|
|
232
|
+
rdfs:subPropertyOf drb:metadata .
|
|
233
|
+
|
|
234
|
+
metadataset:last_orbit_number rdf:type owl:AnnotationProperty ;
|
|
235
|
+
property:category "orbit" ;
|
|
236
|
+
property:name "Last orbit number" ;
|
|
237
|
+
property:type "text/integer" ;
|
|
238
|
+
property:description "Absolute orbit number to which the most recent data unit of the product refers." ;
|
|
239
|
+
rdfs:subPropertyOf drb:metadata .
|
|
240
|
+
|
|
241
|
+
metadataset:relative_orbit_number rdf:type owl:AnnotationProperty ;
|
|
242
|
+
property:category "orbit" ;
|
|
243
|
+
property:name "Relative orbit number" ;
|
|
244
|
+
property:type "text/integer" ;
|
|
245
|
+
property:description "Relative orbit number to which the oldest data unit of the product refers." ;
|
|
246
|
+
rdfs:subPropertyOf drb:metadata .
|
|
247
|
+
|
|
248
|
+
metadataset:last_relative_orbit_number rdf:type owl:AnnotationProperty ;
|
|
249
|
+
property:category "orbit" ;
|
|
250
|
+
property:name "Last relative orbit number" ;
|
|
251
|
+
property:type "text/integer" ;
|
|
252
|
+
property:description "Relative orbit number to which the most recent data unit of the product refers." ;
|
|
253
|
+
rdfs:subPropertyOf drb:metadata .
|
|
254
|
+
|
|
255
|
+
metadataset:orbit_direction rdf:type owl:AnnotationProperty ;
|
|
256
|
+
property:category "orbit" ;
|
|
257
|
+
property:name "Orbit direction" ;
|
|
258
|
+
property:type "text/plain" ;
|
|
259
|
+
property:description "Acquisition orbit direction to which the oldest data unit of the product refers. Values: 'ASCENDING', 'DESCENDING'." ;
|
|
260
|
+
rdfs:subPropertyOf drb:metadata .
|
|
261
|
+
|
|
262
|
+
metadataset:last_orbit_direction rdf:type owl:AnnotationProperty ;
|
|
263
|
+
property:category "orbit" ;
|
|
264
|
+
property:name "Last orbit direction" ;
|
|
265
|
+
property:type "text/plain" ;
|
|
266
|
+
property:description "Acquisition orbit direction to which the most recent data unit of the product refers. Values: 'ASCENDING', 'DESCENDING'." ;
|
|
267
|
+
rdfs:subPropertyOf drb:metadata .
|
|
268
|
+
|
|
269
|
+
metadataset:pass_number rdf:type owl:AnnotationProperty ;
|
|
270
|
+
property:category "orbit" ;
|
|
271
|
+
property:name "Pass number" ;
|
|
272
|
+
property:type "text/integer" ;
|
|
273
|
+
property:description "Pass number to which the oldest data unit of the product refers." ;
|
|
274
|
+
rdfs:subPropertyOf drb:metadata .
|
|
275
|
+
|
|
276
|
+
metadataset:last_pass_number rdf:type owl:AnnotationProperty ;
|
|
277
|
+
property:category "orbit" ;
|
|
278
|
+
property:name "Last pass number" ;
|
|
279
|
+
property:type "text/integer" ;
|
|
280
|
+
property:description "Pass number to which the most recent data unit of the product refers." ;
|
|
281
|
+
rdfs:subPropertyOf drb:metadata .
|
|
282
|
+
|
|
283
|
+
metadataset:relative_pass_number rdf:type owl:AnnotationProperty ;
|
|
284
|
+
property:category "orbit" ;
|
|
285
|
+
property:name "Relative pass number" ;
|
|
286
|
+
property:type "text/integer" ;
|
|
287
|
+
property:description "Pass number (since start of cycle) to which the oldest data unit of the product refers." ;
|
|
288
|
+
rdfs:subPropertyOf drb:metadata .
|
|
289
|
+
|
|
290
|
+
metadataset:last_relative_pass_number rdf:type owl:AnnotationProperty ;
|
|
291
|
+
property:category "orbit" ;
|
|
292
|
+
property:name "Last relative pass number" ;
|
|
293
|
+
property:type "text/integer" ;
|
|
294
|
+
property:description "Pass number (since start of cycle) to which the most recent data unit of the product refers." ;
|
|
295
|
+
rdfs:subPropertyOf drb:metadata .
|
|
296
|
+
|
|
297
|
+
metadataset:cycle_number rdf:type owl:AnnotationProperty ;
|
|
298
|
+
property:category "orbit" ;
|
|
299
|
+
property:name "Cycle number" ;
|
|
300
|
+
property:type "text/integer" ;
|
|
301
|
+
property:description "Orbit number cycle to which the oldest data unit of the product refers." ;
|
|
302
|
+
rdfs:subPropertyOf drb:metadata .
|
|
303
|
+
|
|
304
|
+
metadataset:phase_identifier rdf:type owl:AnnotationProperty ;
|
|
305
|
+
property:category "orbit" ;
|
|
306
|
+
property:name "Phase identifier" ;
|
|
307
|
+
property:type "text/plain" ;
|
|
308
|
+
property:description "Orbit phase identifier to which the oldest data unit of the data object refers." ;
|
|
309
|
+
rdfs:subPropertyOf drb:metadata .
|
|
310
|
+
|
|
311
|
+
# =====================================
|
|
312
|
+
# Category: frame_set
|
|
313
|
+
# =====================================
|
|
314
|
+
|
|
315
|
+
# This metadata is deprecated. It should not be used, prefer metadataset:coordinates_gml
|
|
316
|
+
metadataset:coordinates rdf:type owl:AnnotationProperty ;
|
|
317
|
+
property:category "frame_set" ;
|
|
318
|
+
property:name "Coordinates" ;
|
|
319
|
+
property:type "application/gml+xml" ;
|
|
320
|
+
property:description "Boundaries of the frame. In addition to the constraints imposed by the GML type for linear rings, the coordinates shall be declared in a counter-clockwise order." ;
|
|
321
|
+
rdfs:subPropertyOf drb:metadata .
|
|
322
|
+
|
|
323
|
+
metadataset:coordinates_gml rdf:type owl:AnnotationProperty ;
|
|
324
|
+
property:category "frame_set" ;
|
|
325
|
+
property:name "Coordinates (GML)" ;
|
|
326
|
+
property:type "application/gml+xml" ;
|
|
327
|
+
property:description "Boundaries of the frame. In addition to the constraints imposed by the GML type for linear rings, the coordinates shall be declared in a counter-clockwise order." ;
|
|
328
|
+
rdfs:subPropertyOf drb:metadata .
|
|
329
|
+
|
|
330
|
+
metadataset:coordinates_geojson rdf:type owl:AnnotationProperty ;
|
|
331
|
+
property:category "frame_set" ;
|
|
332
|
+
property:name "Coordinates (GeoJSON)" ;
|
|
333
|
+
property:type "application/geo+json" ;
|
|
334
|
+
property:description "Boundaries of the frame. The coordinates can be declared in a clockwise or counter-clockwise order." ;
|
|
335
|
+
rdfs:subPropertyOf drb:metadata .
|
|
336
|
+
|
|
337
|
+
# =====================================
|
|
338
|
+
# Category: quality
|
|
339
|
+
# =====================================
|
|
340
|
+
|
|
341
|
+
metadataset:cloud_cover_percentage rdf:type owl:AnnotationProperty ;
|
|
342
|
+
property:category "quality" ;
|
|
343
|
+
property:name "Cloud cover percentage" ;
|
|
344
|
+
property:type "text/double" ;
|
|
345
|
+
property:description "The proportion of a spatial extent covered by clouds, expressed as a percentage of the total observed area." ;
|
|
346
|
+
rdfs:subPropertyOf drb:metadata .
|
|
347
|
+
|
|
348
|
+
# =====================================
|
|
349
|
+
# Category: other
|
|
350
|
+
# =====================================
|
|
351
|
+
|
|
352
|
+
metadataset:filename rdf:type owl:AnnotationProperty ;
|
|
353
|
+
property:category "other" ;
|
|
354
|
+
property:name "Filename" ;
|
|
355
|
+
property:type "text/plain" ;
|
|
356
|
+
property:description "Product file name. This can be a file, a package (e.g. zip, tar...) or a folder." ;
|
|
357
|
+
rdfs:subPropertyOf drb:metadata .
|
|
358
|
+
|
|
359
|
+
metadataset:product_type rdf:type owl:AnnotationProperty ;
|
|
360
|
+
property:category "other" ;
|
|
361
|
+
property:name "Product type" ;
|
|
362
|
+
property:type "text/plain" ;
|
|
363
|
+
property:description "Product type. Examples of values are: 'ASA_IM__0P', 'EW_GRDM_1S', 'S2MSI1C'." ;
|
|
364
|
+
rdfs:subPropertyOf drb:metadata .
|
|
365
|
+
|
|
366
|
+
metadataset:product_size rdf:type owl:AnnotationProperty ;
|
|
367
|
+
property:category "other" ;
|
|
368
|
+
property:name "Product size" ;
|
|
369
|
+
property:type "text/long" ;
|
|
370
|
+
property:description "Size of the product in bytes (i.e. of the file if the product is a single file ; of the package if the product is a zip, a tar... ; of the folder (recursive) if the product is a folder)." ;
|
|
371
|
+
rdfs:subPropertyOf drb:metadata .
|
|
372
|
+
|
|
373
|
+
metadataset:timeliness rdf:type owl:AnnotationProperty ;
|
|
374
|
+
property:category "other" ;
|
|
375
|
+
property:name "Timeliness" ;
|
|
376
|
+
property:type "text/plain" ;
|
|
377
|
+
property:description "Timeliness of the product, such as 'near real time', 'rush'. Possible values are mission specific. Examples of values are: 'NOMINAL', 'NRT' for Near Real Time, 'NTC' for Non Time Critical, 'STC' for Short Time Critical." ;
|
|
378
|
+
rdfs:subPropertyOf drb:metadata .
|
|
379
|
+
|
|
380
|
+
metadataset:format rdf:type owl:AnnotationProperty ;
|
|
381
|
+
property:category "other" ;
|
|
382
|
+
property:name "Format" ;
|
|
383
|
+
property:type "text/plain" ;
|
|
384
|
+
property:description "Format of the product. Examples of values are: 'SAFE', 'HDF5', 'GEOTIFF'." ;
|
|
385
|
+
rdfs:subPropertyOf drb:metadata .
|
|
386
|
+
|
|
387
|
+
# =====================================
|
|
388
|
+
# Category: inspire
|
|
389
|
+
# =====================================
|
|
390
|
+
|
|
391
|
+
metadataset:resource_title rdf:type owl:AnnotationProperty ;
|
|
392
|
+
property:category "inspire" ;
|
|
393
|
+
property:name "Resource title" ;
|
|
394
|
+
property:type "text/plain" ;
|
|
395
|
+
property:description "The characteristic, and often unique, name by which the resource is known. The title is the most informative element of a metadata record and usually the highest priority as search engines go to this element." ;
|
|
396
|
+
rdfs:subPropertyOf drb:metadata .
|
|
397
|
+
|
|
398
|
+
metadataset:resource_abstract rdf:type owl:AnnotationProperty ;
|
|
399
|
+
property:category "inspire" ;
|
|
400
|
+
property:name "Resource abstract" ;
|
|
401
|
+
property:type "text/plain" ;
|
|
402
|
+
property:description "A brief narrative summary of the content of the resource. The abstract provides a clear and concise statement that enables the reader to understand the content of the data or service." ;
|
|
403
|
+
rdfs:subPropertyOf drb:metadata .
|
|
404
|
+
|
|
405
|
+
metadataset:resource_type rdf:type owl:AnnotationProperty ;
|
|
406
|
+
property:category "inspire" ;
|
|
407
|
+
property:name "Resource type" ;
|
|
408
|
+
property:type "text/plain" ;
|
|
409
|
+
property:description """The type of resource being described by the metadata and it is filled in with a value from a classification of the resource based on its scope. The choice of Resource Type will be probably the first decision made by the user and it will define the metadata elements that should be filled. The values in the scope of the INSPIRE Directive are:
|
|
410
|
+
* 'dataset' for spatial datasets: An identifiable data that can be accessed separately. A dataset can be a part of a whole (series) or a segregate resource;
|
|
411
|
+
* 'series' for spatial dataset series: a collection of resources or related datasets that share the same product specification;
|
|
412
|
+
* 'service' for spatial data services: technologies providing availability and access to spatial information, for example, web map services, web feature services, web coverage services, web processing services, catalogue web services, etc.""" ;
|
|
413
|
+
rdfs:subPropertyOf drb:metadata .
|
|
414
|
+
|
|
415
|
+
metadataset:resource_locator rdf:type owl:AnnotationProperty ;
|
|
416
|
+
property:category "inspire" ;
|
|
417
|
+
property:name "Resource locator" ;
|
|
418
|
+
property:type "text/plain" ;
|
|
419
|
+
property:description """For datasets and dataset series: The Resource locator is the 'navigation section' of a metadata record which point users to the location (URL) where the data can be downloaded, or to where additional information about the resource may be provided. Setting up the correct resource locators is important for the connection between the data and the services that provide access to them or for providing additional information concerning the resource.
|
|
420
|
+
For services: The Resource Locator for Services, if available, provides the access point of the service, that is an Internet address containing a detailed description of a spatial data service, including a list of endpoints to allow an automatic execution.""" ;
|
|
421
|
+
rdfs:subPropertyOf drb:metadata .
|
|
422
|
+
|
|
423
|
+
metadataset:unique_resource_identifier_code rdf:type owl:AnnotationProperty ;
|
|
424
|
+
property:category "inspire" ;
|
|
425
|
+
property:name "Unique resource identifier code" ;
|
|
426
|
+
property:type "text/plain" ;
|
|
427
|
+
property:description "A value uniquely identifying the resource (code). This value is linked with uniqueResourceIdentifierCodeSpace." ;
|
|
428
|
+
rdfs:subPropertyOf drb:metadata .
|
|
429
|
+
|
|
430
|
+
metadataset:unique_resource_identifier_codespace rdf:type owl:AnnotationProperty ;
|
|
431
|
+
property:category "inspire" ;
|
|
432
|
+
property:name "Unique resource identifier codespace" ;
|
|
433
|
+
property:type "text/plain" ;
|
|
434
|
+
property:description "A value uniquely identifying the resource (codespace). This value is linked with uniqueResourceIdentifierCode." ;
|
|
435
|
+
rdfs:subPropertyOf drb:metadata .
|
|
436
|
+
|
|
437
|
+
metadataset:resource_language rdf:type owl:AnnotationProperty ;
|
|
438
|
+
property:category "inspire" ;
|
|
439
|
+
property:name "Resource language" ;
|
|
440
|
+
property:type "text/plain" ;
|
|
441
|
+
property:description "It refers to the language(s) used within the resource (dataset, series, or service if relevant)." ;
|
|
442
|
+
rdfs:subPropertyOf drb:metadata .
|
|
443
|
+
|
|
444
|
+
metadataset:topic_category rdf:type owl:AnnotationProperty ;
|
|
445
|
+
property:category "inspire" ;
|
|
446
|
+
property:name "Topic category" ;
|
|
447
|
+
property:type "text/plain" ;
|
|
448
|
+
property:description "The topic category is a high-level classification scheme to assist in the grouping and topic based search of available spatial data resources." ;
|
|
449
|
+
rdfs:subPropertyOf drb:metadata .
|
|
450
|
+
|
|
451
|
+
metadataset:keyword_value rdf:type owl:AnnotationProperty ;
|
|
452
|
+
property:category "inspire" ;
|
|
453
|
+
property:name "Keyword value" ;
|
|
454
|
+
property:type "text/plain" ;
|
|
455
|
+
property:description "The keyword value is a commonly used word, formalised word or phrase used to describe the subject. While the topic category is too coarse for detailed queries, keywords help narrowing a full text search and they allow for structured keyword search." ;
|
|
456
|
+
rdfs:subPropertyOf drb:metadata .
|
|
457
|
+
|
|
458
|
+
metadataset:geographic_bounding_box_west rdf:type owl:AnnotationProperty ;
|
|
459
|
+
property:category "inspire" ;
|
|
460
|
+
property:name "Geographic bounding box (west bound longitude)" ;
|
|
461
|
+
property:type "text/double" ;
|
|
462
|
+
property:description "This field is part of the extent of the resource in the geographic space, given as a bounding box. Defining the coordinates of a rectangle representing the resource area on a map allows the discovery by geographical area. This description includes west bound longitude, east bound longitude, south bound latitude and north bound latitude. This field contains the west bound longitude." ;
|
|
463
|
+
rdfs:subPropertyOf drb:metadata .
|
|
464
|
+
|
|
465
|
+
metadataset:geographic_bounding_box_east rdf:type owl:AnnotationProperty ;
|
|
466
|
+
property:category "inspire" ;
|
|
467
|
+
property:name "Geographic bounding box (east bound longitude)" ;
|
|
468
|
+
property:type "text/double" ;
|
|
469
|
+
property:description "This field is part of the extent of the resource in the geographic space, given as a bounding box. Defining the coordinates of a rectangle representing the resource area on a map allows the discovery by geographical area. This description includes west bound longitude, east bound longitude, south bound latitude and north bound latitude. This field contains the east bound longitude." ;
|
|
470
|
+
rdfs:subPropertyOf drb:metadata .
|
|
471
|
+
|
|
472
|
+
metadataset:geographic_bounding_box_south rdf:type owl:AnnotationProperty ;
|
|
473
|
+
property:category "inspire" ;
|
|
474
|
+
property:name "Geographic bounding box (south bound latitude)" ;
|
|
475
|
+
property:type "text/double" ;
|
|
476
|
+
property:description "This field is part of the extent of the resource in the geographic space, given as a bounding box. Defining the coordinates of a rectangle representing the resource area on a map allows the discovery by geographical area. This description includes west bound longitude, east bound longitude, south bound latitude and north bound latitude. This field contains the south bound latitude." ;
|
|
477
|
+
rdfs:subPropertyOf drb:metadata .
|
|
478
|
+
|
|
479
|
+
metadataset:geographic_bounding_box_north rdf:type owl:AnnotationProperty ;
|
|
480
|
+
property:category "inspire" ;
|
|
481
|
+
property:name "Geographic bounding box (north bound latitude)" ;
|
|
482
|
+
property:type "text/double" ;
|
|
483
|
+
property:description "This field is part of the extent of the resource in the geographic space, given as a bounding box. Defining the coordinates of a rectangle representing the resource area on a map allows the discovery by geographical area. This description includes west bound longitude, east bound longitude, south bound latitude and north bound latitude. This field contains the north bound latitude." ;
|
|
484
|
+
rdfs:subPropertyOf drb:metadata .
|
|
485
|
+
|
|
486
|
+
metadataset:temporal_extent_begin rdf:type owl:AnnotationProperty ;
|
|
487
|
+
property:category "inspire" ;
|
|
488
|
+
property:name "Temporal extent (begin position)" ;
|
|
489
|
+
property:type "text/date+iso8601" ;
|
|
490
|
+
property:description "Acquisition start date time, i.e. time of the oldest data within the product. The temporal extent defines the time period covered by the content of the resource. This description includes begin and end position." ;
|
|
491
|
+
rdfs:subPropertyOf drb:metadata .
|
|
492
|
+
|
|
493
|
+
metadataset:temporal_extent_end rdf:type owl:AnnotationProperty ;
|
|
494
|
+
property:category "inspire" ;
|
|
495
|
+
property:name "Temporal extent (end position)" ;
|
|
496
|
+
property:type "text/date+iso8601" ;
|
|
497
|
+
property:description "Acquisition end date time, i.e. time of the most recent data within the product. The temporal extent defines the time period covered by the content of the resource. This description includes begin and end position." ;
|
|
498
|
+
rdfs:subPropertyOf drb:metadata .
|
|
499
|
+
|
|
500
|
+
metadataset:date_of_publication rdf:type owl:AnnotationProperty ;
|
|
501
|
+
property:category "inspire" ;
|
|
502
|
+
property:name "Date of publication" ;
|
|
503
|
+
property:type "text/date+iso8601" ;
|
|
504
|
+
property:description "Date of publication of the resource when available, or the date of entry into force." ;
|
|
505
|
+
rdfs:subPropertyOf drb:metadata .
|
|
506
|
+
|
|
507
|
+
metadataset:date_of_creation rdf:type owl:AnnotationProperty ;
|
|
508
|
+
property:category "inspire" ;
|
|
509
|
+
property:name "Date of creation" ;
|
|
510
|
+
property:type "text/date+iso8601" ;
|
|
511
|
+
property:description "This date describes when the resource was created." ;
|
|
512
|
+
rdfs:subPropertyOf drb:metadata .
|
|
513
|
+
|
|
514
|
+
metadataset:lineage rdf:type owl:AnnotationProperty ;
|
|
515
|
+
property:category "inspire" ;
|
|
516
|
+
property:name "Lineage" ;
|
|
517
|
+
property:type "text/plain" ;
|
|
518
|
+
property:description "Lineage is a statement on process history and/or overall quality of the spatial data set. Where appropriate it may include a statement whether the data set has been validated or quality assured, whether it is the official version (if multiple versions exist), and whether it has legal validity. The value domain of this element is free text." ;
|
|
519
|
+
rdfs:subPropertyOf drb:metadata .
|
|
520
|
+
|
|
521
|
+
metadataset:degree rdf:type owl:AnnotationProperty ;
|
|
522
|
+
property:category "inspire" ;
|
|
523
|
+
property:name "Degree" ;
|
|
524
|
+
property:type "text/plain" ;
|
|
525
|
+
property:description "The degree of conformity of the resource to the implementing rules adopted under Article 7(1) of INSPIRE Directive 2007/2/EC or other specification." ;
|
|
526
|
+
rdfs:subPropertyOf drb:metadata .
|
|
527
|
+
|
|
528
|
+
metadataset:specification_title rdf:type owl:AnnotationProperty ;
|
|
529
|
+
property:category "inspire" ;
|
|
530
|
+
property:name "Specification title" ;
|
|
531
|
+
property:type "text/plain" ;
|
|
532
|
+
property:description "Citation of the product specification or user requirement against which data is being evaluated. This description includes title, date type (e.g. draft, first issue, revision, etc.) and date of the specification. This field contains the title of the specification." ;
|
|
533
|
+
rdfs:subPropertyOf drb:metadata .
|
|
534
|
+
|
|
535
|
+
metadataset:specification_date_type rdf:type owl:AnnotationProperty ;
|
|
536
|
+
property:category "inspire" ;
|
|
537
|
+
property:name "Specification date type" ;
|
|
538
|
+
property:type "text/plain" ;
|
|
539
|
+
property:description "Citation of the product specification or user requirement against which data is being evaluated. This description includes title, date type (e.g. draft, first issue, revision, etc.) and date of the specification. This field contains the date type of the specification." ;
|
|
540
|
+
rdfs:subPropertyOf drb:metadata .
|
|
541
|
+
|
|
542
|
+
metadataset:specification_date rdf:type owl:AnnotationProperty ;
|
|
543
|
+
property:category "inspire" ;
|
|
544
|
+
property:name "Specification date" ;
|
|
545
|
+
property:type "text/plain" ;
|
|
546
|
+
property:description "Citation of the product specification or user requirement against which data is being evaluated. This description includes title, date type (e.g. draft, first issue, revision, etc.) and date of the specification. This field contains the date of the specification." ;
|
|
547
|
+
rdfs:subPropertyOf drb:metadata .
|
|
548
|
+
|
|
549
|
+
metadataset:limitations_on_public_access_constraints rdf:type owl:AnnotationProperty ;
|
|
550
|
+
property:category "inspire" ;
|
|
551
|
+
property:name "Limitations on public access (access constraints)" ;
|
|
552
|
+
property:type "text/plain" ;
|
|
553
|
+
property:description "Information on the limitations and the reasons for them. Access constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource." ;
|
|
554
|
+
rdfs:subPropertyOf drb:metadata .
|
|
555
|
+
|
|
556
|
+
metadataset:limitations_on_public_other_constraints rdf:type owl:AnnotationProperty ;
|
|
557
|
+
property:category "inspire" ;
|
|
558
|
+
property:name "Limitations on public access (other constraints)" ;
|
|
559
|
+
property:type "text/plain" ;
|
|
560
|
+
property:description "Information on the limitations and the reasons for them. Other restrictions and legal prerequisites for accessing and using the resource or metadata." ;
|
|
561
|
+
rdfs:subPropertyOf drb:metadata .
|
|
562
|
+
|
|
563
|
+
metadataset:limitations_on_public_access_classification rdf:type owl:AnnotationProperty ;
|
|
564
|
+
property:category "inspire" ;
|
|
565
|
+
property:name "Limitations on public access (classification)" ;
|
|
566
|
+
property:type "text/plain" ;
|
|
567
|
+
property:description "Name of the handling restrictions on the resource." ;
|
|
568
|
+
rdfs:subPropertyOf drb:metadata .
|
|
569
|
+
|
|
570
|
+
metadataset:conditions_applying_to_access_and_use rdf:type owl:AnnotationProperty ;
|
|
571
|
+
property:category "inspire" ;
|
|
572
|
+
property:name "Conditions applying to access and use" ;
|
|
573
|
+
property:type "text/plain" ;
|
|
574
|
+
property:description "Conditions for access and use of spatial data sets and services, and where applicable, corresponding fees as required by Article 5(2)(b) and Article 11(2)(f) of INSPIRE Directive 2007/2/EC." ;
|
|
575
|
+
rdfs:subPropertyOf drb:metadata .
|
|
576
|
+
|
|
577
|
+
metadataset:responsible_party_organisation_name rdf:type owl:AnnotationProperty ;
|
|
578
|
+
property:category "inspire" ;
|
|
579
|
+
property:name "Responsible party organisation name" ;
|
|
580
|
+
property:type "text/plain" ;
|
|
581
|
+
property:description "Description of the organisation responsible for the establishment, management, maintenance or distribution of the resource. This description includes name of the organisation and contact email address. This field contains the name of the organisation." ;
|
|
582
|
+
rdfs:subPropertyOf drb:metadata .
|
|
583
|
+
|
|
584
|
+
metadataset:responsible_party_email rdf:type owl:AnnotationProperty ;
|
|
585
|
+
property:category "inspire" ;
|
|
586
|
+
property:name "Responsible party email" ;
|
|
587
|
+
property:type "text/plain" ;
|
|
588
|
+
property:description "Description of the organisation responsible for the establishment, management, maintenance or distribution of the resource. This description includes name of the organisation and contact email address. This field contains the contact email address." ;
|
|
589
|
+
rdfs:subPropertyOf drb:metadata .
|
|
590
|
+
|
|
591
|
+
metadataset:responsible_party_role rdf:type owl:AnnotationProperty ;
|
|
592
|
+
property:category "inspire" ;
|
|
593
|
+
property:name "Responsible party role" ;
|
|
594
|
+
property:type "text/plain" ;
|
|
595
|
+
property:description "The role of the responsible organisation." ;
|
|
596
|
+
rdfs:subPropertyOf drb:metadata .
|
|
597
|
+
|
|
598
|
+
metadataset:metadata_point_of_contact_organisation_name rdf:type owl:AnnotationProperty ;
|
|
599
|
+
property:category "inspire" ;
|
|
600
|
+
property:name "Metadata point of contact (organisation name)" ;
|
|
601
|
+
property:type "text/plain" ;
|
|
602
|
+
property:description "Description of the organisation responsible for the creation and maintenance of the metadata. This refers to the metadata record and not to the resource responsible party; they will not necessarily be the same. This description includes name of the organisation and contact email address. This field contains the name of the organisation." ;
|
|
603
|
+
rdfs:subPropertyOf drb:metadata .
|
|
604
|
+
|
|
605
|
+
metadataset:metadata_point_of_contact_email rdf:type owl:AnnotationProperty ;
|
|
606
|
+
property:category "inspire" ;
|
|
607
|
+
property:name "Metadata point of contact (email)" ;
|
|
608
|
+
property:type "text/plain" ;
|
|
609
|
+
property:description "Description of the organisation responsible for the creation and maintenance of the metadata. This refers to the metadata record and not to the resource responsible party; they will not necessarily be the same. This description includes name of the organisation and contact email address. This field contains the contact email address." ;
|
|
610
|
+
rdfs:subPropertyOf drb:metadata .
|
|
611
|
+
|
|
612
|
+
# Date of generation of the ISO XML
|
|
613
|
+
metadataset:metadata_date rdf:type owl:AnnotationProperty ;
|
|
614
|
+
property:category "inspire" ;
|
|
615
|
+
property:name "Metadata date" ;
|
|
616
|
+
property:type "text/plain" ;
|
|
617
|
+
property:description "The date which specifies when the INSPIRE metadata record was created or updated. This field is filled at the moment of ISO XML generation." ;
|
|
618
|
+
rdfs:subPropertyOf drb:metadata .
|
|
619
|
+
|
|
620
|
+
metadataset:metadata_language rdf:type owl:AnnotationProperty ;
|
|
621
|
+
property:category "inspire" ;
|
|
622
|
+
property:name "Metadata language" ;
|
|
623
|
+
property:type "text/plain" ;
|
|
624
|
+
property:description "The language in which the metadata elements are expressed." ;
|
|
625
|
+
rdfs:subPropertyOf drb:metadata .
|
|
626
|
+
|
|
627
|
+
metadataset:resource_title_dataset_series rdf:type owl:AnnotationProperty ;
|
|
628
|
+
property:category "inspire" ;
|
|
629
|
+
property:name "Resource title (dataset series)" ;
|
|
630
|
+
property:type "text/plain" ;
|
|
631
|
+
property:description "Name of the dataset series to which the resource belongs." ;
|
|
632
|
+
rdfs:subPropertyOf drb:metadata .
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
2
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
3
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
4
|
+
|
|
5
|
+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
|
6
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
7
|
+
|
|
8
|
+
@prefix iceberg: <http://knowledge-base.gael.fr/drb/addons/iceberg/> .
|
|
9
|
+
|
|
10
|
+
<http://knowledge-base.gael.fr/drb/iceberg> a owl:Ontology .
|
|
11
|
+
|
|
12
|
+
# =========================================================================== #
|
|
13
|
+
# =========================================================================== #
|
|
14
|
+
# #
|
|
15
|
+
# ICEBERG parameters #
|
|
16
|
+
# #
|
|
17
|
+
# =========================================================================== #
|
|
18
|
+
# =========================================================================== #
|
|
19
|
+
|
|
20
|
+
# =============================================================================
|
|
21
|
+
# iceberg:ingestible
|
|
22
|
+
# =============================================================================
|
|
23
|
+
|
|
24
|
+
iceberg:ingestible
|
|
25
|
+
a owl:DatatypeProperty ;
|
|
26
|
+
rdfs:label "Ingestible" ;
|
|
27
|
+
rdfs:comment "Indicates whether products of this class should be ingested into Iceberg." ;
|
|
28
|
+
rdfs:range xsd:boolean .
|
|
29
|
+
|
|
30
|
+
# =============================================================================
|
|
31
|
+
# iceberg:target_table
|
|
32
|
+
# =============================================================================
|
|
33
|
+
|
|
34
|
+
iceberg:target_table
|
|
35
|
+
a owl:DatatypeProperty ;
|
|
36
|
+
rdfs:label "Target table" ;
|
|
37
|
+
rdfs:comment "Target Iceberg table identifier (namespace.table)." ;
|
|
38
|
+
rdfs:range xsd:string .
|
|
39
|
+
|
|
40
|
+
# =============================================================================
|
|
41
|
+
# iceberg:ingest_priority
|
|
42
|
+
# =============================================================================
|
|
43
|
+
|
|
44
|
+
iceberg:ingest_priority
|
|
45
|
+
a owl:DatatypeProperty ;
|
|
46
|
+
rdfs:label "Ingestion priority" ;
|
|
47
|
+
rdfs:comment "Processing priority for batch ingestion (higher = first)." ;
|
|
48
|
+
rdfs:range xsd:int .
|
|
49
|
+
|
|
50
|
+
# =============================================================================
|
|
51
|
+
# iceberg:identifier
|
|
52
|
+
# =============================================================================
|
|
53
|
+
|
|
54
|
+
iceberg:identifier
|
|
55
|
+
a owl:DatatypeProperty ;
|
|
56
|
+
rdfs:label "Identifier" ;
|
|
57
|
+
rdfs:comment "Identifier of the product." ;
|
|
58
|
+
rdfs:range xsd:int .
|
|
59
|
+
|
|
60
|
+
# =========================================================================== #
|
|
61
|
+
# =========================================================================== #
|
|
62
|
+
# #
|
|
63
|
+
# ICEBERG Class and objects #
|
|
64
|
+
# #
|
|
65
|
+
# =========================================================================== #
|
|
66
|
+
# =========================================================================== #
|
|
67
|
+
|
|
68
|
+
# =============================================================================
|
|
69
|
+
# iceberg:partition_strategy_class
|
|
70
|
+
# =============================================================================
|
|
71
|
+
|
|
72
|
+
iceberg:partition_strategy_class
|
|
73
|
+
a owl:Class ;
|
|
74
|
+
rdfs:label "Partition strategy (class)" ;
|
|
75
|
+
rdfs:comment "Defines how an Iceberg table should be partitioned." .
|
|
76
|
+
|
|
77
|
+
# =============================================================================
|
|
78
|
+
# iceberg:partitionStrategy
|
|
79
|
+
# =============================================================================
|
|
80
|
+
|
|
81
|
+
iceberg:partition_strategy
|
|
82
|
+
a owl:ObjectProperty ;
|
|
83
|
+
rdfs:label "Partition strategy (object)" ;
|
|
84
|
+
rdfs:comment "References a partition strategy for Iceberg tables." ;
|
|
85
|
+
rdfs:range <http://knowledge-base.gael.fr/drb/addons/iceberg/partition_strategy_class> .
|
|
86
|
+
|
|
87
|
+
# =============================================================================
|
|
88
|
+
# iceberg:partition_field
|
|
89
|
+
# =============================================================================
|
|
90
|
+
|
|
91
|
+
iceberg:partition_field
|
|
92
|
+
a owl:DatatypeProperty ;
|
|
93
|
+
rdfs:label "Partition field" ;
|
|
94
|
+
rdfs:comment "The field name to partition by." ;
|
|
95
|
+
rdfs:domain <http://knowledge-base.gael.fr/drb/addons/iceberg/partition_strategy_class> ;
|
|
96
|
+
rdfs:range xsd:string .
|
|
97
|
+
|
|
98
|
+
# =============================================================================
|
|
99
|
+
# iceberg:partition_transform
|
|
100
|
+
# =============================================================================
|
|
101
|
+
|
|
102
|
+
iceberg:partition_transform
|
|
103
|
+
a owl:DatatypeProperty ;
|
|
104
|
+
rdfs:label "Partition transform" ;
|
|
105
|
+
rdfs:comment "The field transformation to apply." ;
|
|
106
|
+
rdfs:domain <http://knowledge-base.gael.fr/drb/addons/iceberg/partition_strategy_class> ;
|
|
107
|
+
rdfs:range xsd:string .
|
|
108
|
+
|
|
109
|
+
# =============================================================================
|
|
110
|
+
# iceberg:partition_order
|
|
111
|
+
# =============================================================================
|
|
112
|
+
|
|
113
|
+
iceberg:partition_order
|
|
114
|
+
a owl:DatatypeProperty ;
|
|
115
|
+
rdfs:label "Partition order" ;
|
|
116
|
+
rdfs:comment "The field order to partition by." ;
|
|
117
|
+
rdfs:domain <http://knowledge-base.gael.fr/drb/addons/iceberg/partition_strategy_class> ;
|
|
118
|
+
rdfs:range xsd:int .
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: drbx-kb-metadata-common
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: DRB Knowledge-Base metadata descriptor: common structures (TTL, auto-loaded)
|
|
5
|
+
Author-email: GAEL Systems <drb-python@gael.fr>
|
|
6
|
+
License-Expression: LGPL-3.0-or-later
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: drb>=2.9.0
|
|
10
|
+
Requires-Dist: drb-metadata>=1.4
|
|
11
|
+
|
|
12
|
+
# Common metadata
|
|
13
|
+
|
|
14
|
+
The common metadata project contains metadata that can be generalized to any others metadata missions.
|
|
15
|
+
|
|
16
|
+
## Python packaging (pip)
|
|
17
|
+
|
|
18
|
+
Since drb-testbench#40 phase 1, this repo also ships a Python package,
|
|
19
|
+
**`drbx-kb-metadata-common`**, mirroring the `drbx-kb-topics-*` pattern: the package ships the repo's
|
|
20
|
+
metadata TTLs (the very same files as the Maven resources) and exposes them
|
|
21
|
+
through `cortex_paths()` (drb-testbench#15); drb core >= 2.9 merges every file
|
|
22
|
+
into the shared topic graph at resolver import. `drb-metadata` (`MetadataAddon`) then works **pip-only, without any
|
|
23
|
+
Fuseki service**:
|
|
24
|
+
|
|
25
|
+
```shell
|
|
26
|
+
pip install drbx-kb-metadata-common
|
|
27
|
+
```
|
|
28
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
python/drbx_kb_metadata_common/__init__.py
|
|
4
|
+
python/drbx_kb_metadata_common/common-metadata.ttl
|
|
5
|
+
python/drbx_kb_metadata_common/iceberg-metadata.ttl
|
|
6
|
+
python/drbx_kb_metadata_common.egg-info/PKG-INFO
|
|
7
|
+
python/drbx_kb_metadata_common.egg-info/SOURCES.txt
|
|
8
|
+
python/drbx_kb_metadata_common.egg-info/dependency_links.txt
|
|
9
|
+
python/drbx_kb_metadata_common.egg-info/entry_points.txt
|
|
10
|
+
python/drbx_kb_metadata_common.egg-info/requires.txt
|
|
11
|
+
python/drbx_kb_metadata_common.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
drbx_kb_metadata_common
|