|
From: <il...@us...> - 2003-10-22 06:44:35
|
Update of /cvsroot/meshdb/www/db2
In directory sc8-pr-cvs1:/tmp/cvs-serv30466
Modified Files:
gps.php
Log Message:
Outstanding commit from David: terminology fixes.
Index: gps.php
===================================================================
RCS file: /cvsroot/meshdb/www/db2/gps.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- gps.php 10 Aug 2002 03:33:24 -0000 1.1.1.1
+++ gps.php 22 Oct 2003 04:47:53 -0000 1.2
@@ -2,18 +2,18 @@
<html>
<head>
<link rel="stylesheet" href="<?=$PREF["stylesheet"]?>" type="text/css">
-<title>Convert between GPS/geodetic and UBD/grid</title>
+<title>Convert between GPS/curvilinear and UTM/grid</title>
<body>
-<h1>Convert between GPS/geodetic and UBD/grid</h1>
+<h1>Convert between GPS/curvilinear and UTM/grid</h1>
<p>
-This page allows you to convert Queensland geodetic coordinates (lat/long) to
-grid coordinates, and back again.
+This page allows you to convert Queensland curvilinear coordinates (lat/long) to
+grid coordinates (eastings/northings), and back again.
<?
$TOGRID = "to grid";
- $FROMGRID = "to geodetic";
+ $FROMGRID = "to curv.";
/*
function array_map($f, $a) {
@@ -110,7 +110,7 @@
}
?>
<table>
-<tr><td width=20% align=center>GPS<td width=5%><td width=20% align=center>UBD
+<tr><td width=20% align=center>Curvilinear<br>(GPS)<td width=5%><td width=20% align=center>UTM<br>(UBD)
<tr align=center><td>
Latitude:<input name="lat" value="<?=htmlspecialchars($lat)?>" size=10>
<br>
@@ -118,9 +118,9 @@
<br>
System: <select name="llsystem">
<option value="grs80" <?
- if ($llsystem == "grs80") echo "selected";?>>WGS84 (global)</option>
+ if ($llsystem == "grs80") echo "selected";?>>WGS84 (GPS/modern)</option>
<option value="ans" <?
- if ($llsystem == "ans") echo "selected";?>>AGD66 (Aust.)</option>
+ if ($llsystem == "ans") echo "selected";?>>AGD66 (old Aust. maps)</option>
</select>
<td valign=middle>
|