Use of AngularRadecBuilder build method

Hello,

I was using AngularRadecBuilder method build before update 12.0 like that :

ra_dec_builder = AngularRaDecBuilder(crvg,groundstation,inertialframe,[1.0, 1.0],[1.0, 1.0],dummysatellite)
ra_dec_builder.init(list_dates[0], list_dates[-1])
sc_state = propagator.propagate(curr_date)
ra_dec = ra_dec_builder.build([sc_state])

But it seems that method build has changed and should be used with parameters :

ra_dec = ra_dec_builder.build(curr_date, other_parameter)

With other_parameter is Map<ObservableSatellite,OrekitStepInterpolator> interpolators , but I don’t get the meaning of this object : can you give me an example of how to use build now?

Thank you.

Hello,

FYI this subject has been raised here.
Unfortunately there’s no generic, practical solution yet.

Best,
Romain.

Hello,

Is there a recommended solution as of today?
Thank you very much.

Hi,

Yes the signature that worked in version < 12 has been added back in 12.1 (orr 12.2, I’m not sure).

Cheers,
Romain.

1 Like