Public Domain GPS
rjo_
Posts: 1,825
I don't have anything to say tonight... just needed a forum address for my video[noparse]:)[/noparse]
Comments
working on the docs. Will post it all by tomorrow, for sure.
My implementation uses AppleScript and ImageJ to generate the movie from the Prop-GPS data, do the analysis and generate reports. I would be very interested in seeing how the same sorts of things are done in Windows.
Rich
ILMP
(I love my Propeller[noparse]:)[/noparse]
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
<FONT>Steve
What's the best thing to do in a lightning storm? "take a one iron out the bag and hold it straight up above your head, even God cant hit a one iron!"
Lee Travino after the second time being hit by lightning!
looks completely smeared ... looks fine on my computer. Will have to redo...
Rich
Post Edited (rjo_) : 1/14/2008 2:14:01 PM GMT
I'm waiting for permission to re-post one of the objects. If I don't get it by tomorrow, I'll archive everything else and just point to the object.
Rich
Now you only need a Google-maps script to read the data from "tour2" and display the route.
I'm toying with the idea of simple line-map data for something like this..
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
New to the Propeller?
Getting started with the Protoboard? - Propeller Cookbook
Got an SD card? - PropDOS
A Living Propeller FAQ - The Propeller Wiki
(Got the Knowledge? Got a Moment? Add something today!)
Applescript:
{code}
set the myfile to choose file
set mytext to read myfile
set reading to 1
set myreadings to count paragraphs of mytext
repeat with i from 1 to myreadings
set reading to i
set mylat to word 4 of paragraph reading of mytext as number
set mylong to word 5 of paragraph reading of mytext as number
set mylong to -mylong
set mydistance to 1000
tell application "Google Earth"
activate
set mineinfo to GetViewInfo record
repeat with x from 1 to 50
SetViewInfo {latitude:mylat, longitude:mylong, distance:mydistance, tilt:0.0, azimuth:-0.223321732218}
end repeat
tell application "System Events"
tell process "Finder"
keystroke "1"
end tell
end tell
end tell
end repeat
activate me
Thanks Fred
This project is a long way from being done... the biggest problem, which I'll fix first is that it always writes to the same file. There is no menu system...
Right now I'm generating reports using Applescript... which let's me print from my Mac. I'm planning to replace this with a "home" base station based on a Prop and the uoled 128. I would like a little printer to go with it... and I'm thinking that the ink-jet stuff that Parallax offers looks really good right now...[noparse]:)[/noparse]
Right now, this only allows you to see where the GPS has been...not where it is, so I'm planning to follow some prior advice about adding cell phone support.
Everything is going to be Public Domain... So, if anyone else wants to jump in, everyone is welcome. Printer support would be nice.
Did I mention printer support?
Rich
You have to set the pin assignment in Gary's code to prop p18.
Rich