PREFIX : SELECT ?wellbore ?unit_name ?discovery ?lat ?long WHERE { ?w a :Wellbore ; :name ?wellbore ; :hasWellboreInterval ?c_int ; :hasWellboreInterval ?f_int . ?c_int :hasUnit ?c_unit . ?c_unit :name ?unit_name ; :ofStratigraphicColumn ?chrono_col . ?chrono_col a :ChronoStratigraphicColumn . ?f_int a :FluidZone ; :name ?discovery ; :overlapsWellboreInterval ?c_int . ?well :hasWellbore ?w ; :locatedIn ?pos . ?pos :latitude ?lat ; :longitude ?long FILTER ( ( ( ( ?lat > 60 ) && ( ?lat < 61 ) ) && ( ?long > 2 ) ) && ( ?long < 3 ) ) }