rev |
line source |
ggarbis@786
|
1 # Παράδειγμα για το deleteReflections.rq
|
ggarbis@786
|
2 # Έχει hotspots σε 4 περιοχές.
|
ggarbis@786
|
3 # Το πρώτο (h11-h14) δεν έχει γείτονες και είναι αναμένο για μία ώρα. Συνεπώς θεωρείται αντανάκλαση και διαγράφεται.
|
ggarbis@786
|
4 # Το δεύτερο (h21-h22) δεν έχει γείτονες αλλά ανάβει μόνο δύο φορές σε μία ώρα. Συνεπώς δεν θεωρείται αντανακλαση.
|
ggarbis@786
|
5 # Το τρίτο (h31-h34) είναι αναμένο επί μία ώρα αλλά έχει ένα γείτονα -το τέταρτο hotspots(h41)- άρα επίσης δεν θεωρείται αντανάκλαση.
|
ggarbis@786
|
6
|
ggarbis@786
|
7 @prefix lgd: <http://linkedgeodata.org/triplify/> .
|
ggarbis@786
|
8 @prefix lgdgeo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
|
ggarbis@786
|
9 @prefix lgdont: <http://linkedgeodata.org/ontology/> .
|
ggarbis@786
|
10 @prefix geonames: <http://www.geonames.org/ontology#> .
|
ggarbis@786
|
11 @prefix clc: <http://geo.linkedopendata.gr/corine/ontology#> .
|
ggarbis@786
|
12 @prefix gag: <http://teleios.di.uoa.gr/ontologies/gagKallikratis.rdf#> .
|
ggarbis@786
|
13 @prefix noa: <http://teleios.di.uoa.gr/ontologies/noaOntology.owl#> .
|
ggarbis@786
|
14 @prefix dlr: <http://www.earthobservatory.eu/ontologies/dlrOntology-v2.owl#> .
|
ggarbis@786
|
15 @prefix strdf: <http://strdf.di.uoa.gr/ontology#> .
|
ggarbis@786
|
16 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
ggarbis@786
|
17 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
ggarbis@786
|
18 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
ggarbis@786
|
19
|
ggarbis@786
|
20 noa:h11 noa:hasAcquisitionTime "2007-08-23T12:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
21 noa:hasGeometry "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
22 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
23 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
24
|
ggarbis@786
|
25
|
ggarbis@786
|
26 noa:h12 noa:hasAcquisitionTime "2007-08-23T12:15:00"^^xsd:dateTime ;
|
ggarbis@786
|
27 noa:hasGeometry "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
28 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
29 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
30
|
ggarbis@786
|
31 noa:h13 noa:hasAcquisitionTime "2007-08-23T12:30:00"^^xsd:dateTime ;
|
ggarbis@786
|
32 noa:hasGeometry "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
33 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
34 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
35
|
ggarbis@786
|
36 noa:h14 noa:hasAcquisitionTime "2007-08-23T13:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
37 noa:hasGeometry "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
38 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
39 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
40
|
ggarbis@786
|
41 noa:h21 noa:hasAcquisitionTime "2007-08-23T12:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
42 noa:hasGeometry "POLYGON ((20 0, 30 0, 30 10, 20 10, 20 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
43 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
44 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
45
|
ggarbis@786
|
46 noa:h22 noa:hasAcquisitionTime "2007-08-23T13:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
47 noa:hasGeometry "POLYGON ((20 0, 30 0, 30 10, 20 10, 20 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
48 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
49 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
50
|
ggarbis@786
|
51 noa:h31 noa:hasAcquisitionTime "2007-08-23T12:15:00"^^xsd:dateTime ;
|
ggarbis@786
|
52 noa:hasGeometry "POLYGON ((40 10, 50 10, 50 20, 40 20, 40 10))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
53 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
54 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
55
|
ggarbis@786
|
56 noa:h41 noa:hasAcquisitionTime "2007-08-23T12:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
57 noa:hasGeometry "POLYGON ((40 0, 50 0, 50 10, 40 10, 40 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
58 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
59 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
60
|
ggarbis@786
|
61 noa:h42 noa:hasAcquisitionTime "2007-08-23T12:15:00"^^xsd:dateTime ;
|
ggarbis@786
|
62 noa:hasGeometry "POLYGON ((40 0, 50 0, 50 10, 40 10, 40 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
63 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
64 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
65
|
ggarbis@786
|
66 noa:h43 noa:hasAcquisitionTime "2007-08-23T12:30:00"^^xsd:dateTime ;
|
ggarbis@786
|
67 noa:hasGeometry "POLYGON ((40 0, 50 0, 50 10, 40 10, 40 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
68 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
69 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|
ggarbis@786
|
70
|
ggarbis@786
|
71 noa:h44 noa:hasAcquisitionTime "2007-08-23T13:00:00"^^xsd:dateTime ;
|
ggarbis@786
|
72 noa:hasGeometry "POLYGON ((40 0, 50 0, 50 10, 40 10, 40 0))"^^<http://strdf.di.uoa.gr/ontology#WKT> ;
|
ggarbis@786
|
73 noa:producedFromProcessingChain "StaticThresholds"^^xsd:string ;
|
ggarbis@786
|
74 noa:isDerivedFromSensor "MSG2"^^xsd:string .
|