user599319
user599319

Reputation: 1

Developing an Application using C++ or Java For GPS Receivers

I have an idea for developing an app to be installed in a GPS receiver,this app should be able to communicate with a server.The connection could either be established through a cell phone network or internet or any suggestions.

Is this possible?

Can anyone help with suggestions? Whats the best programming language would be more appropriate? Any GPS devices that has this capability?

Thanks

Upvotes: 0

Views: 961

Answers (1)

c2h2
c2h2

Reputation: 12349

It's very easy to do this, you can have a look at gpsd.

basically just com port communication and change NMEA formats, and send your info back to your server over the net.

I did my one with ruby under linux without addition library other than native.

For your question: I would say any language you are comfortable will do. OS is not important, even on a ARM linux it should be okay.

Most gps should work, as long as they are NMEA formats. for more info you can have a look at http://gpsd.berlios.de/hardware.html

Upvotes: 1

Related Questions