KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ntrip-client
★ 18
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
hacktoberfest-data
:
Generating stats from the raw Hacktoberfest application data.
text-me-maybe
:
No description available.
MVC_WebApi_DI_Example
:
An example of using Microsoft.Extensions.DependencyInjection in an ASP.NET 4 Web App with MVC and Owin-based WebAPI
LOIS
:
[NeurIPS 2019] LOIS: Learning to Optimize In Swarms, guided by posterior estimation
tpb-lite
:
Lightweight Python API for ThePirateBay
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ntrip-client
?
Download (.md)
# ntrip-client The client for get rtcm data from ntripcaster. # Get source tables *Set mountpoint to empty string* ``` const { NtripClient } = require('ntrip-client'); const options = { host: 'rtk2go.com', port: 2101, mountpoint: '', username: 'test@test.com', password: 'test' }; const client = new NtripClient(options); client.on('data', (data) => { console.log(data); }); client.on('close', () => { console.log('client close'); }); client.on('error', (err) => { console.log(err); }); client.run(); ``` # Get rtcm stream ``` const { NtripClient } = require('ntrip-client'); const options = { host: 'rtk2go.com', port: 2101, mountpoint: 'ACACU', username: 'test@test.com', password: 'test', xyz: [-1983430.2365, -4937492.4088, 3505683.7925], // the interval of send nmea, unit is millisecond interval: 2000, }; const client = new NtripClient(options); client.on('data', (data) => { console.log(data); }); client.on('close', () => { console.log('client close'); }); client.on('error', (err) => { console.log(err); }); client.run(); ```