-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Hi,
great project, thanks a lot.
I tried setting up a NTRIP Server (base station pushing to caster) but did not really get far.
My Caster server setup look like this:
const caster = new Caster({
authManager: {
authenticate: async (auth: AuthRequest) => {
return { ...auth, authenticated: true };
},
},
});
const ntrip = NtripPushPullTransport.new({
mode: 'push',
remote: {
host: 'caster.emlid.com',
port: 2101,
},
protocol: 'http',
localMountpoint: 'MP1234_MIRROR',
remoteMountpoint: 'MP1234',
ntripVersion: NtripVersion.V1,
credentials: {
secret: 'TOPSECRETE',
},
});
caster.addTransport(ntrip);
I tried for my gps receiver:
const pushSteam = StreamTransport.new({
type: 'server',
source: string, // What is this for???
mountpoint: 'MP1234_MIRROR',
input, // is this my raw rtcm receiver???
// str?: string;
// gga?: string;
});
caster.addTransport(pushSteam);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels