Notices

Does speeding save time? Speedr - Android app that measures time saved speeding.

Thread Tools
 
Search this Thread
 
Old 02-27-2017, 12:57 PM
  #1  
jakehilborn
5th Gear
Thread Starter
 
jakehilborn's Avatar
 
Join Date: Feb 2017
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
Default Does speeding save time? Speedr - Android app that measures time saved speeding.

Hey Rennlist, I just created an account to share an Android app I made that Porsche enthusiasts may be interested in. It's called Speedr, it measures how much time, or how little time, you save by speeding. It's free and has no ads. Check it out and let me know your thoughts or suggestions for the next version.

Play Store / APK Download: https://jakehilborn.github.io/speedr/


Old 02-27-2017, 08:12 PM
  #2  
gregv8
Racer
 
gregv8's Avatar
 
Join Date: Jan 2016
Location: Long Island, NY
Posts: 320
Received 8 Likes on 8 Posts
Default

iOS user here, but wanted to say it's a really cool idea. Thanks for taking the time for signing up and sharing.
Old 02-28-2017, 01:24 PM
  #3  
jakehilborn
5th Gear
Thread Starter
 
jakehilborn's Avatar
 
Join Date: Feb 2017
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by gregv8
iOS user here, but wanted to say it's a really cool idea. Thanks for taking the time for signing up and sharing.
Thanks man. If this app garners enough interest I'll port it over to iOS.
Old 02-28-2017, 08:24 PM
  #4  
fastcars914
Three Wheelin'
 
fastcars914's Avatar
 
Join Date: Mar 2012
Posts: 1,895
Received 14 Likes on 14 Posts
Default

I'd be interested, but again, iOS here.
Old 02-28-2017, 08:39 PM
  #5  
jakehilborn
5th Gear
Thread Starter
 
jakehilborn's Avatar
 
Join Date: Feb 2017
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by fastcars914
I'd be interested, but again, iOS here.
Good to hear there's interest at least!
Old 03-01-2017, 10:04 AM
  #6  
SAN997
Instructor
 
SAN997's Avatar
 
Join Date: Feb 2013
Location: San Diego, CA USA
Posts: 209
Likes: 0
Received 9 Likes on 8 Posts
Default

Don't forget us over at Rennlist when you go IPO for $22 billion!
Old 03-01-2017, 10:07 AM
  #7  
SAN997
Instructor
 
SAN997's Avatar
 
Join Date: Feb 2013
Location: San Diego, CA USA
Posts: 209
Likes: 0
Received 9 Likes on 8 Posts
Default

On a serious note, how do you compute this time? Do you get a route time estimate from a Google Maps API and then record actual time traveled? Or do you just integrate x*(1/v_sl - 1/v_s) = \DeltaT, where v_sl is the speed limit velocity and v_s is actual speed?
Old 03-01-2017, 10:27 AM
  #8  
jakehilborn
5th Gear
Thread Starter
 
jakehilborn's Avatar
 
Join Date: Feb 2017
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by SAN997
On a serious note, how do you compute this time? Do you get a route time estimate from a Google Maps API and then record actual time traveled? Or do you just integrate x*(1/v_sl - 1/v_s) = \DeltaT, where v_sl is the speed limit velocity and v_s is actual speed?
The app uses GPS to get your current speed. It then sends your lat/long to a 3rd party service that has a database of speed limits to get the current speed limit of the road. Then, once per second second it calculates how far you've driven at your current speed, and how long it would have taken to drive that distance at the speed limit. The difference is then tallied up. Here is the relevant code snippet.

Code:
currentDiff = ((currentLocation.getTime() - previousLocation.Time())
                * (currentLocation.getSpeed() - speedLimit)) / speedLimit;

if (currentDiff > 0) timeSaved += currentDiff;
Old 03-01-2017, 11:43 AM
  #9  
SAN997
Instructor
 
SAN997's Avatar
 
Join Date: Feb 2013
Location: San Diego, CA USA
Posts: 209
Likes: 0
Received 9 Likes on 8 Posts
Default

Originally Posted by jakehilborn
The app uses GPS to get your current speed. It then sends your lat/long to a 3rd party service that has a database of speed limits to get the current speed limit of the road. Then, once per second second it calculates how far you've driven at your current speed, and how long it would have taken to drive that distance at the speed limit. The difference is then tallied up. Here is the relevant code snippet.

Code:
currentDiff = ((currentLocation.getTime() - previousLocation.Time())
* (currentLocation.getSpeed() - speedLimit)) / speedLimit;

if (currentDiff > 0) timeSaved += currentDiff;
Ok, makes sense. That would ignore the negative effects of being stuck in traffic, which is good.

When do you plan on seeking VC funding, and what is your initial valuation, $100m or a cool $1 billion?? Will you develop your own autonomous vehicle program to limit risk from self driving cars???
Old 03-01-2017, 12:06 PM
  #10  
jakehilborn
5th Gear
Thread Starter
 
jakehilborn's Avatar
 
Join Date: Feb 2017
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by SAN997
Ok, makes sense. That would ignore the negative effects of being stuck in traffic, which is good.

When do you plan on seeking VC funding, and what is your initial valuation, $100m or a cool $1 billion?? Will you develop your own autonomous vehicle program to limit risk from self driving cars???
That's exactly the idea. Being stuck in traffic is not due to the will of the driver. Only the time the driver chooses to speed is tallied.

Initial valuation needs to be bigger than Uber to develop the planned self driving cars



Quick Reply: Does speeding save time? Speedr - Android app that measures time saved speeding.



All times are GMT -3. The time now is 07:59 AM.