diff options
| author | lsces <lester@lsces.co.uk> | 2013-07-11 23:25:55 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2013-07-11 23:25:55 +0100 |
| commit | 985f28d041f655add3f94f49fb594bf631c6853f (patch) | |
| tree | 09dbc387e9fb30b880b45698291894d5d5dec97a | |
| parent | 1b496c6256e4a79bc719ce8dc49d89aaed0ec87a (diff) | |
| download | util-985f28d041f655add3f94f49fb594bf631c6853f.tar.gz util-985f28d041f655add3f94f49fb594bf631c6853f.tar.bz2 util-985f28d041f655add3f94f49fb594bf631c6853f.zip | |
Docblockiez the comments
| -rw-r--r-- | phpcoord/test-2.3.php | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/phpcoord/test-2.3.php b/phpcoord/test-2.3.php index c9edc8b..8c90261 100644 --- a/phpcoord/test-2.3.php +++ b/phpcoord/test-2.3.php @@ -1,7 +1,12 @@ <?php - - //--------------------------------------------------------------------------
// PHPcoord - // text.php
//
// (c) 2005 Jonathan Stott
//
// Created on 11-Aug-2005
// +/**------------------------------------------------------------------------- + // PHPcoord + // text.php + // + // (c) 2005 Jonathan Stott + // + // Created on 11-Aug-2005 + // // 2.3 - 24 Aug 2006 // - Changed OSRef->toSixFigureString() so that the eastings and northings // are rounded rather than floored. @@ -13,11 +18,20 @@ // 2.0 - 21 Dec 2005 // - Completely different object design - conversion functions now through // objects rather than static functions - // - Updated comments and documentation
// 1.1 - 11 Sep 2005 + // - Updated comments and documentation + // 1.1 - 11 Sep 2005 // - Added OSGB36/WGS84 data conversions - // 1.0 - 11 Aug 2005
// - Initial version
//-------------------------------------------------------------------------- - + // 1.0 - 11 Aug 2005 + // - Initial version + //-------------------------------------------------------------------------- + * + * @package kernel + * @subpackage functions + */ +/** + * Load library + */ require_once("phpcoord-2.3.php"); ?> @@ -194,4 +208,4 @@ echo "Converted to UTM Ref: " . $utm2->toString() ;</pre> </p> </body> -</html>
\ No newline at end of file +</html> |
