Skip to content

Improving Docoumentation #7

@CoooWeee

Description

@CoooWeee

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);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions