diff --git a/rocketpy/simulation/flight_data_importer.py b/rocketpy/simulation/flight_data_importer.py index 543d28866..dea0b9926 100644 --- a/rocketpy/simulation/flight_data_importer.py +++ b/rocketpy/simulation/flight_data_importer.py @@ -52,8 +52,8 @@ class FlightDataImporter: def __init__( self, - name, paths, + name = "Flight Data", columns_map=None, units=None, interpolation="linear", @@ -65,12 +65,12 @@ def __init__( Parameters ---------- - name : str - The name of the FlightDataImporter object. paths : str, list A string with a path to a folder or file, or a list of strings representing the file paths or directories containing the flight data files. Only .csv and .txt files are supported. + name : str, optional + The name of the FlightDataImporter object. columns_map : dict, optional A dictionary mapping column names to desired column names. Defaults to None, which will keep the original column names. The