10. This document is part of a project that has received funding
from the European Union’s Horizon 2020 research and innovation programme
under agreement No 732064. It is the property of the DataBio consortium and shall not be distributed or
reproduced without the formal approval of the DataBio Management Committee. Find us at www.databio.eu.
10
Datasets identification and collection
• UC2 datasets
• Czech datasets
• Czech LPIS data showing the actual land boundaries.
• Czech erosion zones (strongly/SEO and moderately / MEO erosion-endangered soil zones)
• Czech water bodies (e.g., restricted area near to water bodies has 25m buffer according to
the nitrate directive).
• The data about soil types from all over Czech Republic.
• Polish datasets
• Polish LPIS data showing the cadastral land boundaries from all over the country.
• European datasets
• FADN (Farm Accountancy Data Network) data about the income of agricultural holdings and
the impacts of the Common Agricultural Policy from all EU member states
• Various open European geospatial datasets including
• (part of) Open Land Use (OLU)
• (part of) Open Transport Map (OTM)
• Smart Points of Interest (SPOI),
• (part of) Urban Atlas (pan-European comparable land use and land cover data for Large
Urban Zones )
• (part of) CORINE Land Cover
• HILUCS (Hierarchical INSPIRE Land Use Classification System )
• Experimental sample dataset from the review platform Yelp (global coverage).
The data contents are regarding the geographical location of a business, review
and reviewer information.
Source data types: shapefiles, JSON, CSV,
relational databases
25. This document is part of a project that has received funding
from the European Union’s Horizon 2020 research and innovation programme
under agreement No 732064. It is the property of the DataBio consortium and shall not be distributed or
reproduced without the formal approval of the DataBio Management Committee. Find us at www.databio.eu.
25
Exploiting the Linked Data – querying examples (3+
linked datasets)
• Show me all the land parcels (OLU) that
have hotels (SPOI) and that lie not more
than 50 meters away from the major
highway (OTM) (linking 3 datasets)?
SELECT DISTINCT ?olu ?hilucs ?source ?municode ?specificLandUse FROM <http://w3id.org/foodie/olu#> WHERE { ?olu a olu:LandUse . ?olu geo:hasGeometry ?geometry . ?olu olu:hilucsLandUse ?hilucs . ?olu olu:geometrySource ?source . OPTIONAL {?olu olu:municipalCode ?municode} . OPTIONAL {?olu olu:specificLandUse ?specificLandUse} . ?geometry geo:asWKT ?coordinatesOLU . FILTER(bif:st_within(bif:st_geomFromText(?coordinatesPOI),?coordinatesOLU)). { SELECT DISTINCT ?Resource, ?Label, bif:st_astext(?coordinatesPOIa) as ?coordinatesPOI FROM <http://www.sdi4apps.eu/poi.rdf> WHERE { ?Resource rdfs:label ?Label . ?Resource poi:class <http://gis.zcu.cz/SPOI/Ontology#lodging> . ?Resource geo:asWKT ?coordinatesPOIa . FILTER(bif:st_within(?coordinatesPOIa,bif:st_geomFromText(?coordinatesOTM),0.00045)) . { SELECT bif:st_astext(?x) as ?coordinatesOTM FROM <http://w3id.org/foodie/otm#> WHERE { ?roadlink a otm:RoadLink . ?roadlink otm:roadName ?name. ?roadlink otm:functionalRoadClass ?class. ?roadlink otm:centerLineGeometry ?geometry . ?geometry geo:asWKT ?x . FILTER(bif:st_intersects (?x, bif:st_geomFromText("POLYGON((14.426647 50.0751251,14.426647 50.07685089,14.4305469
50.07685089,14.43054696 50.0751251,14.426647 50.0751251))"))) . FILTER(STRSTARTS(STR(?class),"firstClass") ) . } } } }
}