473,399 Members | 3,106 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Time/distance converter help (ptII)

Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings. What i'd
like is a simple converter to allow a user to input the distance travelled
in miles and the time in hours and minutes, the result being an average
speed. What i'd appreciate is for someone to write the script for me and
post here if possible. I am willing to learn but don't know where to start
and i've found no tutorial that will help me!

Thanks...Andre
Mar 3 '07 #1
11 4044
On Sat, 03 Mar 2007 22:10:04 +0100, Dirntknow <no****@please.comwrote:
Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings. What i'd
like is a simple converter to allow a user to input the distance
travelled
in miles and the time in hours and minutes, the result being an average
speed. What i'd appreciate is for someone to write the script for me and
post here if possible. I am willing to learn but don't know where to
start
and i've found no tutorial that will help me!

Thanks...Andre

Assuming you want to run this script in a web page:

<html>
<head>
<title>Converting distance and time into speed</title>
<script type="text/javascript">
function Calculate() {
var theDistance = new Number(document.forms['theForm'].txtDistance.value);
var theTimeUsed = new Number(document.forms['theForm'].txtTimeUsed.value);
if(!NaN(theDistance)&&!NaN(theTimeUsed)&&(theTimeU sed>0)) {
document.forms['theForm'].txtResult = (theDistance / (theTimeUsed/60));
return true;
}
return false;
}
</script>
</head>
<body>
<h1>Converting distance and time into speed</h1>
<form name="theForm" id="theForm" action="#" onsubmit="Calculate();return
false;">
<fieldset><legend>Enter information:</legend>
<p><label for="txtDistance">Distance: <input type="text"
name="txtDistance" id="txtDistance" value="0" /(in miles).</label></p>
<p><label for="txtTimeUsed">Time Used: <input type="text"
name="txtTimeUsed" id="txtTimeUsed" value="0" /(in minutes).</label></p>
</fieldset>
<fieldset><legend>Options</legend>
<p><input type="reset" value="Cancel" /<input type="submit"
value="Calculate!" /></p>
</fieldset>
<fieldset><legend>Result</legend>
<p><label for="txtResult">Average speed: <input type="text"
name="txtResult" id="txtResult" value="0" /(miles per hour).</p>
</fieldset>
</body>
</html>

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Mar 3 '07 #2
On Sat, 03 Mar 2007 22:26:34 +0100, OmegaJunior
<om*********@spamremove.omegajunior.netwrote:
On Sat, 03 Mar 2007 22:10:04 +0100, Dirntknow <no****@please.comwrote:
>Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings. What
i'd
like is a simple converter to allow a user to input the distance
travelled
in miles and the time in hours and minutes, the result being an average
speed. What i'd appreciate is for someone to write the script for me and
post here if possible. I am willing to learn but don't know where to
start
and i've found no tutorial that will help me!

Thanks...Andre


Assuming you want to run this script in a web page:

