This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
configuration:gpsd [2016/05/13 12:01] – [Clients] juraschek | configuration:gpsd [2019/02/28 10:30] (current) – [GPS over IP] juraschek | ||
---|---|---|---|
Line 7: | Line 7: | ||
* cli status interface | * cli status interface | ||
* inside of SDK Skripts | * inside of SDK Skripts | ||
+ | * SNMP | ||
====== Webinterface ====== | ====== Webinterface ====== | ||
- | The Webinterface | + | The Webinterface |
===== Status Page ===== | ===== Status Page ===== | ||
Line 15: | Line 16: | ||
{{ : | {{ : | ||
- | |||
- | |||
Line 24: | Line 23: | ||
{{ : | {{ : | ||
+ | ====== Data format NMEA-0183 ====== | ||
+ | |||
+ | source: http:// | ||
+ | |||
+ | **NMEA-0183 prefixes (Talker IDs)** | ||
+ | NMEA protocol can be sent by different equipment. It can be identified by so called Talker Id. Most known one is, of course $GP_ - GPS. | ||
+ | * GA - Galileo | ||
+ | * GL - GLONASS Receiver | ||
+ | * GP - Global Positioning System (GPS) | ||
+ | * GN - Global Navigation Satellite System (GNSS), combined services | ||
Line 37: | Line 46: | ||
<code javascript> | <code javascript> | ||
- | // get JOSN | + | // get JSON |
? | ? | ||
// get NMEA | // get NMEA | ||
? | ? | ||
? | ? | ||
+ | ? | ||
</ | </ | ||
For more information on the new JSON interface see [[http:// | For more information on the new JSON interface see [[http:// | ||
+ | |||
+ | |||
+ | < | ||
+ | telnet nb 2947 | ||
+ | Trying 192.168.1.1... | ||
+ | Connected to nb. | ||
+ | Escape character is ' | ||
+ | {" | ||
+ | ? | ||
+ | {" | ||
+ | {" | ||
+ | ? | ||
+ | {" | ||
+ | {" | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGGA, | ||
+ | $GNGNS, | ||
+ | $GPVTG, | ||
+ | $GPRMC, | ||
+ | $GPGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGGA, | ||
+ | $GNGNS, | ||
+ | $GPVTG, | ||
+ | $GPRMC, | ||
+ | $GPGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GLGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGSV, | ||
+ | $GPGGA, | ||
+ | $GNGNS, | ||
+ | $GPVTG, | ||
+ | $GPRMC, | ||
+ | $GPGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | $GNGSA, | ||
+ | |||
+ | </ | ||
==== Clients ==== | ==== Clients ==== | ||
Linux clients are '' | Linux clients are '' | ||
+ | To see the NMEA Data you can also use any telnet emulator of your choice: '' | ||
====== cli status interface ====== | ====== cli status interface ====== | ||
+ | |||
+ | The Command Line Interface can be used via telnet, ssh or serial terminal access. | ||
+ | |||
+ | With the command "**cli status gnss**" | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | < | ||
+ | cli status gnss | ||
+ | === GNSS MODULE INFORMATION === | ||
+ | GNSS1 module type: me909 | ||
+ | GNSS1 module info: | ||
+ | . Model: ME909u-521 | ||
+ | . Revision: 11.235.07.00.00 | ||
+ | . IMEI: 860461024127634 | ||
+ | . +GCAP: +CGSM | ||
+ | GNNS1 system: | ||
+ | GNSS1 signal: | ||
+ | GNNS1 last fix: 2016-05-08 03:39:55 | ||
+ | GNSS1 latitude: | ||
+ | GNSS1 longitude: | ||
+ | GNSS1 altitude: | ||
+ | GNSS1 horizontal speed: | ||
+ | GNSS1 vertical speed: | ||
+ | GNSS1 hdop: 6.20 | ||
+ | GNSS1 vdop: 1.00 | ||
+ | GNSS1 pdop: 6.30 | ||
+ | GNSS1 satellites inview: | ||
+ | GNSS1 satellites used: 3 | ||
+ | </ | ||
+ | |||
+ | |||
+ | To have it in the right format for using inside of scripts (bash, python etc.) you can use the parameter " | ||
+ | |||
+ | < | ||
+ | cli status -s gnss | ||
+ | GNSS1_MODULE_TYPE=" | ||
+ | GNSS1_MODULE_INFO=" | ||
+ | GNNS1_SYSTEM=" | ||
+ | GNSS1_SIGNAL=" | ||
+ | GNNS1_LAST_FIX=" | ||
+ | GNSS1_LATITUDE=" | ||
+ | GNSS1_LONGITUDE=" | ||
+ | GNSS1_ALTITUDE=" | ||
+ | GNSS1_HORIZONTAL_SPEED=" | ||
+ | GNSS1_VERTICAL_SPEED=" | ||
+ | GNSS1_HDOP=" | ||
+ | GNSS1_VDOP=" | ||
+ | GNSS1_PDOP=" | ||
+ | GNSS1_SATELLITES_INVIEW=" | ||
+ | GNSS1_SATELLITES_USED=" | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
====== SDK Scripts | ====== SDK Scripts | ||
+ | |||
+ | Within the SDK you can reach the gps data by requesting the status parameter as in the cli example or you can retrieve the data from the gps over IP daemon to distribute it further. | ||
+ | |||
+ | Cli data can be retrieved as follows: | ||
+ | <code c > | ||
+ | status=nb_status(" | ||
+ | dump(status); | ||
+ | </ | ||
+ | |||
+ | Result: | ||
+ | |||
+ | <code c > | ||
+ | struct(15): { | ||
+ | .GNSS1_MODULE_TYPE = string[5]: " | ||
+ | .GNSS1_MODULE_INFO = string[126]: | ||
+ | .GNSS1_LONGITUDE = string[8]: " | ||
+ | .GNSS1_HDOP = string[4]: " | ||
+ | .GNNS1_SYSTEM = string[3]: " | ||
+ | .GNSS1_VDOP = string[4]: " | ||
+ | .GNSS1_LATITUDE = string[9]: " | ||
+ | .GNNS1_LAST_FIX = string[19]: " | ||
+ | .GNSS1_ALTITUDE = string[6]: " | ||
+ | .GNSS1_PDOP = string[4]: " | ||
+ | .GNSS1_SATELLITES_USED = string[1]: " | ||
+ | .GNSS1_VERTICAL_SPEED = string[5]: " | ||
+ | .GNSS1_SATELLITES_INVIEW = string[2]: " | ||
+ | .GNSS1_SIGNAL = string[7]: " | ||
+ | .GNSS1_HORIZONTAL_SPEED = string[5]: " | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== SNMP ==== | ||
+ | It's possible to poll the postition via SNMP. | ||
+ | You will find the entries " | ||
+ | Please be aware that the update interval will be 3s. | ||
+ | |||
+ | |||
+ | ===== Example Scripts ===== | ||
+ | |||
+ | * Sending NMEA String on the serial interface: [[sdk: | ||
+ | * Forward NMEA String to a UDP Server: [[sdk: | ||
+ | * Enable/ | ||
+ | * Creating CSV Logfiles with location data: [[sdk: |