Grid display and tracking.
2 posters
OruxMaps :: ENGLISH :: IMPROVEMENTS
Page 1 of 1
Grid display and tracking.
Would it be possible to display Irish Grid position with letter (en.wikipedia.org/wiki/Irish_grid_reference_system) alongside the lat/long ? This would be really great as lat/long is not really used on land.
Also I think the tracking option is fantastic. I am already set up with a large group using gpsgate.com buddy tracker. Is there any hope of support for this service ?
If its any help, I know positions can be sent via POST example
online.gpsgate.com/gpsgate.aspx?lat=50.000&lon=-6.00000&status=A&speed=000.0&course=189.8&username=xxxxxxx&pw=xxxxxxxxxxx
(password is encrypted)
Or through their trackerone protocol
franson.com/gpsgateserver/GpsGateTrackerOne.pdf
Thanks for all your work !
Also I think the tracking option is fantastic. I am already set up with a large group using gpsgate.com buddy tracker. Is there any hope of support for this service ?
If its any help, I know positions can be sent via POST example
online.gpsgate.com/gpsgate.aspx?lat=50.000&lon=-6.00000&status=A&speed=000.0&course=189.8&username=xxxxxxx&pw=xxxxxxxxxxx
(password is encrypted)
Or through their trackerone protocol
franson.com/gpsgateserver/GpsGateTrackerOne.pdf
Thanks for all your work !
Just tes- Guest
Re: Grid display and tracking.
Meant to say I have the PHP script for encoding the password above. I can email it to you.
Jus tes- Guest
Re: Grid display and tracking.
Just tes wrote:Would it be possible to display Irish Grid position with letter (en.wikipedia.org/wiki/Irish_grid_reference_system) alongside the lat/long ? This would be really great as lat/long is not really used on land.
Also I think the tracking option is fantastic. I am already set up with a large group using gpsgate.com buddy tracker. Is there any hope of support for this service ?
If its any help, I know positions can be sent via POST example
online.gpsgate.com/gpsgate.aspx?lat=50.000&lon=-6.00000&status=A&speed=000.0&course=189.8&username=xxxxxxx&pw=xxxxxxxxxxx
(password is encrypted)
Or through their trackerone protocol
franson.com/gpsgateserver/GpsGateTrackerOne.pdf
Thanks for all your work !
You can display grid coordinates, but not with the specific letter system that uses Irish Grid. I will study if it is easy to implement in OruxMaps.
About gpsgate integration; added to my TODO list.
orux
orux- Cantidad de envíos : 3946
Fecha de inscripción : 2009-07-06
Re: Grid display and tracking.
Great,
All of the Irish Ordnance survey maps use the letter system (I think its the same in the UK) so that would be great if there was an option. Look forward to the gpsgate tracking.
Thanks again.
All of the Irish Ordnance survey maps use the letter system (I think its the same in the UK) so that would be great if there was an option. Look forward to the gpsgate tracking.
Thanks again.
Jus tes- Guest
Another though/request.
Would it be possible at some stage in the future to implement an option for sending tracking data to ones own URL/database. alongside the other Map my tracks and everytrail ?
Thanks again.
Thanks again.
Jus Tes- Guest
Re: Grid display and tracking.
Jus Tes wrote:Would it be possible at some stage in the future to implement an option for sending tracking data to ones own URL/database. alongside the other Map my tracks and everytrail ?
Thanks again.
Hi, Jus;
I need to know a protocol to send tracks to other servers.
orux
orux- Cantidad de envíos : 3946
Fecha de inscripción : 2009-07-06
Grid display and tracking.
I was thinking of http:// $post. with parameters for Lat,Lng,speed,heading,time and username.
I was hoping to use the information with PHP to MySql to Google maps. (I'm sure others would find this useful too)
I have been playing with "Big Brother GPS" and it works great. Its open source and code is available to download.
bk.gnarf.org/creativity/bigbrothergps/
but it would be much better to have such functionality inside of Orux maps.
_ just on a slightly different track, would it also be possible for automatic reconnects if the phone is out of GPRS coverage without the user having to restart it ?
I was hoping to use the information with PHP to MySql to Google maps. (I'm sure others would find this useful too)
I have been playing with "Big Brother GPS" and it works great. Its open source and code is available to download.
bk.gnarf.org/creativity/bigbrothergps/
but it would be much better to have such functionality inside of Orux maps.
_ just on a slightly different track, would it also be possible for automatic reconnects if the phone is out of GPRS coverage without the user having to restart it ?
jus tes- Guest
Re: Grid display and tracking.
jus tes wrote:I was thinking of http:// $post. with parameters for Lat,Lng,speed,heading,time and username.
I was hoping to use the information with PHP to MySql to Google maps. (I'm sure others would find this useful too)
I have been playing with "Big Brother GPS" and it works great. Its open source and code is available to download.
bk.gnarf.org/creativity/bigbrothergps/
but it would be much better to have such functionality inside of Orux maps.
_ just on a slightly different track, would it also be possible for automatic reconnects if the phone is out of GPRS coverage without the user having to restart it ?
I will study an universal way of connection.
About GPRS, I do not understand the problem,
orux
orux- Cantidad de envíos : 3946
Fecha de inscripción : 2009-07-06
Generic live tracking
This is exactly what I was looking for and would love this to be added to OruxMaps.
For an example of how this could work, OSMand implements exactly this. https://code.google.com/p/osmand/wiki/HowToSetupOnlineTracking is a good example of how OSMand submits the data via a URL and how to actually use the data.
What OSMand does is it replaces fields with data, so for instance if I entered the following url:
http://mysite.com/lat={0}&lon={1}&hdop={2}&latitude={3}
{0} would be replaced with the actual latitude, {1) would be replaced with the actual longitude, etc. Then this url would be submitted and whatever was on the other end would collect that data. In the linked example above it allows a spreadsheet to store the values. Instead of a google spreadsheet a PHP script could be adding those values to a mySQL database.
This process of replacing default values with the actual data would allow any service that uses this style of data submission to be added. I think GPSGate actually allows this style of submission too.
If this doesn't make sense and you need more information or you need any sort of testing I am happy to oblige.
I love OruxMaps, keep up the excellent work.
For an example of how this could work, OSMand implements exactly this. https://code.google.com/p/osmand/wiki/HowToSetupOnlineTracking is a good example of how OSMand submits the data via a URL and how to actually use the data.
What OSMand does is it replaces fields with data, so for instance if I entered the following url:
http://mysite.com/lat={0}&lon={1}&hdop={2}&latitude={3}
{0} would be replaced with the actual latitude, {1) would be replaced with the actual longitude, etc. Then this url would be submitted and whatever was on the other end would collect that data. In the linked example above it allows a spreadsheet to store the values. Instead of a google spreadsheet a PHP script could be adding those values to a mySQL database.
This process of replacing default values with the actual data would allow any service that uses this style of data submission to be added. I think GPSGate actually allows this style of submission too.
If this doesn't make sense and you need more information or you need any sort of testing I am happy to oblige.
I love OruxMaps, keep up the excellent work.
stevenhorner- Cantidad de envíos : 2
Fecha de inscripción : 2013-08-06
Re: Grid display and tracking.
stevenhorner wrote:This is exactly what I was looking for and would love this to be added to OruxMaps.
For an example of how this could work, OSMand implements exactly this. https://code.google.com/p/osmand/wiki/HowToSetupOnlineTracking is a good example of how OSMand submits the data via a URL and how to actually use the data.
What OSMand does is it replaces fields with data, so for instance if I entered the following url:
http://mysite.com/lat={0}&lon={1}&hdop={2}&latitude={3}
{0} would be replaced with the actual latitude, {1) would be replaced with the actual longitude, etc. Then this url would be submitted and whatever was on the other end would collect that data. In the linked example above it allows a spreadsheet to store the values. Instead of a google spreadsheet a PHP script could be adding those values to a mySQL database.
This process of replacing default values with the actual data would allow any service that uses this style of data submission to be added. I think GPSGate actually allows this style of submission too.
If this doesn't make sense and you need more information or you need any sort of testing I am happy to oblige.
I love OruxMaps, keep up the excellent work.
Hi;
you can implement gpsgate protocol, it is easy, and OruxMaps is ready for use.
OruxMaps sends to your url something like:
$FRCMD,353857014816785,_SendMessage,,4748.00000,N,3430.00000,W,34.6,...
and you should answer something like:
$FRRET,353857014816785,_SendMessage*40
or you can mplement okmap protocol.
orux
orux- Cantidad de envíos : 3946
Fecha de inscripción : 2009-07-06
Re: Grid display and tracking.
I've looked at: http://franson.com/gpsgateserver/GpsGateServerProtocol200.pdf
but I'm not sure exactly how OruxMaps has implemented it, so I don't know what commands to expect and deal with.
The HTTP Position Updates mentioned on page 11 of that document is what I was hoping for.
From the example you gave I am guessing I would have to return information to OruxMaps.
but I'm not sure exactly how OruxMaps has implemented it, so I don't know what commands to expect and deal with.
The HTTP Position Updates mentioned on page 11 of that document is what I was hoping for.
From the example you gave I am guessing I would have to return information to OruxMaps.
stevenhorner- Cantidad de envíos : 2
Fecha de inscripción : 2013-08-06

» Coordinates display even if disabled in display preferences
» Irish Grid
» Swiss Grid & better Design
» Statistics Graphics Grid
» Grid coordinates
» Irish Grid
» Swiss Grid & better Design
» Statistics Graphics Grid
» Grid coordinates
OruxMaps :: ENGLISH :: IMPROVEMENTS
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
|
|