forked from arc-pts/ffrd-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rascat.ttl
398 lines (324 loc) · 14.7 KB
/
rascat.ttl
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
@prefix : <http://www.example.org/rascat/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sf: <http://www.opengis.net/ont/sf#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@base <http://www.example.org/rascat/0.1#> .
<http://www.example.org/rascat/0.1#> a owl:Ontology .
#################################################################
# RAS Model
#################################################################
### http://www.example.org/rascat#RasModel
:RasModel a owl:Class ;
rdfs:comment "A HEC-RAS model. Instances of the RasModel class should point to a valid HEC-RAS *.prj file."@en ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :hasPlan ;
owl:minCardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :hasGeometry ;
owl:minCardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :extent ;
owl:maxCardinality 1 ] .
:hasPlan a owl:ObjectProperty ;
rdfs:comment "A HEC-RAS Plan file associated with a parent RasModel."@en ;
rdfs:domain :RasModel ;
rdfs:range :RasPlan .
:hasGeometry a owl:ObjectProperty ;
rdf:comment "A HEC-RAS Geometry file associated with a parent RasModel or RasPlan."@en ;
rdfs:domain :RasModel ;
rdfs:domain :RasPlan ;
rdfs:range :RasGeometry .
:hasFlow a owl:ObjectProperty ;
rdfs:comment "A HEC-RAS Flow file associated with a parent RasModel or RasPlan."@en ;
rdfs:domain :RasModel ;
rdfs:domain :RasPlan ;
rdfs:range :RasFlow .
:rasVersion a owl:ObjectProperty ;
rdfs:comment "The version of HEC-RAS used to create the model."@en ;
rdfs:subClassOf dcterms:hasVersion ;
rdfs:domain :RasModel ;
rdfs:range xsd:string .
:status a owl:ObjectProperty ;
rdfs:domain :RasModel ;
rdfs:range [ owl:oneOf ("Draft" "Final" "Public Release") ] .
:Projection a owl:Class ;
rdfs:subClassOf dcat:Dataset ;
rdfs:comment "A geographic projection."@en .
:projection a owl:ObjectProperty ;
rdfs:comment "The geographic projection of the model."@en ;
rdfs:domain :RasModel ;
rdfs:range :Projection .
:verticalDatum a owl:ObjectProperty ;
rdfs:comment "The vertical datum of the model. (e.g., NAVD88)"@en ;
rdfs:domain :RasModel ;
rdfs:range xsd:string .
:extent a owl:ObjectProperty ;
rdfs:domain :RasModel ;
rdfs:domain :RasGeometry ;
rdfs:domain :Mesh2D ;
rdfs:range sf:Polygon .
#################################################################
# Plan
#################################################################
### http://www.example.org/rascat#RasPlan
:RasPlan a owl:Class ;
rdfs:comment "A HEC-RAS plan file, e.g. *.p01. A plan is a grouping of one HEC-RAS Geometry file and one HEC-RAS Flow file."@en ;
rdfs:subClassOf dcat:Dataset ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :hasGeometry ;
owl:cardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :hasFlow ;
owl:cardinality 1 ] .
#################################################################
# Geometry
#################################################################
### http://www.example.org/rascat#RasGeometry
:RasGeometry a owl:Class ;
rdfs:comment "A HEC-RAS Geometry file. (e.g., *.g01)"@en ;
rdfs:subClassOf dcat:Dataset .
:hasTerrain a owl:ObjectProperty ;
rdfs:comment "A HEC-RAS Terrain associated with a parent RasGeometry."@en ;
rdfs:domain :RasGeometry ;
rdfs:range :Terrain .
:hasRoughness a owl:ObjectProperty ;
rdfs:comment "Roughness (e.g., Manning's 'n') data associated with a parent RasGeometry."@en ;
rdfs:domain :RasGeometry ;
rdfs:range :Roughness .
:hasPrecipLosses a owl:ObjectProperty ;
rdfs:comment "Precipitation loss base data associated with a parent RasGeometry."@en ;
rdfs:domain :RasGeometry ;
rdfs:range :PrecipLosses .
:hasMesh2D a owl:ObjectProperty ;
rdfs:comment "A HEC-RAS 2D mesh associated with a parent RasGeometry."@en ;
rdfs:domain :RasGeometry ;
rdfs:range :Mesh2D .
:hasStructures a owl:ObjectProperty ;
rdfs:comment "Structure data associated with a RasGeometry."@en ;
rdfs:domain :RasGeometry ;
rdfs:range :Structures .
### http://www.example.org/rascat#Terrain
:Terrain a owl:Class ;
rdfs:comment "A HEC-RAS Terrain."@en ;
rdfs:subClassOf dcat:Dataset ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :hasDEM ;
owl:minCardinality 1 ] .
:hasDEM a owl:ObjectProperty ;
rdfs:comment "A Digital Elevation Model (DEM) associated with a parent HEC-RAS Terrain."
rdfs:domain :Terrain ;
rdfs:range :DEM .
:hasBathymetry a owl:ObjectProperty ;
rdfs:comment "Bathymetry data associated with a parent HEC-RAS Terrain."
rdfs:domain :Terrain ;
rdfs:range :Bathymetry .
:hasTerrainModifications a owl:ObjectProperty ;
rdfs:comment "Information about modifications to the terrain associated with a parent HEC-RAS Terrain."
rdfs:domain :Terrain ;
rdfs:range :TerrainModifications .
### http://www.example.org/rascat#DEM
:DEM a owl:Class ;
rdfs:comment "A Digital Elevation Model (DEM)."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#Bathymetry
:Bathymetry a owl:Class ;
rdfs:comment "Bathymetry data."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#TerrainModifications
:TerrainModifications a owl:Class ;
rdfs:comment "Information about modifications to the terrain."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#Roughness
:Roughness a owl:Class ;
rdfs:comment "Roughness (e.g., Manning's 'n') data."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#LanduseLandcover
:LanduseLandcover a owl:Class ;
rdfs:comment "Land use / land cover data."@en ;
rdfs:subClassOf dcat:Dataset .
:hasLanduseLandcover a owl:ObjectProperty ;
rdfs:comment "Land use / land cover data associated with a parent HEC-RAS Roughness or PrecipLosses."@en ;
rdfs:domain :Roughness ;
rdfs:domain :PrecipLosses ;
rdfs:range :LanduseLandcover .
### http://www.example.org/rascat#PrecipLosses
:PrecipLosses a owl:Class ;
rdfs:comment "Precipitation loss base data."@en ;
rdfs:subClassOf dcat:Dataset .
:hasSoils a owl:ObjectProperty ;
rdfs:comment "Soils data associated with HEC-RAS PrecipLosses."@en ;
rdfs:domain :PrecipLosses ;
rdfs:range :Soils .
### http://www.example.org/rascat#Soils
:Soils a owl:Class ;
rdfs:comment "Soils data."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#Mesh2D
:Mesh2D a owl:Class ;
rdfs:comment "A 2D mesh contained within a HEC-RAS Geometry file."@en ;
rdfs:subClassOf dcat:Dataset .
:nominalCellSize a owl:DatatypeProperty ;
rdfs:comment "The nominal cell size of a 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:double .
:breaklinesMinCellSize a owl:DatatypeProperty ;
rdfs:comment "The minimum cell size associated with breaklines for HEC-RAS 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:double .
:breaklinesMaxCellSize a owl:DatatypeProperty ;
rdfs:comment "The maximum cell size associated with breaklines for HEC-RAS 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:double .
:refinementRegionsMinCellSize a owl:DatatypeProperty ;
rdfs:comment "The minimum cell size associated with refinement regions for HEC-RAS 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:double .
:refinementRegionsMaxCellSize a owl:DatatypeProperty ;
rdfs:comment "The maximum cell size associated with refinement regions for HEC-RAS 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:double .
:cellCount a owl:DatatypeProperty ;
rdfs:comment "The number of cells in a 2D mesh."@en ;
rdfs:domain :Mesh2D ;
rdfs:range xsd:integer .
### http://www.example.org/rascat#Structures
:Structures a owl:Class ;
rdfs:subClassOf dcat:Dataset .
#################################################################
# Flow
#################################################################
### http://www.example.org/rascat#RasFlow
:RasFlow a owl:Class ;
rdfs:comment "A HEC-RAS Flow file. (e.g., *.f01 or *.u01)"@en ;
rdfs:subClassOf dcat:Dataset .
#################################################################
# Steady Flow
#################################################################
### http://www.example.org/rascat#RasSteadyFlow
:RasSteadyFlow a owl:Class ;
rdfs:comment "A HEC-RAS Steady Flow file. (e.g., *.f01)"@en ;
rdfs:subClassOf :RasFlow ;
rdfs:subClassOf dcat:Dataset .
#################################################################
# Unsteady Flow
#################################################################
### http://www.example.org/rascat#RasUnsteadyFlow
:RasUnsteadyFlow a owl:Class ;
rdfs:comment "A HEC-RAS Unsteady Flow file. (e.g., *.u01)"@en ;
rdfs:subClassOf :RasFlow ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#HecDssFile
:HecDssFile a owl:Class ;
rdfs:comment "A HEC-DSS file."@en ;
rdfs:subClassOf dcat:Dataset .
### http://www.example.org/rascat#Hydrodata
:Hydrodata a owl:Class ;
rdfs:comment "Class representing generic hydrologic data."@en ;
rdfs:subClassOf dcat:Dataset ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :startDateTime ;
owl:cardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :endDateTime ;
owl:cardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :fromStreamgage ;
owl:maxCardinality 1 ] ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :fromHydroEvent ;
owl:maxCardinality 1 ] .
:startDateTime a owl:ObjectProperty ;
rdfs:comment "The start date and time of the hydrologic data."@en ;
rdfs:subClassOf dcat:startDate;
rdfs:domain :HydroData ;
rdfs:range xsd:dateTime .
:endDateTime a owl:ObjectProperty ;
rdfs:comment "The end date and time of the hydrologic data."@en
rdfs:subClassOf dcat:endDate;
rdfs:domain :HydroData ;
rdfs:range xsd:dateTime .
:hecDssFile a owl:ObjectProperty ;
rdfs:comment "The HEC-DSS file containing the hydrologic data."@en ;
rdfs:domain :HydroData ;
rdfs:range :HecDssFile .
:hecDssPath a owl:ObjectProperty ;
rdfs:comment "The HEC-DSS internal path to the hydrologic data."@en ;
rdfs:domain :HydroData ;
rdfs:range xsd:string .
### http://www.example.org/rascat#Hydrograph
:Hydrograph a owl:Class ;
rdfs:comment "Class representing a hydrograph."@en ;
rdfs:subClassOf :Hydrodata ;
rdfs:subClassOf dcat:Dataset .
:hydrographType a owl:ObjectProperty ;
rdfs:comment "The type of hydrograph - Flow or Stage."@en ;
rdfs:domain :RasModel ;
rdfs:range [ owl:oneOf ("Flow" "Stage") ] .
:hasInflowHydrograph a owl:ObjectProperty ;
rdfs:comment "The hydrograph used as inflow for a HEC-RAS model."@en ;
rdfs:domain :RasFlow ;
rdfs:range :Hydrograph .
### http://www.example.org/rascat#Calibration
:Calibration a owl:Class ;
rdfs:comment "Class representing the calibration of a HEC-RAS model (i.e., Plan)."@en ;
rdfs:subClassOf :Hydrodata ;
rdfs:subClassOf dcat:Dataset .
:hasCalibration a owl:ObjectProperty ;
rdfs:comment "Calibration associated with a HEC-RAS Plan."@en ;
rdfs:domain :RasPlan ;
rdfs:range :Hydrograph .
:calibrationMetric a owl:ObjectProperty ;
rdfs:comment "A metric used to evaluate the calibration of a HEC-RAS model."@en ;
rdfs:domain :Calibration ;
rdfs:range xsd:double .
:nse a owl:ObjectProperty ;
rdfs:subClassOf :calibrationMetric ;
rdfs:comment "Nash-Sutcliffe Efficiency"@en .
:pbias a owl:ObjectProperty ;
rdfs:subClassOf :calibrationMetric ;
rdfs:comment "Percent Bias"@en .
:rsr a owl:ObjectProperty ;
rdfs:subClassOf :calibrationMetric ;
rdfs:comment "Root Mean Square Error Standard Deviation Ratio"@en .
:r2 a owl:ObjectProperty ;
rdfs:subClassOf :calibrationMetric ;
rdfs:comment "Coefficient of Determination"@en .
### http://www.example.org/rascat#Hyetograph
:Hyetograph a owl:Class ;
rdfs:comment "Class representing a hyetograph."@en ;
rdfs:subClassOf :Hydrodata;
rdfs:subClassOf dcat:Dataset ;
owl:equivalentClass [ a owl:Restriction ;
owl:onProperty :isSpatiallyVaried ;
owl:cardinality 1 ] .
:fromHydroEvent a owl:ObjectProperty ;
rdfs:comment "The real-world hydrologic event used to generate the hyetograph."@en ;
rdfs:domain :Hyetograph ;
rdfs:range :HydroEvent .
:isSpatiallyVaried a owl:ObjectProperty ;
rdfs:comment "Indicates whether the hyetograph is spatially varied. Non-spatially varied hyetographs apply over the full domain of a 2D mesh."@en ;
rdfs:domain :Hyetograph ;
rdfs:range xsd:boolean .
:hasHyetograph a owl:ObjectProperty ;
rdfs:comment "The hyetograph used as inflow for a HEC-RAS model."@en ;
rdfs:domain :RasUnsteadyFlow ;
rdfs:range :Hyetograph .
### http://www.example.org/rascat#Streamgage
:Streamgage a owl:Class ;
rdfs:comment "Class representing a streamgage."@en ;
rdfs:subClassOf dcat:Dataset .
:fromStreamgage a owl:ObjectProperty ;
rdfs:comment "The streamgage from which a hydrograph was obtained."@en ;
rdfs:domain :Hydrograph ;
rdfs:range :Streamgage .
### http://www.example.org/rascat#HydroEvent
:HydroEvent a owl:Class ;
rdfs:comment "Class representing a real-world hydrologic event (e.g., a storm event)."@en ;
rdfs:subClassOf dcat:Dataset .
### Generated by the OWL API (version 4.5.24.2023-01-14T21:28:32Z) https://github.com/owlcs/owlapi