Advertisement
open_data_sheffield

temperatures since 24 sept 2011

Jul 23rd, 2015
2,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.34 KB | None | 0 0
  1. PREFIX opensheff: <uri://opensheffield.org/properties#>
  2.  
  3. SELECT ?time ?temp WHERE {
  4.     ?m opensheff:sensor <uri://opensheffield.org/datagrid/sensors/Weather_Mast/Weather_Mast.ic> ;
  5.        opensheff:rawValue ?temp ;
  6.        <http://purl.oclc.org/NET/ssnx/ssn#endTime> ?time .
  7.   FILTER (STR(?time) > "2011-09-24")
  8. }
  9. ORDER BY ASC(?time)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement