source: gs2-extensions/apache-jena/trunk/src/web-ext-js/sgvizler/example/exNPD9.html@ 28687

Last change on this file since 28687 was 28687, checked in by davidb, 10 years ago

Javascript files needed to support Google visualizations, made possible through SGVizer, which takes Sparql queries and converts the returned data into a format suitable for Google's visualization library

File size: 2.8 KB
Line 
1<!DOCTYPE HTML>
2<html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title>Sgvizler</title>
6 <meta charset="UTF-8">
7 <link rel="shortcut icon" href="http://sgvizler.googlecode.com/svn/www/favicon.ico">
8 <link rel="stylesheet" type="text/css" href="http://sgvizler.googlecode.com/svn/www/sgvizler.css">
9 <link rel="stylesheet" type="text/css" href="examples.css"><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script><script type="text/javascript" src="https://www.google.com/jsapi"></script><script type="text/javascript" id="sgvzlr_script" src="../sgvizler.js"></script><script type="text/javascript">sgvizler.option.namespace.npd = 'http://sws.ifi.uio.no/npd/';
10 sgvizler.option.namespace.npdv = 'http://sws.ifi.uio.no/vocab/npd#';
11
12 $(document).ready(sgvizler.go());
13 </script></head>
14 <body>
15 <div id="logo"><a href="http://code.google.com/p/sgvizler/"><img src="http://sgvizler.googlecode.com/svn/www/mr.sgvizler.png" alt="mr.sgvizler.png"></a><br>Mr. Sgvizler
16
17 </div>
18 <h3><code>sMap</code>: Things north of 72.5 degrees north
19 </h3>
20 <p></p>
21 <div id="sgvzl_example_query" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/npd" data-sgvizler-query="SELECT ?lat ?long ?name &#34;&#34; ?url WHERE { ?url npdv:nsDecDeg ?lat ; npdv:ewDecDeg ?long ; npdv:name ?name ; FILTER (?lat &gt; 72.5) }" data-sgvizler-chart="sMap" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div>
22 <p>The element which draws the above chart:</p><pre id="sgvzl_example_pre">&lt;div id="sgvzl_example_query"
23 data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/npd"
24 data-sgvizler-query="SELECT ?lat ?long ?name &amp;quot;&amp;quot; ?url WHERE { ?url npdv:nsDecDeg ?lat ; npdv:ewDecDeg ?long ; npdv:name ?name ; FILTER (?lat &gt; 72.5) }"
25 data-sgvizler-chart="sMap"
26 data-sgvizler-loglevel="2"
27 style="width:800px; height:400px;"/&gt;</pre><h3>The results of the query in <code>gTable</code></h3>
28 <div id="sgvzl_example_table" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/npd" data-sgvizler-query="SELECT ?lat ?long ?name &#34;&#34; ?url WHERE { ?url npdv:nsDecDeg ?lat ; npdv:ewDecDeg ?long ; npdv:name ?name ; FILTER (?lat &gt; 72.5) }" data-sgvizler-chart="gTable" data-sgvizler-loglevel="2" style="width:800px; height:200px;"></div>
29 <div id="footer">
30 <!--Please leave a link to the Sgvizler homepage.-->
31 <p>
32 Sgvizler visualizes the result of SPARQL SELECT queries using
33 javascript and the Google Visualization API. For more
34 information, see the <a href="http://code.google.com/p/sgvizler/">Sgvizler</a>
35 homepage. (c) 2011--2012 Martin G. SkjÊveland.
36
37 </p>
38 </div>
39 </body>
40</html>
Note: See TracBrowser for help on using the repository browser.