<html>
<head>
<title>Converting distance and time into speed</title>
<script type="text/javascript">
function Calculate() {
var theDistance = new
Number(document.forms['theForm'].txtDistance.value);
var theTimeUsed = new
Number(document.forms['theForm'].txtTimeUsed.value);
if(!NaN(theDistance)&&!NaN(theTimeUsed)&&(theTimeU sed>0)) {
document.forms['theForm'].txtResult = (theDistance /
(theTimeUsed/60));
return true;
}
return false;
}
</script>
</head>
<body>
<h1>Converting distance and time into speed</h1>
<form name="theForm" id="theForm" action="#"
onsubmit="Calculate();return false;">
<fieldset><legend>Enter information:</legend>
<p><label for="txtDistance">Distance: <input type="text"
name="txtDistance" id="txtDistance" value="0" /(in miles).</label></p>
<p><label for="txtTimeUsed">Time Used: <input type="text"
name="txtTimeUsed" id="txtTimeUsed" value="0" /(in
minutes).</label></p>
</fieldset>
<fieldset><legend>Options</legend>
<p><input type="reset" value="Cancel" /<input type="submit"
value="Calculate!" /></p>
</fieldset>
<fieldset><legend>Result</legend>
<p><label for="txtResult">Average speed: <input type="text"
name="txtResult" id="txtResult" value="0" /(miles per hour).</p>
</fieldset>
</body>
</html>
Ack. Forgot </formbefore </body>.

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Mar 3 '07 #3
OmegaJunior <om*********@spamremove.omegajunior.netwrote:
<snip>
if(!NaN(theDistance)&&!NaN(theTimeUsed)&&(theTimeU sed>0)) {
<snip ^^^^^^^^^^^^^^^^

Attempting to call a number is not going to be effective.

Richard.
Mar 3 '07 #4
On Sat, 03 Mar 2007 23:46:57 +0100, Richard Cornford
<Ri*****@litotes.demon.co.ukwrote:
OmegaJunior <om*********@spamremove.omegajunior.netwrote:
<snip>
> if(!NaN(theDistance)&&!NaN(theTimeUsed)&&(theTimeU sed>0)) {
<snip ^^^^^^^^^^^^^^^^

Attempting to call a number is not going to be effective.

Richard.
Erm, yeah. NaN() should be isNaN(). (Hope you meant to point that out.)
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Mar 3 '07 #5
Sorry, doesn't work for me!! :-(
Mar 4 '07 #6
Dirntknow wrote:
Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings. What i'd
like is a simple converter to allow a user to input the distance travelled
in miles and the time in hours and minutes, the result being an average
speed. What i'd appreciate is for someone to write the script for me and
post here if possible. I am willing to learn but don't know where to start
and i've found no tutorial that will help me!
function getSpeed(distance,hours,minutes,precision){// distance: Miles
return toFixed(distance/(hours + minutes/60),precision?precision:2) +"MPH";
}
However make sure user's input is valid, see discussion in an earlier
post by John Stockton.
Mick

Mick
Mar 4 '07 #7
On Mar 4, 7:10 am, "Dirntknow" <nos...@please.comwrote:
Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings.
You probably wont find a single tutorial to teach you everything
that's needed, you'll need to learn about javascript in general then
apply the knowledge to problem.

You need to learn how to get values from form controls, validate the
input, display error messages, do calculations and format and present
the results.

The following should get you started, I've used an alert for the error
messages but it is much better to write them to the page in an
appropriate spot. I'll leave that to you:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<title>Units per Hour</title>
<style type="text/css">
.label {text-align: right;}
</style>

<script type="text/javascript">

// The following set of functions adds a toFixed method
// to the built-in Number object
// From clj FAQ: http://www.jibbering.com/faq/#FAQ4_6
function Stretch(Q, L, c) { var S = Q
if (c.length>0) while (S.length<L) { S = c+S }
return S
}
function StrU(X, M, N) { // X>=0.0
var T, S=new String(Math.round(X*Number("1e"+N)))
if (S.search && S.search(/\D/)!=-1) { return ''+X }
with (new String(Stretch(S, M+N, '0')))
return substring(0, T=(length-N)) + '.' + substring(T)
}
function Sign(X) { return X<0 ? '-' : ''; }
function StrS(X, M, N) { return Sign(X)+StrU(Math.abs(X), M, N) }
Number.prototype.toFixed= function(n){ return StrS(this,1,n)};

// Check a possible float - decimal place is optional
function validNum(n) {
return /^\d+\.?\d*$/.test(n);
}

// Check an int
function validInt(n) {
return /^\d+$/.test(n);
}

// Convert units to per hour
function unitsPerHr(form) {
var rate;
var dist = form.distance.value;
var time = form.time.value.split(':');
var hr = time[0];
var min = time[1];
var sec = time[2];
var err = [];

// Check distance is a valid number
if (!validNum(dist)) {
err.push('Quantity must be a valid number, e.g. 23.5');
}

// Check time parts are valid
if (!validInt(hr) || !validInt(min) || !validNum(sec)) {
err.push('Time must be hour:min:sec, e.g. 2:23:15.5');
}

// Check time numbers are within range
if (min 59 || sec >= 60) {
err.push('Minutes and seconds must be less than 60');
}

// Convert time to decimal hours:
hr = +hr + min/60 + sec/3600;

if (hr 0) {
rate = (dist/hr).toFixed(2);
} else {
err.push('Time must be greater than zero')
}

if (err.length 0) {
alert(err.join('\n\n'));
} else {
document.getElementById('result').innerHTML =
rate + ' units per hour';
}
return false;
}

</script>

<form action="" onsubmit="return unitsPerHr(this);">
<table>
<tr>
<td class="label">Enter quantity:
<td><input type="text" name="distance" value="0">
<tr>
<td class="label">Enter time<br>hr:min:sec:
<td><input type="text" name="time" value="0:0:0">
<tr>
<td class="label"><input type="submit" value="Calculate">
<td><span id="result"></span>
</table>
</form>
--
Rob

Mar 4 '07 #8
Michael White wrote:
Dirntknow wrote:
>Further to my recent post in this newsgroup i've got to admit i'm
struggling. I've no experience with javascript or it's workings. What
i'd like is a simple converter to allow a user to input the distance
travelled in miles and the time in hours and minutes, the result being
an average speed. What i'd appreciate is for someone to write the
script for me and post here if possible. I am willing to learn but
don't know where to start and i've found no tutorial that will help me!
function getSpeed(distance,hours,minutes,precision){// distance: Miles
return toFixed(distance/(hours + minutes/60),precision?precision:2) +"MPH";
}

That should be:
return (distance/(hours + minutes/60)).toFixed(precision?precision:2)
+"MPH";
M
However make sure user's input is valid, see discussion in an earlier
post by John Stockton.
Mick

Mick
Mar 4 '07 #9
VK
toFixed(precision?precision:2)

That would prevent 0 signs in fraction, enforcing makeToFixed(0)
transformed to makeToFixed(2)
Unless it's a contextually useful default, one should prevent 0/false
ambiguousity by something like toFixed((typeof precision == 'number')?
precision:2)

Mar 4 '07 #10
VK wrote:
>>toFixed(precision?precision:2)


That would prevent 0 signs in fraction, enforcing makeToFixed(0)
transformed to makeToFixed(2)
Unless it's a contextually useful default, one should prevent 0/false
ambiguousity by something like toFixed((typeof precision == 'number')?
precision:2)
Good point.
Mick
Mar 4 '07 #11
In comp.lang.javascript message <11**********************@t69g2000cwt.go
oglegroups.com>, Sun, 4 Mar 2007 02:43:21, RobG <rg***@iinet.net.au>
posted:
function StrU(X, M, N) { // X>=0.0
var T, S=new String(Math.round(X*Number("1e"+N)))
if (S.search && S.search(/\D/)!=-1) { return ''+X }
with (new String(Stretch(S, M+N, '0')))
return substring(0, T=(length-N)) + '.' + substring(T)
}
FYI, that's not what its author currently uses and recommends.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/&c., FAQqy topics & links;
<URL:http://www.merlyn.demon.co.uk/clpb-faq.txt RAH Prins : c.l.p.b mFAQ;
<URL:ftp://garbo.uwasa.fi/pc/link/tsfaqp.zipTimo Salmi's Turbo Pascal FAQ.
Mar 4 '07 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
by: Xenophobe | last post by:
I have successfully converted the ASP code included in the following article to PHP: http://www.4guysfromrolla.com/webtech/040100-1.shtml As described the high and low latitudes and longitudes...
4
by: Xenophobe | last post by:
I have successfully created a zip code radius search, but the performance is unacceptable. I have two tables. The first is 52K zip codes w/lat and long. The second is 3K national business...
8
by: Chris Dunaway | last post by:
When using a PropertyGrid, I have an object with a Date property, but I am only interested in the Time portion. How do I make the PropertyGrid allow editing the time only? Just the hours and...
3
by: Benny | last post by:
Hi All, In an application I write, I need to have some mapping service, where I can select two locations, which shall calculate the distance and mainly the time(could be approximate) to travel...
10
by: Alan Johnson | last post by:
24.1.1.3 says about InputIterators: Algorithms on input iterators should never attempt to pass through the same iterator twice. They should be single pass algorithms. In 24.3.4.4 summarizes the...
9
by: nottheartistinquestion | last post by:
As an intellectual exercise, I've implemented an STL-esque List<and List<>::Iterator. Now, I would like a signed distance between two iterators which corresponds to their relative position in the...
1
by: tiffrobe | last post by:
I'm a little lost on my program. Everything works fine except function 3. It gives out garbage numbers. Its suppose to give the distance between two points and then the area of 2 circles. ...
11
by: devnew | last post by:
hello while trying to write a function that processes some numpy arrays and calculate euclidean distance ,i ended up with this code (though i used numpy ,i believe my problem has more to do with...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.