IEEE Geoscience and Remote Sensing Magazine - September 2016 - 32
corresponding ontologies are given as input to GeoTriples,
which automatically constructs R2RML or RML mappings that
dictate the method of conversion of data into the RDF data
model. Spatial information is mapped into RDF according to
the GeoSPARQL vocabulary by using the transformation extension functions for R2RML/RML developed in LEO.
STORAgE/qUERyINg
MonetDB and Strabon are used as storage and query engines
in this application. As we explained earlier, MonetDB is used
for the storage of raw image data and metadata, handling
them as arrays and processing them using SciQL queries. In
the "Transformation into RDF" section, we also explained
how the hot-spot products are encoded in stRDF, so that they
can be combined with auxiliary linked geospatial data. By
correlating detected hot spots with auxiliary data, we associate more sophisticated information with them (e.g., municipalities that are affected by the fire), and we increase their accuracy (e.g., false alarms are detected and discarded). These
rich queries can be expressed by exploiting the expressive
power of the query language stSPARQL.
qUALITy ASSURANCE
The data sets described previously are mainly used to enhance the information captured by hot-spot data and to
increase its accuracy. In this section, we describe a series of
refinement steps using stSPARQL updates that enrich hotspot data with information about nearby municipalities
and increase its accuracy by detecting and correcting false
positives or omission errors.
Notably, the queries described below are sophisticated
update statements that exploit extensively the expressivity
of SPARQL 1.1 and stSPARQL (e.g., GROUP BY, HAVING,
aggregations, and OPTIONAL) to cover the needs of the real-time wildfire-monitoring application of the NOA. GeoSPARQL does not support spatial aggregates and updates
that were needed in this use case.
attribute enrichment
Each hot spot is connected with a municipality where it is
located, using the GAG data set. This is crucial information
offered to decision makers and crisis managers for the optimal allocation of their firefighting resources. In the following statement, the name of a municipality that spatially
intersects with a hot spot is set as a property of the hot spot
to perform this refinement.
INSERT {?h gag:hasMunicipality ?municipality}
WHERE {SELECT ?h (SAMPLE(?mLabel) AS ?municipality)
WHERE {?h rdf:type noa:Hotspot;
noa:hasGeometry ?hGeo;
?m rdf:type gag:Municipality;
rdfs:label ?mLabel;
strdf:hasGeometry ?mGeo.
FILTER(strdf:intersects(?hGeo,
?mGeo)).} GROUP BY ?h}
32
consistency refinement
The thematic consistency of the hot spots generated by the
processing chain is achieved by the refinement step that correlates them with auxiliary geospatial data. This is done by a
series of stSPARQL updates on the stRDF representation of the
hot spots by taking into account relevant stRDF data sets from
the ones presented above. The first step is to delete all hot spots
that lie in the sea. Classification of the pixels inside the sea
as hot spots is commonly encountered in wildfire scenarios
near the coast. The hot smoke spreads above the sea, leading to
misclassification of the corresponding pixels. This operation
is performed by the following stSPARQL update that marks
every retrieved hot spot as discarded. We are using the query
applied previously, i.e., if a hot spot does not spatially intersect
a municipality, it lies in the sea; so it is discarded.
INSERT {?h noa:isDiscarded "1"^^xsd:int}
WHERE {?h rdf:type noa:Hotspot.
OPTIONAL {?h gag:hasMunicipality?
municipality}.
FILTER(!bound(?municipality)).}
In a similar way, hot spots that are in the mainland but lie
in nonconsistent land cover areas are also discarded. Using the
Greek Landscape data set, the nonconsistent classes are defined as artificial surfaces, agricultural areas (i.e., arable land
and permanent crops), and wetlands and water bodies. This
operation is performed by the following stSPARQL update.
INSERT {?h noa:isDiscarded "1"^^xsd:int}
WHERE {SELECT ?h
WHERE {
?h rdf:type noa:Hotspot; noa:
hasGeometry ?hGeo.
?a rdf:type clc:ExcludeArea;
clc:hasGeometry ?aGeo.
FILTER(strdf:mbbIntersects(?hGeo,
?aGeo)).}
GROUP BY ?h ?hGeo
HAVING strdf:contains(strdf:union
(?aGeo),?hGeo)}
To ensure the product visualization consistency, we also utilize
the Greek Coastline data set, keep only the part of a hot-spot
polygon that lies in land, and eliminate the part that lies in the sea.
temporaL persistence
The fire-detecting processing chain identifies hot-spot pixels and marks them either as potential fires with a confidence
level of 0.5 or as certain fires with a confidence level 1.0. The
algorithm is based on a series of spectral tests with some
thresholds. Appropriately setting these thresholds is the outcome of a tradeoff between omission errors and false alarms.
In certain scenarios, this leads to a phenomenon described as
the Christmas tree effect, where some hot spots appear for the
first time, in the next timestamp they disappear, then they
ieee Geoscience and remote sensinG maGazine
september 2016
Table of Contents for the Digital Edition of IEEE Geoscience and Remote Sensing Magazine - September 2016
IEEE Geoscience and Remote Sensing Magazine - September 2016 - Cover1
IEEE Geoscience and Remote Sensing Magazine - September 2016 - Cover2
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 1
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 2
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 3
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 4
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 5
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 6
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 7
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 8
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 9
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 10
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 11
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 12
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 13
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 14
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 15
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 16
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 17
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 18
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 19
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 20
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 21
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 22
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 23
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 24
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 25
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 26
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 27
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 28
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 29
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 30
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 31
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 32
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 33
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 34
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 35
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 36
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 37
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 38
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 39
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 40
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 41
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 42
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 43
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 44
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 45
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 46
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 47
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 48
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 49
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 50
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 51
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 52
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 53
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 54
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 55
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 56
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 57
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 58
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 59
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 60
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 61
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 62
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 63
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 64
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 65
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 66
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 67
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 68
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 69
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 70
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 71
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 72
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 73
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 74
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 75
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 76
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 77
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 78
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 79
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 80
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 81
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 82
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 83
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 84
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 85
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 86
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 87
IEEE Geoscience and Remote Sensing Magazine - September 2016 - 88
IEEE Geoscience and Remote Sensing Magazine - September 2016 - Cover3
IEEE Geoscience and Remote Sensing Magazine - September 2016 - Cover4
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2023
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2023
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2023
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2023
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2022
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2022
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2022
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2022
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2021
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2021
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2021
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2021
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2020
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2020
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2020
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2020
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2019
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2019
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2019
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2019
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2018
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2018
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2018
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2018
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2017
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2017
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2017
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2017
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2016
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2016
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2016
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2016
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2015
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2015
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2015
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2015
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2014
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2014
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2014
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2014
https://www.nxtbook.com/nxtbooks/ieee/geoscience_december2013
https://www.nxtbook.com/nxtbooks/ieee/geoscience_september2013
https://www.nxtbook.com/nxtbooks/ieee/geoscience_june2013
https://www.nxtbook.com/nxtbooks/ieee/geoscience_march2013
https://www.nxtbookmedia.com