From 04340ca4aa8ab4f068fc091dd57d80806a7c46ef Mon Sep 17 00:00:00 2001 From: Dominic Dirkx Date: Sat, 30 Sep 2023 20:55:47 +0200 Subject: [PATCH] Corrected compilation --- .../expose_rotation_model_setup.cpp | 3 +++ .../expose_estimation_setup/expose_observation_setup.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tudatpy/kernel/expose_numerical_simulation/expose_environment_setup/expose_rotation_model_setup.cpp b/tudatpy/kernel/expose_numerical_simulation/expose_environment_setup/expose_rotation_model_setup.cpp index 0576c6c6..8ed55f26 100644 --- a/tudatpy/kernel/expose_numerical_simulation/expose_environment_setup/expose_rotation_model_setup.cpp +++ b/tudatpy/kernel/expose_numerical_simulation/expose_environment_setup/expose_rotation_model_setup.cpp @@ -130,6 +130,9 @@ namespace rotation_model { &tss::gcrsToItrsRotationModelSettings, py::arg("precession_nutation_theory") = tba::iau_2006, py::arg("base_frame") = "GCRS", + py::arg("cio_interpolation_settings") = nullptr, + py::arg("tdb_to_tt_interpolation_settings") = nullptr, + py::arg("short_term_eop_interpolation_settings") = nullptr, get_docstring("gcrs_to_itrs").c_str() ); diff --git a/tudatpy/kernel/expose_numerical_simulation/expose_estimation_setup/expose_observation_setup.cpp b/tudatpy/kernel/expose_numerical_simulation/expose_estimation_setup/expose_observation_setup.cpp index 163bd364..e037cde9 100644 --- a/tudatpy/kernel/expose_numerical_simulation/expose_estimation_setup/expose_observation_setup.cpp +++ b/tudatpy/kernel/expose_numerical_simulation/expose_estimation_setup/expose_observation_setup.cpp @@ -1077,10 +1077,10 @@ void expose_observation_setup(py::module &m) { py::arg("start_and_end_times_to_process") = std::make_pair< TIME_TYPE, TIME_TYPE >( TUDAT_NAN, TUDAT_NAN ), get_docstring("create_odf_observed_observation_collection").c_str() ); - m.def("create_odf_observation_simulation_settings_list", - &tom::createOdfObservationSimulationSettingsList< double, TIME_TYPE >, - py::arg("observed_observation_collection"), - get_docstring("create_odf_observation_simulation_settings_list").c_str() ); +// m.def("create_odf_observation_simulation_settings_list", +// &tom::createOdfObservationSimulationSettingsList< double, TIME_TYPE >, +// py::arg("observed_observation_collection"), +// get_docstring("create_odf_observation_simulation_settings_list").c_str() ); m.def("change_simulation_settings_observable_types", &tom::changeObservableTypesOfObservationSimulationSettings< double, TIME_TYPE >,