Skip to content

dxhbiz/go-ntrip-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ntrip-proxy

An ntrip forwarding tool, the main purpose is to be able to support multiple devices at the same time through an ntrip account to obtain rtk correction data.

Usage

  1. Build
make

If all goes well, it will generate the ntrip-proxy executable in the bin folder of the current directory.

  1. Configuration The default configuration file is in config/config.json in the same level as the executable. A reference example is as follows
{
  "server": {
    "host": "0.0.0.0",
    "port": 2101
  },
  "casters": [
    {
      "name": "SWIFT",
      "host": "na.l1l2.skylark.swiftnav.com",
      "port": 2101,
      "username": "Your-Username",
      "password": "Your-Password",
      "mountpoint": "RTK-RTCM31"
    }
  ],
  "log": {
    "development": true,
    "level": "info",
    "filename": "./logs/ntrip-proxy.log",
    "maxSize": 16,
    "maxBackups": 30,
    "maxAge": 7,
    "compress": false
  }
}
  1. Run
./ntrip-proxy

# or
./ntrip-proxy --config the/path/of/config.json
  1. Help
./ntrip-proxy -h

Workflow diagram

ntrip-proxy

About

An ntrip proxy forwarding tool for data distribution through master-slave setup

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published