@igea/oac_backend 1.0.34 → 1.0.36
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.
- package/package.json +4 -2
- package/src/controllers/fuseki.js +101 -0
- package/src/controllers/ontology.js +44 -0
- package/src/index.js +3 -0
- package/src/models/Converter +173 -0
- package/src/ontology/config.shacl.ttl +265 -0
- package/src/ontology/schema_v1.rdf +628 -0
- package/src/ontology/schema_v1.shacl.ttl +2090 -0
- package/src/ontology/schema_v1.ttl +635 -0
- package/src/tools/rdfToShacl.js +7 -0
|
@@ -0,0 +1,635 @@
|
|
|
1
|
+
@prefix inf: <http://www.ics.forth.gr/isl/CRMinf/> .
|
|
2
|
+
@prefix cpm: <http://ontome.net/ns/cpm/> .
|
|
3
|
+
@prefix basecpm: <http://ontome.net/ns/cpm/> .
|
|
4
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
5
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
6
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
7
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
8
|
+
@prefix crmsci: <http://www.ics.forth.gr/isl/CRMsci/> .
|
|
9
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
10
|
+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
|
11
|
+
@prefix pref: <http://Indagine/> .
|
|
12
|
+
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
|
|
13
|
+
@prefix base: <http://www.ics.forth.gr/isl/CRMinf/> .
|
|
14
|
+
|
|
15
|
+
<http://Indagine/note_descrizione_campione/xxxx>
|
|
16
|
+
a rdfs:Literal ;
|
|
17
|
+
rdfs:label "note descrizione campione xxxx" .
|
|
18
|
+
|
|
19
|
+
<http://Indagine/Fenomeno_osservato/dissesto>
|
|
20
|
+
a basecpm:CP41_Environmental_Observable_Entity ;
|
|
21
|
+
rdfs:label "Fenomeno osservato per il bene dissesto" .
|
|
22
|
+
|
|
23
|
+
<http://Indagine/porzione%20identificata0F0C1D64-0593-4852-929B-90CB05459878>
|
|
24
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S22_Segment_of_Matter> ;
|
|
25
|
+
rdfs:label "porzione identificata" ;
|
|
26
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O15i_was_occupied_by>
|
|
27
|
+
<http://Indagine/Campione/01> .
|
|
28
|
+
|
|
29
|
+
<http://Indagine/ID/01>
|
|
30
|
+
a crm:E42_Identifier ;
|
|
31
|
+
rdfs:label "ID campione 01" .
|
|
32
|
+
|
|
33
|
+
<http://Indagine/Report/R-01>
|
|
34
|
+
a crm:E73_Information_Object ;
|
|
35
|
+
rdfs:label "Report R-01" ;
|
|
36
|
+
crm:P105_right_held_by pref:Report_autoreFE181486-FFE9-4855-ADF4-BB3F15C77861 ;
|
|
37
|
+
crm:P165i_is_incorporated_in <http://Indagine/allegato/xxx> ;
|
|
38
|
+
crm:P48_has_preferred_identifier
|
|
39
|
+
<http://Indagine/ID_report/R-01> ;
|
|
40
|
+
crm:P94i_was_created_by pref:Creazione_allegato7EE1BC15-F729-4A07-9E8D-205AD378457D .
|
|
41
|
+
|
|
42
|
+
<http://Indagine/Procedura_ass/3>
|
|
43
|
+
a crm:E29_Design_or_Procedure ;
|
|
44
|
+
rdfs:label "Procedura_ass 3" .
|
|
45
|
+
|
|
46
|
+
<http://Indagine/Competenza/architettura>
|
|
47
|
+
a crm:E39_Actor ;
|
|
48
|
+
rdfs:label "Competenza architettura" ;
|
|
49
|
+
crm:P3_has_note <http://Indagine/Ruolo/architetto> .
|
|
50
|
+
|
|
51
|
+
<http://Indagine/denom_ente_schedatore/Chiara_Porrovecchio>
|
|
52
|
+
a crm:E41_Appellation ;
|
|
53
|
+
rdfs:label "Schedatore Chiara_Porrovecchio" .
|
|
54
|
+
|
|
55
|
+
<http://Indagine/Dissesto_strutturale/deformazione>
|
|
56
|
+
a basecpm:CP43_Structural_Damage ;
|
|
57
|
+
rdfs:label "Dissesto strutturale deformazione" .
|
|
58
|
+
|
|
59
|
+
<http://Indagine/tipo_input/Ricerca_bibliografica>
|
|
60
|
+
a crm:E55_Type ;
|
|
61
|
+
rdfs:label "tipo input Ricerca_bibliografica" .
|
|
62
|
+
|
|
63
|
+
pref:Valutazione_stato_conservazioneD7BA071A-B449-4101-A4FC-92911EEB8BB0
|
|
64
|
+
a crm:E14_Condition_Assessment ;
|
|
65
|
+
rdfs:label "Valutazione dello stato di conservazione" ;
|
|
66
|
+
crm:P35_has_identified pref:Tafonomia_e_stato_conservazione34ABADC5-6460-40C9-830D-A388B3119EA6 .
|
|
67
|
+
|
|
68
|
+
<http://Indagine/procedura_associata/3>
|
|
69
|
+
a crm:E29_Design_or_Procedure ;
|
|
70
|
+
rdfs:label "procedura associata ID 3" .
|
|
71
|
+
|
|
72
|
+
<http://Indagine/Campione/01>
|
|
73
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> ;
|
|
74
|
+
rdfs:label "Campione 01" ;
|
|
75
|
+
crm:P140i_was_attributed_by pref:Osservazione3A9D8A20-8033-4065-8484-A28EBB918865 , pref:Valutazione_stato_conservazioneD7BA071A-B449-4101-A4FC-92911EEB8BB0 , <http://Indagine/Osservazione/Osservazione> ;
|
|
76
|
+
crm:P16i_was_used_for <http://Indagine/Indagine/1> ;
|
|
77
|
+
crm:P2_has_type <http://Indagine/tipo_campione/muratura> , <http://Indagine/descrizione_indagine/Muratura_opus_testaceum> ;
|
|
78
|
+
crm:P43_has_dimension <http://Indagine/Dimensione/Dimensione> ;
|
|
79
|
+
crm:P48_has_preferred_identifier
|
|
80
|
+
<http://Indagine/ID/01> ;
|
|
81
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O25_contains>
|
|
82
|
+
<http://Indagine/Materiale_prevalente/Materiale_prevalente> , <http://Indagine/Sottocampione/xxxx> ;
|
|
83
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O2i_was_removed_by>
|
|
84
|
+
<http://Indagine/Campionamento/apposizione_griglia_di_scansione> ;
|
|
85
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O5i_was_removed_by>
|
|
86
|
+
<http://Indagine/Campionamento/apposizione_griglia_di_scansione> .
|
|
87
|
+
|
|
88
|
+
<http://Indagine/Inquadramento_cronologico/XII_secolo>
|
|
89
|
+
a base:I2_Belief ;
|
|
90
|
+
rdfs:label "Inquadramento cronologico XII_secolo" .
|
|
91
|
+
|
|
92
|
+
<http://Indagine/Tipo_preparazione_campione/non_necessaria>
|
|
93
|
+
a crm:E55_Type ;
|
|
94
|
+
rdfs:label "Tipo preparazione del campione non_necessaria" ;
|
|
95
|
+
crm:P3_has_note <http://Indagine/note_preparazionecampione/xxxx> .
|
|
96
|
+
|
|
97
|
+
<http://Indagine/Data_campionamento/30/6/2024>
|
|
98
|
+
a crm:E2_Temporal_Entity ;
|
|
99
|
+
rdfs:label "Data campionamento 30/6/2024" .
|
|
100
|
+
|
|
101
|
+
<http://Indagine/Tipo_inquadramento_cronologico/Fonte_bibliografica>
|
|
102
|
+
a crm:E55_Type ;
|
|
103
|
+
rdfs:label "Tipo inquadramento cronologico Fonte_bibliografica" .
|
|
104
|
+
|
|
105
|
+
pref:Quesito_diagnostico5D39BEE7-1C9B-46F4-BFD4-D0DA226E2768
|
|
106
|
+
a base:I12_Adopted_Belief ;
|
|
107
|
+
rdfs:label "Quesito diagnostico" ;
|
|
108
|
+
crm:P2_has_type <http://Indagine/Tipo_quesito_diagnostico/caratterizzazione_materiale> .
|
|
109
|
+
|
|
110
|
+
<http://Indagine/tipo_indagine/strutturale>
|
|
111
|
+
a crm:E55_Type ;
|
|
112
|
+
rdfs:label "Tipo indagine strutturale" ;
|
|
113
|
+
crm:P103_was_intended_for <http://Indagine/tipo_quesito_diagnostico/caratterizzazione_materiale> .
|
|
114
|
+
|
|
115
|
+
<http://Indagine/ID/xxx>
|
|
116
|
+
a crm:E42_Identifier ;
|
|
117
|
+
rdfs:label "ID xxx" .
|
|
118
|
+
|
|
119
|
+
<http://Indagine/tipo_el_costr/pilastro>
|
|
120
|
+
a crm:E55_Type ;
|
|
121
|
+
rdfs:label "Tipo elemento costruttivo pilastro" ;
|
|
122
|
+
crm:P3_has_note <http://Indagine/note_ELC/xxxx> .
|
|
123
|
+
|
|
124
|
+
<http://Indagine/tipo_output/determinazione_geometrica_distacco>
|
|
125
|
+
a crm:E55_Type ;
|
|
126
|
+
rdfs:label "tipo di output determinazione_geometrica_distacco" .
|
|
127
|
+
|
|
128
|
+
<http://Indagine/ID_sootocampione/xxxx>
|
|
129
|
+
a crm:E42_Identifier ;
|
|
130
|
+
rdfs:label "ID sottocampione xxxx" .
|
|
131
|
+
|
|
132
|
+
<http://Indagine/data_analisi_sottocampione/15_Luglio_2024>
|
|
133
|
+
a crm:E52_Time-Span ;
|
|
134
|
+
rdfs:label "Data 15_Luglio_2024" .
|
|
135
|
+
|
|
136
|
+
<http://Indagine/Degrado/xxxx>
|
|
137
|
+
a basecpm:CP42_Material_Decay ;
|
|
138
|
+
rdfs:label "Degrado xxxx" ;
|
|
139
|
+
crm:P3_has_note <http://Indagine/note_degrado/xxx> .
|
|
140
|
+
|
|
141
|
+
<http://Indagine/note_materiale/xxx>
|
|
142
|
+
a rdfs:Literal ;
|
|
143
|
+
rdfs:label "note materiale xxx" .
|
|
144
|
+
|
|
145
|
+
<http://Indagine/Indagine/1>
|
|
146
|
+
a crm:E7_Activity ;
|
|
147
|
+
rdfs:label "Indagine 1" ;
|
|
148
|
+
basecpm:Pc43i_uses <http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro> ;
|
|
149
|
+
crm:P134_continued <http://Indagine/Attivita_diagnostica/01> ;
|
|
150
|
+
crm:P14_carried_out_by <http://Indagine/Attori/Attori> ;
|
|
151
|
+
crm:P17_was_motivated_by pref:Quesito_diagnostico5D39BEE7-1C9B-46F4-BFD4-D0DA226E2768 ;
|
|
152
|
+
crm:P2_has_type <http://Indagine/tipo_indagine/strutturale> ;
|
|
153
|
+
crm:P33_used_specific_technique
|
|
154
|
+
<http://Indagine/Procedura_ass/3> ;
|
|
155
|
+
crm:P48_has_preferred_identifier
|
|
156
|
+
<http://Indagine/ID_Indagine/1> ;
|
|
157
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O23i_defines>
|
|
158
|
+
<http://Indagine/porzione%20identificata0F0C1D64-0593-4852-929B-90CB05459878> .
|
|
159
|
+
|
|
160
|
+
<http://Indagine/Tipo_luogo_analisi/in_situ>
|
|
161
|
+
a crm:E55_Type ;
|
|
162
|
+
rdfs:label "Tipo luogo di analisi in_situ" .
|
|
163
|
+
|
|
164
|
+
<http://Indagine/Output/Output>
|
|
165
|
+
a crm:E13_Attribute_Assignment ;
|
|
166
|
+
rdfs:label "Output" ;
|
|
167
|
+
crm:P11_had_participant <http://Indagine/Competenza/architettura> ;
|
|
168
|
+
crm:P140_assigned_attribute_to <http://Indagine/componente_specifico/componente_specifico> , <http://Indagine/Materiale_specifico/Materiale_specifico> ;
|
|
169
|
+
crm:P160_has_temporal_projection
|
|
170
|
+
<http://Indagine/data_elaborazione/15_Luglio_2024> ;
|
|
171
|
+
crm:P2_has_type <http://Indagine/tipo_output/determinazione_geometrica_distacco> ;
|
|
172
|
+
crm:P67i_is_referred_to_by <http://Indagine/Report/R-01> .
|
|
173
|
+
|
|
174
|
+
<http://Indagine/Tipo_quesito_diagnostico/caratterizzazione_materiale>
|
|
175
|
+
a crm:E55_Type ;
|
|
176
|
+
rdfs:label "Quesito diagnostico caratterizzazione_materiale" ;
|
|
177
|
+
crm:P3_has_note <http://Indagine/noteQD/xxx> .
|
|
178
|
+
|
|
179
|
+
<http://Indagine/software/Screaning_eagle_app_proceq>
|
|
180
|
+
a crm:E55_Type ;
|
|
181
|
+
rdfs:label "software usato Screaning_eagle_app_proceq" .
|
|
182
|
+
|
|
183
|
+
<http://Indagine/Osservazione/Osservazione>
|
|
184
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S4_Observation> ;
|
|
185
|
+
rdfs:label "Osservazione" ;
|
|
186
|
+
crm:P140_assigned_attribute_to <http://Indagine/Inquadramento_cronologico/XII_secolo> ;
|
|
187
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O16_observed_value>
|
|
188
|
+
<http://Indagine/Condizione_ambientale/Condizione_ambientale> .
|
|
189
|
+
|
|
190
|
+
<http://Indagine/Strumentazione/Strumentazione>
|
|
191
|
+
a crm:E70_Thing ;
|
|
192
|
+
rdfs:label "Strumentazione" ;
|
|
193
|
+
crm:P2_has_type <http://Indagine/Strumentazione/sonda_GPR> ;
|
|
194
|
+
crm:P48_has_preferred_identifier
|
|
195
|
+
<http://Indagine/Specifiche_tecniche/Proceq_GP800> ;
|
|
196
|
+
crm:P67i_is_referred_to_by <http://Indagine/Procedura/scansione_areale> .
|
|
197
|
+
|
|
198
|
+
<http://Indagine/tipo_inq_cron/XII_secolo>
|
|
199
|
+
a crm:E55_Type ;
|
|
200
|
+
rdfs:label "tipo XII_secolo" .
|
|
201
|
+
|
|
202
|
+
pref:Input334FDE3B-A078-4FB0-9CB2-32ABB98493D8
|
|
203
|
+
a base:I2_Belief ;
|
|
204
|
+
rdfs:label "Input" ;
|
|
205
|
+
crm:P2_has_type <http://Indagine/tipo_input/Ricerca_bibliografica> ;
|
|
206
|
+
crm:P3_has_note <http://Indagine/note_input/xxxx> ;
|
|
207
|
+
base:J1i_was_premise_for <http://Indagine/inference_making/Radargramma> .
|
|
208
|
+
|
|
209
|
+
<http://Indagine/data/13_Luglio_2024>
|
|
210
|
+
a crm:E52_Time-Span ;
|
|
211
|
+
rdfs:label "data 13_Luglio_2024" .
|
|
212
|
+
|
|
213
|
+
<http://Indagine/software/software>
|
|
214
|
+
a crm:E73_Information_Object ;
|
|
215
|
+
rdfs:label "software" ;
|
|
216
|
+
crm:P2_has_type <http://Indagine/software/Screaning_eagle_app_proceq> ;
|
|
217
|
+
crm:P67_refers_to <http://Indagine/inference_making/Radargramma> .
|
|
218
|
+
|
|
219
|
+
<http://Indagine/Attivita_diagnostica/01>
|
|
220
|
+
a crm:E42_Identifier , crm:E7_Activity ;
|
|
221
|
+
rdfs:label "Attività Diagnostica ID 01" , "Attività diagnostica ID 01" , "ID attività diagnostica 01" ;
|
|
222
|
+
basecpm:Pc43i_uses <http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro> ;
|
|
223
|
+
crm:P129i_is_subject_of pref:assunti_baseB7A1A0C7-6906-4F20-B8E0-7AEB969B5393 ;
|
|
224
|
+
crm:P12_occurred_in_the_presence_of
|
|
225
|
+
<http://Indagine/Campione/01> ;
|
|
226
|
+
crm:P14_carried_out_by <http://Indagine/Autore/Chiara_Porrovecchio> ;
|
|
227
|
+
crm:P160_has_temporal_projection
|
|
228
|
+
<http://Indagine/data/13_Luglio_2024> ;
|
|
229
|
+
crm:P16_used_specific_object <http://Indagine/software/software> , <http://Indagine/Strumentazione/Strumentazione> ;
|
|
230
|
+
crm:P17i_motivated <http://Indagine/Output/Output> ;
|
|
231
|
+
crm:P2_has_type <http://Indagine/Tipo_tecnica_diagnostica/georadar> , <http://Indagine/Tipo_preparazione_campione/non_necessaria> , <http://Indagine/Fase_analisi/preliminare> ;
|
|
232
|
+
crm:P33_used_specific_technique
|
|
233
|
+
<http://Indagine/Procedura/Procedura> ;
|
|
234
|
+
crm:P48_has_preferred_identifier
|
|
235
|
+
<http://Indagine/Attivita_diagnostica/01> ;
|
|
236
|
+
crm:P67i_is_referred_to_by <http://Indagine/Report/R-01> , <http://Indagine/Medium/Medium> ;
|
|
237
|
+
crm:P7_took_place_at pref:Luogo_analisiAA37D6D5-2193-4918-8538-98A03DBF4809 .
|
|
238
|
+
|
|
239
|
+
<http://Indagine/Data_aggiornamento_report/15_Luglio_2024>
|
|
240
|
+
a crm:E2_Temporal_Entity ;
|
|
241
|
+
rdfs:label "Data di aggiornamento del report 15_Luglio_2024" .
|
|
242
|
+
|
|
243
|
+
<http://Indagine/ID_bene_VIR/10000298>
|
|
244
|
+
a crm:E42_Identifier ;
|
|
245
|
+
rdfs:label "ID del bene in VIR 10000298" .
|
|
246
|
+
|
|
247
|
+
pref:Creazione_allegato7EE1BC15-F729-4A07-9E8D-205AD378457D
|
|
248
|
+
a crm:E65_Creation ;
|
|
249
|
+
rdfs:label "Creazione dell'allegato" ;
|
|
250
|
+
crm:P173_starts_before_or_with_the_end_of
|
|
251
|
+
<http://Indagine/Data_creazione_report/15_Luglio_2024> ;
|
|
252
|
+
crm:P182_ends_before_or_with_the_start_of
|
|
253
|
+
<http://Indagine/Data_aggiornamento_report/15_Luglio_2024> .
|
|
254
|
+
|
|
255
|
+
<http://Indagine/inference_making/Radargramma>
|
|
256
|
+
a crmsci:S5_Inference_Making , base:I5_Inference_Making ;
|
|
257
|
+
rdfs:label "inference_making Radargramma" , "inference_making" .
|
|
258
|
+
|
|
259
|
+
<http://Indagine/Data_creazione_report/15_Luglio_2024>
|
|
260
|
+
a crm:E2_Temporal_Entity ;
|
|
261
|
+
rdfs:label "Data di creazione del report 15_Luglio_2024" .
|
|
262
|
+
|
|
263
|
+
<http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro>
|
|
264
|
+
a crm:E41_Appellation , basecpm:CP2_Architecture_Work ;
|
|
265
|
+
rdfs:label "Denominazione Basilica_di_San_Giorgio_al_Velabro" , "Bene di riferimento" , "Bene_riferimento Basilica_di_San_Giorgio_al_Velabro" , "Bene di riferimento Basilica_di_San_Giorgio_al_Velabro" ;
|
|
266
|
+
basecpm:Pc1i_is_subject_to <http://Indagine/Fenomeno_osservato/dissesto> ;
|
|
267
|
+
basecpm:Pc61_was_affected_by <http://Indagine/Dissesto_strutturale/deformazione> ;
|
|
268
|
+
crm:P1_is_identified_by <http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro> ;
|
|
269
|
+
crm:P2_has_type <http://Indagine/Tipo_contesto/architettonico> ;
|
|
270
|
+
crm:P46_is_composed_of <http://Indagine/Elemento_costruttivo/pilastro> ;
|
|
271
|
+
crm:P48_has_preferred_identifier
|
|
272
|
+
<http://Indagine/ID_bene_VIR/10000298> .
|
|
273
|
+
|
|
274
|
+
<http://Indagine/Ente_richiedente/Sapienza_Universita_di_Roma>
|
|
275
|
+
a crm:E55_Type ;
|
|
276
|
+
rdfs:label "Ente richiedente" ;
|
|
277
|
+
crm:P1_is_identified_by <http://Indagine/denom_ente_richiedente/Sapienza_Universita_di_Roma> .
|
|
278
|
+
|
|
279
|
+
<http://Indagine/noteQD/xxx>
|
|
280
|
+
a rdfs:Literal ;
|
|
281
|
+
rdfs:label "note quesito diagnostico xxx" .
|
|
282
|
+
|
|
283
|
+
<http://Indagine/denom_ente_richiedente/Sapienza_Universita_di_Roma>
|
|
284
|
+
a crm:E41_Appellation ;
|
|
285
|
+
rdfs:label "Ente Sapienza_Universita_di_Roma" .
|
|
286
|
+
|
|
287
|
+
<http://Indagine/Unita_misura/m2>
|
|
288
|
+
a crm:E58_Measurement_Unit ;
|
|
289
|
+
rdfs:label "Unità di misura m2" .
|
|
290
|
+
|
|
291
|
+
<http://Indagine/Output/determinazione_geometrica_distacco>
|
|
292
|
+
a crm:E13_Attribute_Assignment ;
|
|
293
|
+
rdfs:label "Output determinazione_geometrica_distacco" .
|
|
294
|
+
|
|
295
|
+
<http://Indagine/note_input/xxxx>
|
|
296
|
+
a rdfs:Literal ;
|
|
297
|
+
rdfs:label "note input xxxx" .
|
|
298
|
+
|
|
299
|
+
<http://Indagine/processo_sottocampionamento/xxx>
|
|
300
|
+
a crm:E29_Design_or_Procedure ;
|
|
301
|
+
rdfs:label "procedura di sottocampionamento xxx" .
|
|
302
|
+
|
|
303
|
+
pref:Osservazione3A9D8A20-8033-4065-8484-A28EBB918865
|
|
304
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S4_Observation> ;
|
|
305
|
+
rdfs:label "Osservazione" ;
|
|
306
|
+
crm:P2_has_type <http://Indagine/Tipo_inquadramento_cronologico/Fonte_bibliografica> .
|
|
307
|
+
|
|
308
|
+
<http://Indagine/ID_report/R-01>
|
|
309
|
+
a crm:E42_Identifier ;
|
|
310
|
+
rdfs:label "ID report R-01" .
|
|
311
|
+
|
|
312
|
+
<http://Indagine/Campionamento/apposizione_griglia_di_scansione>
|
|
313
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking> ;
|
|
314
|
+
rdfs:label "Campionamento apposizione_griglia_di_scansione" ;
|
|
315
|
+
crm:P173_starts_before_or_with_the_end_of
|
|
316
|
+
<http://Indagine/Data_campionamento/30/6/2024> ;
|
|
317
|
+
crm:P33_used_specific_technique
|
|
318
|
+
<http://Indagine/Processo_campionamento/apposizione_griglia_di_scansione> ;
|
|
319
|
+
crm:P8_took_place_on_or_within <http://Indagine/Elemento_costruttivo/pilastro> ;
|
|
320
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O4_sampled_at>
|
|
321
|
+
<http://Indagine/Area_prelievo/Area_prelievo_campione> .
|
|
322
|
+
|
|
323
|
+
<http://Indagine/Elemento_costruttivo/pilastro>
|
|
324
|
+
a basecpm:CP20_Construction_Work ;
|
|
325
|
+
rdfs:label "Elemento costruttivo" , "Elemento costruttivo pilastro" ;
|
|
326
|
+
basecpm:Pc41_shows_as_main_material
|
|
327
|
+
<http://Indagine/Materiale_prevalente/laterizio> ;
|
|
328
|
+
crm:P2_has_type <http://Indagine/tipo_el_costr/pilastro> ;
|
|
329
|
+
crm:P46i_forms_part_of <http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro> ;
|
|
330
|
+
crm:P62_depicts pref:Inquadramento_cronologico441DAFD2-BAE8-42F3-B7BE-8CD18F4D2F2E .
|
|
331
|
+
|
|
332
|
+
<http://Indagine/allegato/xxxxx>
|
|
333
|
+
a crm:E73_Information_Object ;
|
|
334
|
+
rdfs:label "link xxxxx" .
|
|
335
|
+
|
|
336
|
+
<http://Indagine/Area_prelievo/Area_prelievo_campione>
|
|
337
|
+
a crm:E53_Place ;
|
|
338
|
+
rdfs:label "Area di prelievo" ;
|
|
339
|
+
crm:P168_place_is_defined_by <http://Indagine/coordinate/xxxxx> ;
|
|
340
|
+
crm:P3_has_note <http://Indagine/Localizzazione_area_campionamento/xxxx> ;
|
|
341
|
+
crm:P48_has_preferred_identifier
|
|
342
|
+
<http://Indagine/ID_area_prelievo/A-1> ;
|
|
343
|
+
crm:P62i_is_depicted_by <http://Indagine/allegato_grafico/TAV_01> ;
|
|
344
|
+
crm:P67i_is_referred_to_by <http://Indagine/allegato/xxxxx> .
|
|
345
|
+
|
|
346
|
+
<http://Indagine/tipo_componente_specifico/xxxx>
|
|
347
|
+
a crm:E55_Type ;
|
|
348
|
+
rdfs:label "componente specifico tipo xxxx" .
|
|
349
|
+
|
|
350
|
+
<http://Indagine/Procedura/scansione_areale>
|
|
351
|
+
a crm:E29_Design_or_Procedure ;
|
|
352
|
+
rdfs:label "Procedura scansione_areale" .
|
|
353
|
+
|
|
354
|
+
<http://Indagine/Ente/AStRe-LabMat>
|
|
355
|
+
a crm:E74_Group ;
|
|
356
|
+
rdfs:label "Ente AStRe-LabMat" .
|
|
357
|
+
|
|
358
|
+
<http://Indagine/Tipo_condizione_ambientale/Illuminazione_diretta>
|
|
359
|
+
a crm:E55_Type ;
|
|
360
|
+
rdfs:label "Tipo condizione ambientale Illuminazione_diretta" ;
|
|
361
|
+
crm:P3_has_note <http://Indagine/note/xxx> .
|
|
362
|
+
|
|
363
|
+
<http://Indagine/Autore_report/Chiara_Porrovecchio>
|
|
364
|
+
a crm:E41_Appellation ;
|
|
365
|
+
rdfs:label "Autore del report Chiara_Porrovecchio" .
|
|
366
|
+
|
|
367
|
+
<http://Indagine/nota/zzz>
|
|
368
|
+
a rdfs:Literal ;
|
|
369
|
+
rdfs:label "nota zzz" .
|
|
370
|
+
|
|
371
|
+
<http://Indagine/note_ELC/xxxx>
|
|
372
|
+
a rdfs:Literal ;
|
|
373
|
+
rdfs:label "note per tipo elemento costruttivo xxxx" .
|
|
374
|
+
|
|
375
|
+
<http://Indagine/Medium/Medium>
|
|
376
|
+
a crm:E73_Information_Object ;
|
|
377
|
+
rdfs:label "Medium" ;
|
|
378
|
+
crm:P15i_influenced <http://Indagine/Output/determinazione_geometrica_distacco> ;
|
|
379
|
+
crm:P2_has_type <http://Indagine/tipo_medium/Radargramma> ;
|
|
380
|
+
crm:P67_refers_to <http://Indagine/Specifiche_tecniche/Proceq_GP800> ;
|
|
381
|
+
crm:P67i_is_referred_to_by <http://Indagine/link/xxx> .
|
|
382
|
+
|
|
383
|
+
<http://Indagine/allegato_grafico/TAV_01>
|
|
384
|
+
a basecpm:CP38_Architecture_Representation_Element ;
|
|
385
|
+
rdfs:label "Allegato TAV_01" .
|
|
386
|
+
|
|
387
|
+
pref:assunti_baseB7A1A0C7-6906-4F20-B8E0-7AEB969B5393
|
|
388
|
+
a base:I4_Proposition_Set ;
|
|
389
|
+
rdfs:label "assunti_base" ;
|
|
390
|
+
base:J4i_is_subject_of pref:Input334FDE3B-A078-4FB0-9CB2-32ABB98493D8 .
|
|
391
|
+
|
|
392
|
+
<http://Indagine/Ruolo/architetto>
|
|
393
|
+
a rdfs:Literal ;
|
|
394
|
+
rdfs:label "Ruolo architetto" .
|
|
395
|
+
|
|
396
|
+
<http://Indagine/ID_Indagine/1>
|
|
397
|
+
a crm:E42_Identifier ;
|
|
398
|
+
rdfs:label "ID Indagine 1" .
|
|
399
|
+
|
|
400
|
+
pref:Report_autoreFE181486-FFE9-4855-ADF4-BB3F15C77861
|
|
401
|
+
a crm:E39_Actor ;
|
|
402
|
+
rdfs:label "Autore del report" ;
|
|
403
|
+
crm:P1_is_identified_by <http://Indagine/Autore_report/Chiara_Porrovecchio> .
|
|
404
|
+
|
|
405
|
+
<http://Indagine/Note_sottocampione/xxx>
|
|
406
|
+
a rdfs:Literal ;
|
|
407
|
+
rdfs:label "Note del sottocampione xxx" .
|
|
408
|
+
|
|
409
|
+
pref:Inquadramento_cronologico441DAFD2-BAE8-42F3-B7BE-8CD18F4D2F2E
|
|
410
|
+
a base:I2_Belief ;
|
|
411
|
+
rdfs:label "inquadramento cronologico" ;
|
|
412
|
+
crm:P2_has_type <http://Indagine/tipo_inq_cron/XII_secolo> .
|
|
413
|
+
|
|
414
|
+
<http://Indagine/tipo_medium/Radargramma>
|
|
415
|
+
a crm:E55_Type ;
|
|
416
|
+
rdfs:label "tipo di medium Radargramma" .
|
|
417
|
+
|
|
418
|
+
pref:Luogo_analisiAA37D6D5-2193-4918-8538-98A03DBF4809
|
|
419
|
+
a crm:E53_Place ;
|
|
420
|
+
rdfs:label "Luogo di analisi" ;
|
|
421
|
+
crm:P2_has_type <http://Indagine/Tipo_luogo_analisi/in_situ> .
|
|
422
|
+
|
|
423
|
+
<http://Indagine/coordinate/xxxxx>
|
|
424
|
+
a rdfs:Literal ;
|
|
425
|
+
rdfs:label "coordinate xxxxx" .
|
|
426
|
+
|
|
427
|
+
<http://Indagine/Strumentazione/sonda_GPR>
|
|
428
|
+
a crm:E55_Type , crm:E70_Thing ;
|
|
429
|
+
rdfs:label "tipo sonda_GPR" , "Strumento sonda_GPR" .
|
|
430
|
+
|
|
431
|
+
<http://Indagine/note_preparazionecampione/xxxx>
|
|
432
|
+
a rdfs:Literal ;
|
|
433
|
+
rdfs:label "note preparazione campione xxxx" .
|
|
434
|
+
|
|
435
|
+
<http://Indagine/Autore/Chiara_Porrovecchio>
|
|
436
|
+
a crm:E39_Actor ;
|
|
437
|
+
rdfs:label "Autore Chiara_Porrovecchio" ;
|
|
438
|
+
crm:P107i_is_current_or_former_member_of
|
|
439
|
+
<http://Indagine/Ente/AStRe-LabMat> .
|
|
440
|
+
|
|
441
|
+
<http://Indagine/Attori/Attori>
|
|
442
|
+
a crm:E39_Actor ;
|
|
443
|
+
rdfs:label "Attori coinvolti" ;
|
|
444
|
+
crm:P2_has_type <http://Indagine/Ente_schedatore/Chiara_Porrovecchio> , <http://Indagine/Ente_richiedente/Sapienza_Universita_di_Roma> .
|
|
445
|
+
|
|
446
|
+
<http://Indagine/Dimensione/Dimensione>
|
|
447
|
+
a crm:E54_Dimension ;
|
|
448
|
+
rdfs:label "Dimensione" ;
|
|
449
|
+
crm:P90_has_value <http://Indagine/Dimensione_grandezza/1> ;
|
|
450
|
+
crm:P91_has_unit <http://Indagine/Unita_misura/m2> .
|
|
451
|
+
|
|
452
|
+
<http://Indagine/Protocollo/000001>
|
|
453
|
+
a crm:E42_Identifier ;
|
|
454
|
+
rdfs:label "Protocollo 000001" .
|
|
455
|
+
|
|
456
|
+
<http://Indagine/Materiale_prevalente/laterizio>
|
|
457
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> , basecpm:CP9_Building_Material ;
|
|
458
|
+
rdfs:label "Materiale prevalente laterizio" ;
|
|
459
|
+
basecpm:Pc51_was_affected_by <http://Indagine/Degrado/xxxx> ;
|
|
460
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O25_contains>
|
|
461
|
+
<http://Indagine/Materiale_specifico/xxxx> .
|
|
462
|
+
|
|
463
|
+
<http://Indagine/tipo_campione/muratura>
|
|
464
|
+
a crm:E55_Type ;
|
|
465
|
+
rdfs:label "Tipo campione muratura" .
|
|
466
|
+
|
|
467
|
+
<http://Indagine/Tipo_contesto/architettonico>
|
|
468
|
+
a crm:E55_Type ;
|
|
469
|
+
rdfs:label "Tipo di contesto del bene architettonico" .
|
|
470
|
+
|
|
471
|
+
<http://Indagine/tipo_materiale_specifico/xxxx>
|
|
472
|
+
a crm:E55_Type ;
|
|
473
|
+
rdfs:label "tipo xxxx" ;
|
|
474
|
+
crm:P3_has_note <http://Indagine/note_altro/xxx> .
|
|
475
|
+
|
|
476
|
+
<http://Indagine/allegato/xxx>
|
|
477
|
+
a crm:E73_Information_Object ;
|
|
478
|
+
rdfs:label "allegato xxx" .
|
|
479
|
+
|
|
480
|
+
<http://Indagine/finalita/caratterizzazione_degrado>
|
|
481
|
+
a crm:E1_CRM_Entity ;
|
|
482
|
+
rdfs:label "finalità caratterizzazione_degrado" .
|
|
483
|
+
|
|
484
|
+
<http://Indagine/Localizzazione_area_campionamento/xxxx>
|
|
485
|
+
a rdfs:Literal ;
|
|
486
|
+
rdfs:label "Localizzazione area di campionamento xxxx" .
|
|
487
|
+
|
|
488
|
+
<http://Indagine/Specifiche_tecniche/Proceq_GP800>
|
|
489
|
+
a crm:E42_Identifier ;
|
|
490
|
+
rdfs:label "Specifiche tecniche Proceq_GP800" .
|
|
491
|
+
|
|
492
|
+
<http://Indagine/Processo_campionamento/apposizione_griglia_di_scansione>
|
|
493
|
+
a crm:E29_Design_or_Procedure ;
|
|
494
|
+
rdfs:label "Processo di campionamento apposizione_griglia_di_scansione" ;
|
|
495
|
+
crm:P3_has_note <http://Indagine/nota/zzz> .
|
|
496
|
+
|
|
497
|
+
<http://Indagine/Dimensione_grandezza/1>
|
|
498
|
+
a rdfs:Literal ;
|
|
499
|
+
rdfs:label "Misura 1" .
|
|
500
|
+
|
|
501
|
+
<http://Indagine/Sottocampione/xxxx>
|
|
502
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S13_Sample> , crm:E55_Type ;
|
|
503
|
+
rdfs:label "Sottocampione xxxx" , "Tipo sottocampione xxxx" ;
|
|
504
|
+
crm:P130_shows_features_of <http://Indagine/Campione/01> ;
|
|
505
|
+
crm:P2_has_type <http://Indagine/Sottocampione/xxxx> ;
|
|
506
|
+
crm:P3_has_note <http://Indagine/Note_sottocampione/xxx> ;
|
|
507
|
+
crm:P48_has_preferred_identifier
|
|
508
|
+
<http://Indagine/ID_sootocampione/xxxx> ;
|
|
509
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O25_contains>
|
|
510
|
+
<http://Indagine/Materiale_sottocampione/Materiale_sottocampione> ;
|
|
511
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O3i_was_sample_by>
|
|
512
|
+
<http://Indagine/Sottocampionamento/Sottocampionamento> .
|
|
513
|
+
|
|
514
|
+
<http://Indagine/Materiale_sottocampione/Materiale_sottocampione>
|
|
515
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> ;
|
|
516
|
+
rdfs:label "Materiale del sottocampione" ;
|
|
517
|
+
crm:P2_has_type <http://Indagine/Tipo_materiale_campione/xxxx> ;
|
|
518
|
+
crm:P3_has_note <http://Indagine/note_materiale/xxx> .
|
|
519
|
+
|
|
520
|
+
<http://Indagine/modalita/scansione_areale>
|
|
521
|
+
a crm:E55_Type ;
|
|
522
|
+
rdfs:label "modalità di indagine scansione_areale" .
|
|
523
|
+
|
|
524
|
+
<http://Indagine/note_altro/xxx>
|
|
525
|
+
a rdfs:Literal ;
|
|
526
|
+
rdfs:label "nota altro xxx" .
|
|
527
|
+
|
|
528
|
+
<http://Indagine/Tipo_tafonomia_e_stato_conservazione/Degradato>
|
|
529
|
+
a crm:E55_Type ;
|
|
530
|
+
rdfs:label "Tipo tafonomia e stato di conservazione Degradato" .
|
|
531
|
+
|
|
532
|
+
<http://Indagine/Materiale_specifico/xxxx>
|
|
533
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> ;
|
|
534
|
+
rdfs:label "Materiale specifico xxxx" .
|
|
535
|
+
|
|
536
|
+
<http://Indagine/Materiale_prevalente/Materiale_prevalente>
|
|
537
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> ;
|
|
538
|
+
rdfs:label "Materiale prevalente" ;
|
|
539
|
+
crm:P2_has_type <http://Indagine/Materiale/laterizio> ;
|
|
540
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O25_contains>
|
|
541
|
+
<http://Indagine/Materiale_specifico/xxxx> .
|
|
542
|
+
|
|
543
|
+
<http://Indagine/tipo_quesito_diagnostico/caratterizzazione_materiale>
|
|
544
|
+
a crm:E55_Type ;
|
|
545
|
+
rdfs:label "Quesito diagnostico caratterizzazione_materiale" .
|
|
546
|
+
|
|
547
|
+
<http://Indagine/descrizione_indagine/Muratura_opus_testaceum>
|
|
548
|
+
a crm:E55_Type ;
|
|
549
|
+
rdfs:label "Descrizione campione Muratura_opus_testaceum" ;
|
|
550
|
+
crm:P3_has_note <http://Indagine/note_descrizione_campione/xxxx> .
|
|
551
|
+
|
|
552
|
+
<http://Indagine/data_elaborazione/15_Luglio_2024>
|
|
553
|
+
a crm:E52_Time-Span ;
|
|
554
|
+
rdfs:label "data elaborazione 15_Luglio_2024" .
|
|
555
|
+
|
|
556
|
+
<http://Indagine/link/xxx>
|
|
557
|
+
a crm:E73_Information_Object ;
|
|
558
|
+
rdfs:label "link xxx" .
|
|
559
|
+
|
|
560
|
+
<http://Indagine/Materiale/laterizio>
|
|
561
|
+
a crm:E55_Type ;
|
|
562
|
+
rdfs:label "tipo laterizio" .
|
|
563
|
+
|
|
564
|
+
<http://Indagine/Ente_schedatore/Chiara_Porrovecchio>
|
|
565
|
+
a crm:E55_Type ;
|
|
566
|
+
rdfs:label "Ente schedatore" ;
|
|
567
|
+
crm:P1_is_identified_by <http://Indagine/denom_ente_schedatore/Chiara_Porrovecchio> .
|
|
568
|
+
|
|
569
|
+
<http://Indagine/note/xxx>
|
|
570
|
+
a rdfs:Literal ;
|
|
571
|
+
rdfs:label "nota xxx" , "note xxx" .
|
|
572
|
+
|
|
573
|
+
<http://Indagine/Condizione_ambientale/Condizione_ambientale>
|
|
574
|
+
a basecpm:CP41_Environmental_Observable_Entity ;
|
|
575
|
+
rdfs:label "Condizione ambientale" ;
|
|
576
|
+
basecpm:Pc1_affects <http://Indagine/Tipo_tecnica_diagnostica/georadar> , <http://Indagine/Campione/01> ;
|
|
577
|
+
crm:P2_has_type <http://Indagine/Tipo_condizione_ambientale/Illuminazione_diretta> .
|
|
578
|
+
|
|
579
|
+
<http://Indagine/componente_specifico/componente_specifico>
|
|
580
|
+
a crm:E18_Physical_Thing ;
|
|
581
|
+
rdfs:label "Componente specifico" ;
|
|
582
|
+
crm:P2_has_type <http://Indagine/tipo_componente_specifico/xxxx> ;
|
|
583
|
+
crm:P3_has_note <http://Indagine/note/xxx> ;
|
|
584
|
+
crm:P48_has_preferred_identifier
|
|
585
|
+
<http://Indagine/ID/xxx> .
|
|
586
|
+
|
|
587
|
+
<http://Indagine/Materiale_specifico/Materiale_specifico>
|
|
588
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S10_Material_Substantial> ;
|
|
589
|
+
rdfs:label "Materiale specifico" ;
|
|
590
|
+
crm:P2_has_type <http://Indagine/tipo_materiale_specifico/xxxx> ;
|
|
591
|
+
<http://www.cidoc-crm.org/extensions/crmsci/O25i_is_contained_in>
|
|
592
|
+
<http://Indagine/Campione/01> , <http://Indagine/Bene_riferimento/Basilica_di_San_Giorgio_al_Velabro> .
|
|
593
|
+
|
|
594
|
+
<http://Indagine/Fase_analisi/preliminare>
|
|
595
|
+
a crm:E55_Type ;
|
|
596
|
+
rdfs:label "Fase di analisi preliminare" .
|
|
597
|
+
|
|
598
|
+
<http://Indagine/ID_area_prelievo/A-1>
|
|
599
|
+
a crm:E42_Identifier ;
|
|
600
|
+
rdfs:label "ID area prelievo A-1" .
|
|
601
|
+
|
|
602
|
+
pref:Tafonomia_e_stato_conservazione34ABADC5-6460-40C9-830D-A388B3119EA6
|
|
603
|
+
a crm:E3_Condition_State ;
|
|
604
|
+
rdfs:label "Tafonomia e stato di conservazione" ;
|
|
605
|
+
crm:P2_has_type <http://Indagine/Tipo_tafonomia_e_stato_conservazione/Degradato> .
|
|
606
|
+
|
|
607
|
+
<http://Indagine/Sottocampionamento/Sottocampionamento>
|
|
608
|
+
a <http://www.cidoc-crm.org/extensions/crmsci/S2_Sample_Taking> ;
|
|
609
|
+
rdfs:label "Sottocampionamento" ;
|
|
610
|
+
crm:P160_has_temporal_projection
|
|
611
|
+
<http://Indagine/data_analisi_sottocampione/15_Luglio_2024> ;
|
|
612
|
+
crm:P33_used_specific_technique
|
|
613
|
+
<http://Indagine/processo_sottocampionamento/xxx> .
|
|
614
|
+
|
|
615
|
+
<http://Indagine/note_degrado/xxx>
|
|
616
|
+
a rdfs:Literal ;
|
|
617
|
+
rdfs:label "note_degrado xxx" .
|
|
618
|
+
|
|
619
|
+
<http://Indagine/Tipo_materiale_campione/xxxx>
|
|
620
|
+
a crm:E55_Type ;
|
|
621
|
+
rdfs:label "Tipo materiale del sottocampione xxxx" .
|
|
622
|
+
|
|
623
|
+
<http://Indagine/Procedura/Procedura>
|
|
624
|
+
a crm:E29_Design_or_Procedure ;
|
|
625
|
+
rdfs:label "Procedura" ;
|
|
626
|
+
crm:P129_is_about <http://Indagine/finalita/caratterizzazione_degrado> ;
|
|
627
|
+
crm:P1_is_identified_by <http://Indagine/Protocollo/000001> ;
|
|
628
|
+
crm:P2_has_type <http://Indagine/modalita/scansione_areale> ;
|
|
629
|
+
crm:P67_refers_to <http://Indagine/Strumentazione/sonda_GPR> ;
|
|
630
|
+
crm:P69_has_association_with <http://Indagine/procedura_associata/3> .
|
|
631
|
+
|
|
632
|
+
<http://Indagine/Tipo_tecnica_diagnostica/georadar>
|
|
633
|
+
a crm:E55_Type ;
|
|
634
|
+
rdfs:label "Tipo tecnica diagnostica georadar" ;
|
|
635
|
+
basecpm:Pc1i_is_subject_to <http://Indagine/Condizione_ambientale/Condizione_ambientale> .
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const Converter = require('../../../oac_backend/src/models/Converter');
|
|
3
|
+
|
|
4
|
+
const rdfFilePath = path.join(__dirname, '..', 'ontology', 'schema_v1.ttl');
|
|
5
|
+
const shaclFilePath = path.join(__dirname, '..', 'ontology', 'schema_v1.shacl.ttl');
|
|
6
|
+
|
|
7
|
+
Converter.generateShaclFromRdf(rdfFilePath, shaclFilePath);
|