-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
26 lines (25 loc) · 2.44 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?
error_reporting(0);
include 'functions.inc.php';
outputHeader("About this tool", "");
?>
<p>
This tool was created by <?= mklink('http://www.crwilliams.co.uk', 'Colin R. Williams') ?> in order to assist in the creation of open geographic data.
</p>
<p>
The problem with existing map creation tools (such as <?= mklink('http://maps.google.com', 'Google Maps') ?> and <?= mklink('http://openspace.ordnancesurvey.co.uk/openspace/', 'OS OpenSpace') ?>) is that their licenses place tight restrictions on what can be done with data created using those tools. (For more information, see <?= mklink('http://blogs.ecs.soton.ac.uk/data/2011/06/23/generating-open-geographic-data/', 'my blog post', 'blog post on generating open geographic data') ?> on the matter.) In contrast, this tool makes use of the <?= mklink('http://www.ordnancesurvey.co.uk/oswebsite/products/os-streetview/index.html', 'OS Street View') ?> maps which are provided as part of the <?= mklink('http://www.ordnancesurvey.co.uk/oswebsite/products/os-opendata.html', 'OS OpenData') ?> service, under the <?= mklink('http://www.ordnancesurvey.co.uk/opendata/licence', 'OS OpenData Licence') ?>. As such, data produced using this tool is considered to be derived data, which is free to be used with attribution to the Ordnance Survey.
</p>
<p>
This tool makes use of a number of openly licensed resources, as follows:
<ul>
<li><?= mklink('http://openlayers.org/', 'OpenLayers') ?> (available under a <?= mklink('https://raw.github.com/openlayers/openlayers/master/license.txt', 'FreeBSD license') ?>)</li>
<li><?= mklink('http://trac.osgeo.org/proj4js/', 'proj4js') ?> (available under a <?= mklink('http://www.gnu.org/copyleft/lesser.html', 'LGPL license') ?>)</li>
<li><?= mklink('https://github.com/phayes/geoPHP', 'geoPHP') ?> (available under a <?= mklink('http://opensource.org/licenses/BSD-3-Clause', 'Modified BSD license') ?>)</li>
<li><?= mklink('http://jquery.org/', 'jQuery') ?> (available under a <?= mklink('http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt', 'MIT license') ?>)</li>
<li><?= mklink('http://jqueryui.com/', 'jQuery UI') ?> (available under a <?= mklink('http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt', 'MIT license') ?>)</li>
<li><?= mklink('http://www.famfamfam.com/lab/icons/silk/', 'famfamfam silk icons') ?> (available under the <?= mklink('http://creativecommons.org/licenses/by/3.0/', 'Creative Commons Attribution 3.0 License') ?>)</li>
</ul>
</p>
<?
outputFooter();
?>