source: gs2-extensions/apache-jena/trunk/src/web-ext-js/sgvizler/example/exWorld6.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: 4.2 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>gGeoMap</code>: The population of South America per country
19 </h3>
20 <p></p>
21 <div id="sgvzl_example_query" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?Country ?Population WHERE{ [] w:hasName ?Country ; w:hasCountryPopulation ?Population; w:isCountryInContinent [ rdfs:label &#34;South America&#34; ] ; } ORDER BY DESC(?Population)" data-sgvizler-chart="gGeoMap" data-sgvizler-chart-options="title=South America|region=005" 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/world"
24 data-sgvizler-query="SELECT ?Country ?Population WHERE{ [] w:hasName ?Country ; w:hasCountryPopulation ?Population; w:isCountryInContinent [ rdfs:label &amp;quot;South America&amp;quot; ] ; } ORDER BY DESC(?Population)"
25 data-sgvizler-chart="gGeoMap"
26 data-sgvizler-chart-options="title=South America|region=005"
27 data-sgvizler-loglevel="2"
28 style="width:800px; height:400px;"/&gt;</pre><h3>The results of the query in <code>gTable</code></h3>
29 <div id="sgvzl_example_table" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?Country ?Population WHERE{ [] w:hasName ?Country ; w:hasCountryPopulation ?Population; w:isCountryInContinent [ rdfs:label &#34;South America&#34; ] ; } ORDER BY DESC(?Population)" data-sgvizler-chart="gTable" data-sgvizler-loglevel="2" style="width:800px; height:200px;"></div>
30 <h3>Same query, different charts</h3>
31 <p>Not all charts may be well-suited for displaying this dataset.</p>
32 <h4><code>gGeoChart</code></h4>
33 <div id="sgvzl_example_query_copy_1" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?Country ?Population WHERE{ [] w:hasName ?Country ; w:hasCountryPopulation ?Population; w:isCountryInContinent [ rdfs:label &#34;South America&#34; ] ; } ORDER BY DESC(?Population)" data-sgvizler-chart="gGeoChart" data-sgvizler-chart-options="region=005" data-sgvizler-loglevel="2" style="width:600px; height:300px;"></div>
34 <h4><code>gPieChart</code></h4>
35 <div id="sgvzl_example_query_copy_2" data-sgvizler-endpoint="http://sws.ifi.uio.no/sparql/world" data-sgvizler-query="SELECT ?Country ?Population WHERE{ [] w:hasName ?Country ; w:hasCountryPopulation ?Population; w:isCountryInContinent [ rdfs:label &#34;South America&#34; ] ; } ORDER BY DESC(?Population)" data-sgvizler-chart="gPieChart" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div>
36 <div id="footer">
37 <!--Please leave a link to the Sgvizler homepage.-->
38 <p>
39 Sgvizler visualizes the result of SPARQL SELECT queries using
40 javascript and the Google Visualization API. For more
41 information, see the <a href="http://code.google.com/p/sgvizler/">Sgvizler</a>
42 homepage. (c) 2011--2012 Martin G. SkjÊveland.
43
44 </p>
45 </div>
46 </body>
47</html>
Note: See TracBrowser for help on using the repository browser.