PREFIX : SELECT ?wellbore ?c ?top_tvd_m ?permeability ?porosity ?lat ?long WHERE { ?w a :Wellbore ; :name ?wellbore ; :hasWellboreInterval ?int . ?c a :Core ; :extractedFrom ?int . ?int :hasTopDepth ?top . ?top a :TrueVerticalDepth ; :valueInStandardUnit ?top_tvd_m . ?c :hasCoreSample ?s . ?s :hasPermeability ?p . ?p :valueInStandardUnit ?permeability . ?c :hasCoreSample ?s2 . ?s2 :hasPorosity ?por . ?por :valueInStandardUnit ?porosity . ?well :hasWellbore ?w ; :locatedIn ?pos . ?pos :latitude ?lat ; :longitude ?long FILTER ( ( ( ( ?lat > 60 ) && ( ?lat < 61 ) ) && ( ?long > 2 ) ) && ( ?long < 3 ) ) }