Skip to content

Instantly share code, notes, and snippets.

@shellac
Created July 22, 2013 12:49
Show Gist options
  • Save shellac/6053600 to your computer and use it in GitHub Desktop.
Save shellac/6053600 to your computer and use it in GitHub Desktop.
SELECT DISTINCT ?Sensor0 ?LeftBoundary1 ?RightBoundary2 ?TopBoundary3 ?BottomBoundary4
WHERE {
{
?PathRow5 <http://toto/#bottomBoundary> ?BottomBoundary4 .
?PathRow5 <http://toto/#topBoundary> ?TopBoundary3 .
?PathRow5 <http://toto/#leftBoundary> ?LeftBoundary1 .
?PathRow5 <http://toto/#rightBoundary> ?RightBoundary2 .
?PathRow5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://toto/#PathRow> .
FILTER (?RightBoundary2 > 2 ) . FILTER(?LeftBoundary1 < 2) . FILTER(?TopBoundary3 > 40) . FILTER(?BottomBoundary4 < 40)
}
?satelliteImage6 <http://toto/#pathRow> ?PathRow5 .
?satelliteImage6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://toto/#satelliteImage> .
?satelliteImage6 <http://toto/#sensor> ?Sensor0 .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment