source: gs2-extensions/apache-jena/trunk/src/web-ext-js/sgvizler/example/exWorld7.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: 3.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.wd = 'http://sws.ifi.uio.no/d2rq/resource/';
10 sgvizler.option.namespace.w = 'http://sws.ifi.uio.no/ont/world.owl#';
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>dForceGraph</code>: The population of South America per country
19 </h3>
20 <p>The graph (well, it's a tree.) draws the structure Asia -&gt; part of continent -&gt; country.
21 The colors represents the different continents, the size the population of the country.
22 The animation is very snappy in Chrome, and not so snappy in other browsers.
23 </p>
24 <div id="sgvzl_example_query" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?node ?parent ?size ?color WHERE{ { [rdfs:label ?node ] w:isCountryInRegion [rdfs:label ?parent] ; w:isCountryInRegion ?color ; w:isCountryInContinent [rdfs:label &#34;Asia&#34;] ; w:hasCountryPopulation ?size } UNION { [rdfs:label ?node] w:isRegionInContinent [rdfs:label &#34;Asia&#34;,?parent] ; w:isRegionInContinent ?color } } ORDER BY ?size" data-sgvizler-chart="dForceGraph" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div>
25 <p>The element which draws the above chart:</p><pre id="sgvzl_example_pre">&lt;div id="sgvzl_example_query"
26 data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world"
27 data-sgvizler-query="SELECT ?node ?parent ?size ?color WHERE{ { [rdfs:label ?node ] w:isCountryInRegion [rdfs:label ?parent] ; w:isCountryInRegion ?color ; w:isCountryInContinent [rdfs:label &amp;quot;Asia&amp;quot;] ; w:hasCountryPopulation ?size } UNION { [rdfs:label ?node] w:isRegionInContinent [rdfs:label &amp;quot;Asia&amp;quot;,?parent] ; w:isRegionInContinent ?color } } ORDER BY ?size"
28 data-sgvizler-chart="dForceGraph"
29 data-sgvizler-loglevel="2"
30 style="width:800px; height:400px;"/&gt;</pre><h3>The results of the query in <code>gTable</code></h3>
31 <div id="sgvzl_example_table" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?node ?parent ?size ?color WHERE{ { [rdfs:label ?node ] w:isCountryInRegion [rdfs:label ?parent] ; w:isCountryInRegion ?color ; w:isCountryInContinent [rdfs:label &#34;Asia&#34;] ; w:hasCountryPopulation ?size } UNION { [rdfs:label ?node] w:isRegionInContinent [rdfs:label &#34;Asia&#34;,?parent] ; w:isRegionInContinent ?color } } ORDER BY ?size" data-sgvizler-chart="gTable" data-sgvizler-loglevel="2" style="width:800px; height:200px;"></div>
32 <div id="footer">
33 <!--Please leave a link to the Sgvizler homepage.-->
34 <p>
35 Sgvizler visualizes the result of SPARQL SELECT queries using
36 javascript and the Google Visualization API. For more
37 information, see the <a href="http://code.google.com/p/sgvizler/">Sgvizler</a>
38 homepage. (c) 2011--2012 Martin G. SkjÊveland.
39
40 </p>
41 </div>
42 </body>
43</html>
Note: See TracBrowser for help on using the repository browser.