Design
Research
Resources
Contact
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
SELECT ?hike
WHERE {
?hike oe-wtgw:isHikeOf oe-wtgw-ind:ArchesNationalPark
}
Hike |
---|
DoubleOArch |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
PREFIX Locations: <https://www.omg.org/spec/Commons/Locations/>
SELECT ?park ?latitude
WHERE {
?park Locations:hasLocation ?location .
?location Locations:hasLatitude ?latitude .
FILTER(datatype(?latitude) = xsd:decimal)
}
ORDER BY DESC(?latitude)
Park | Latitude |
---|---|
Rocky Mountain National | 44.33 |
Arches National Park | 37.2982 |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
SELECT ?park
WHERE {
?park rdf:type oe-wtgw:NationalPark .
?park oe-wtgw:hasState oe-wtgw-ind:Maine .
}
Park |
---|
Acadia National Park |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
PREFIX Locations: <https://www.omg.org/spec/Commons/Locations/>
SELECT ?park ?longitude ?summerTemp
WHERE {
?park rdf:type oe-wtgw:NationalPark .
?park Locations:hasLocation ?location .
?location Locations:hasLongitude ?longitude .
?park oe-wtgw:hasAvgSeasonalTemperature ?tempInd .
?tempInd rdf:type oe-wtgw:AvgSeasonalTemperature .
?tempInd oe-wtgw:temperatureHasSeason oe-wtgw-ind:Summer .
?tempInd oe-wtgw:hasTemperature ?summerTemp .
FILTER(?longitude >= -110 && ?longitude <= -82)
}
ORDER BY ASC(?summerTemp)
Park | Summer Temperature |
---|---|
Rocky Mountain National | 70°F |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
SELECT ?park ?summerTemp ?hike ?distance
WHERE {
?park rdf:type oe-wtgw:NationalPark .
?park oe-wtgw:hasAvgSeasonalTemperature ?tempInd .
?tempInd rdf:type oe-wtgw:AvgSeasonalTemperature .
?tempInd oe-wtgw:temperatureHasSeason oe-wtgw-ind:Summer .
?tempInd oe-wtgw:hasTemperature ?summerTemp .
?park oe-wtgw:hasHike ?hike .
?hike oe-wtgw:hasDistance ?distance .
FILTER(?distance <= 2)
}
ORDER BY ASC(?summerTemp)
Park | Temp | Hike | Distance |
---|---|---|---|
Crater Lake National | 65°F | Watchman Peak Trail | 1.7 mi |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX oe-wtgw: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere/>
PREFIX oe-wtgw-ind: <https://tw.rpi.edu/ontology-engineering/oe2024/when-to-go-where/WhenToGoWhere-individuals/>
SELECT ?park ?hike ?distance
WHERE {
?park rdf:type oe-wtgw:NationalPark .
?park oe-wtgw:hasState oe-wtgw-ind:California .
?park oe-wtgw:hasHike ?hike .
?hike oe-wtgw:hasDistance ?distance .
FILTER(datatype(?distance) = xsd:decimal)
}
ORDER BY DESC(?distance)
Hike | Distance |
---|---|
Lakes Trail | 12.2 mi |