Lars Hinüber
Lars Hinüber
Hi @megargayu, Thank you for contributing the feature, this was exactly what I was looking for! I've tested your implementation locally and it's been working great. Let me know if...
I tried to expose the function as ```cpp m.def( "mean_to_eccentric_anomaly", &toec::convertMeanAnomalyToEccentricAnomaly< double >, py::arg( "eccentricity" ), py::arg( "mean_anomaly" ), py::arg( "use_default_initial_guess" ) = true, py::arg( "non_default_initial_guess" ) = TUDAT_NAN, py::arg(...
Hi @jo11he, It seems that we now have code examples for most of the functionalities in `estimation_setup` and `estimation_setup.observation`, but missing examples for `estimation`. Without having worked a lot with...
Even better! I would go with this 👍
Exactly, so that when you hover over a module, it would show you the module level docstring: Hovering: Module docstring: I suspect that would mean defining the module docstring somewhere...
> we could have them autogenerated using autoapi In that case we would also have to define the `__all__` attribute in the `__init__.py` files, right? I've tried to use the...
I've just run into the same issue, see a reproducible example below. If there are multiple observations with the same link-end at the same epoch, the order in which the...
@suvayu Since `develop_10` has been merged into the regular `develop` branch, I've changed the base branch to `develop` so we can go ahead and delete `develop_10` :)
Hi all! I run into a similar struggle and added a few exposures in https://github.com/tudat-team/tudatpy/pull/379 and https://github.com/tudat-team/tudatpy/pull/374 that can help with this I think. With the 2 PRs in `develop_10`,...