[android-developers] Re: Get and save GPS location while i am walking

2012-04-02 Thread Sean Barbeau
Check out MyTracks: http://www.google.com/mobile/mytracks/ Its open-source, so you can see how the application displays and records data: http://code.google.com/p/mytracks/ More specifically, they are using SQLite to store GPS data:

[android-developers] Re: Get and save GPS location while i am walking

2012-04-02 Thread Ifor
The normal place to save gps data like this is in a .gpx file as a track. That will be the most portable format if you want to view the data in any other aplication. On Thursday, 29 March 2012 17:22:47 UTC+1, Spica wrote: Guys, How i can save GPS locations while i am walking? I will be

Re: [android-developers] Re: Get and save GPS location while i am walking

2012-04-02 Thread Sean Barbeau
I agree with Kristopher, GPS eats up battery energy quickly and you have to be careful using GPS in an app to avoid exhausting the user's battery. We've done extensive work to come up with some dynamic GPS sampling strategies that increase battery life because of this reason. Check out

Re: [android-developers] Re: Get and save GPS location while i am walking

2012-04-02 Thread Kristopher Micinski
Aside from that, I'd be pretty weary of the security of any app that was constantly tracking me for hours straight. The *only* situation where I see this making sense is when I go out for a day of hiking or something, and even then I don't want anything *that* accurate, because I just don't move

Re: [android-developers] Re: Get and save GPS location while i am walking

2012-03-30 Thread lbendlin
A full battery on the phone can easily support 8 hrs of constant GPS tracking, especially when the screen is off. Now go walk for 8 hrs. On Thursday, March 29, 2012 3:37:37 PM UTC-4, Kristopher Micinski wrote: Yes, having GPS going on a lot will be bad for your battery..., you have to live

[android-developers] Re: Get and save GPS location while i am walking

2012-03-29 Thread lbendlin
Nothing huge about it. You only get one data row per second max. SQLite is laughing at that. On Thursday, March 29, 2012 12:22:47 PM UTC-4, Spica wrote: Guys, How i can save GPS locations while i am walking? I will be displaying my walking track which i will recording while walking. Where

[android-developers] Re: Get and save GPS location while i am walking

2012-03-29 Thread Spica
Hmm... would be expenssive on battery coz GPS would be working all that time. Any different idea? On Mar 29, 12:59 pm, lbendlin l...@bendlin.us wrote: Nothing huge about it. You only get one data row per second max.  SQLite is laughing at that. On Thursday, March 29, 2012 12:22:47 PM

Re: [android-developers] Re: Get and save GPS location while i am walking

2012-03-29 Thread Kristopher Micinski
Yes, having GPS going on a lot will be bad for your battery..., you have to live with it. You can try getting the location from a passive provider, but that's somewhat spotty, of course..., If you want to use GPS, you have to be willing to pay the price.. kris On Thu, Mar 29, 2012 at 3:29 PM,