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:08] – [cli status interface] 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 ==== | ||
Line 54: | Line 128: | ||
The Command Line Interface can be used via telnet, ssh or serial terminal access. | The Command Line Interface can be used via telnet, ssh or serial terminal access. | ||
- | Witjh the command "cli status gnss" you will the current gps data | + | |
+ | With the command "**cli status gnss**" you will seethe | ||
Line 64: | Line 139: | ||
GNSS1 module type: me909 | GNSS1 module type: me909 | ||
GNSS1 module info: | GNSS1 module info: | ||
- | Model: ME909u-521 | + | . |
- | | + | . |
- | | + | . |
- | | + | . |
GNNS1 system: | GNNS1 system: | ||
GNSS1 signal: | GNSS1 signal: | ||
Line 110: | Line 185: | ||
====== 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: |