Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Introducing properties in Flight class #249

Merged
merged 11 commits into from
Oct 9, 2022

Conversation

Gui-FernandesBR
Copy link
Member

Pull request type

Please check the type of change your PR introduces:

  • Code maintenance (refactoring, formatting, renaming, tests)

Pull request checklist

  • Code base maintenance (refactoring, formatting, renaming):
    • Docs have been reviewed and added / updated if needed
    • Lint (black rocketpy) has passed locally and any fixes were made
    • All tests (pytest --runslow) have passed locally

What is the current behavior?

The Flight.postProcess() method usually takes too many time to run, creating a huge step from

What is the new behavior?

  • Most of the old attributes (e.g. Flight.x, Flight.angleOfAttack, Flight.speed) are now defined by using properties decorators at the Flight class. Therefore they can be accessed without previous running postProcess(), meaning that the property object will be evaluated only when it is called.
  • I have used cached_properties since memory usage was not a problem at the time, but perhaps in the future it can be modified. This way we guarantee that. Mutating properties can be a particular trick part here, I'm not an expert to explain, but we should be aware errors similar to: "Attribute Error: can't set attribute ..."
  • The old Flight.postProcess() was divided into different smaller parts, allowing the user to call specific attributes instead of running everything everytime. See the new def __operation(self) methods to get the idea.

Perhaps more attributes could be transformed in properties in the future. But right now, I have converted all that I believe that are feasible to be properties.

Just go ahead and try running:

TestFlight = Flight(...)
TestFlight.speed()

Does this introduce a breaking change?

  • No

Other Information:

I tested the code and everything seems to be working. I ask help to imagine different scenarios
No extra test is needed since this is just a refactor Pull Request, the changes were made on background only.

@Gui-FernandesBR Gui-FernandesBR added Enhancement New feature or request, including adjustments in current codes Refactor Flight Flight Class related features labels Sep 29, 2022
@Gui-FernandesBR Gui-FernandesBR linked an issue Sep 29, 2022 that may be closed by this pull request
@Gui-FernandesBR
Copy link
Member Author

Hey! It was really bothering me the current design of postProcess. I hope this way we can improve Dispersion Simulations, Controlled Flights, and code performance as well.

I'll wait for your review, @giovaniceotto @MateusStano , and of course I'm accepting suggestions with regards to all the @properties architecture

# Accelerations
@cached_property
def acceleration(self):
if self.retrievedAcceleration is not True:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the purpose of using this condition when you already have the @cached_property in place?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the review, it pushed me to get rid of those booleans, I'm adding new changes and asking a re-review

@Gui-FernandesBR
Copy link
Member Author

@patrick can you test and review please?

  • Everything is a property now
  • I've tested under different scenarios, code looks faster and I addressed the bugs that I found
  • Tests are passing locally. If Environment tests doesn't work, it has nothing related with my changes on Flight.py

Be free to directly commit suggestions if you want to.

I'm already using those implementations on the Dispersion Class as they are important to calculate some parameters.

@Gui-FernandesBR Gui-FernandesBR requested review from PatrickSampaioUSP and removed request for giovaniceotto and MateusStano October 9, 2022 15:14
Copy link
Contributor

@PatrickSampaioUSP PatrickSampaioUSP left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome usage of the @cached_property

@Gui-FernandesBR
Copy link
Member Author

Just emphasizing that getting started notebooks are working as expected in this version of Flight.py, let's move forward

@Gui-FernandesBR Gui-FernandesBR merged commit 64e6a4d into develop Oct 9, 2022
@Gui-FernandesBR Gui-FernandesBR deleted the enh/refactor_post_process branch October 9, 2022 23:24
Gui-FernandesBR added a commit that referenced this pull request Nov 13, 2022
commit 7925d60
Merge: bb5d7c5 3b09de6
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:45:01 2022 +0100

    Merge branch 'beta/v1.0.0' into enh/new_plots

commit 3b09de6
Merge: ce5a730 a46aa2e
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 23:34:53 2022 -0300

    Merge pull request #283 from RocketPy-Team/fix/cached_property_py37

    Fix: Cached Property support for Python 3.6 and 3.7

commit a46aa2e
Author: Lint Action <[email protected]>
Date:   Sun Nov 13 02:09:36 2022 +0000

    Fix code style issues with Black

commit b81e30f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 23:09:03 2022 -0300

    ENH: Prevents cached_property decorator from being used before `__set_name__`

commit d7a8e60
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 00:43:48 2022 -0300

    FIX: import local cached_property if standard does not exist

commit d24fce7
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 00:43:09 2022 -0300

    ENH: created a cached_property decorator

commit ce5a730
Merge: d3a9c63 a9f9fab
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Nov 3 13:39:13 2022 +0100

    Merge remote-tracking branch 'origin/master' into develop

commit d3a9c63
Merge: ba8c7bd f7c7a19
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Thu Nov 3 12:31:08 2022 +0100

    Merge pull request #263 from RocketPy-Team/enh/aero_surfaces_class

    ENH: Adding AeroSurfaces classes

commit f7c7a19
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 08:06:04 2022 -0300

    ENH: add try: except: to roll

commit e721530
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 04:34:16 2022 -0300

    ENH: remaining TODOs

commit edc1895
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 04:33:46 2022 -0300

    MAINT: changed back to using trapezoidal fins with Calisto

commit 8c0fb8a
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:17:47 2022 +0100

    ENH: adding final plots do AeroSurfaces

commit 01819ac
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:17:12 2022 +0100

    MAINT: updating docstrings of AeroSurfaces

commit 6b906d5
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:13:49 2022 +0100

    ENH: updating 2D plots at Function.py

commit 57a93e7
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Nov 1 17:06:51 2022 +0100

    MAINT: removing duplicated cLift definition

    Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>

commit 024ea0f
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 10:04:13 2022 -0300

    bug: fixed setAttribute and fin area calculation

commit fdc5085
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 09:25:32 2022 -0300

    enh: add setAttribute

commit 21407f3
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 09:11:39 2022 -0300

    enh: docs

commit 3e18215
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:41:25 2022 -0300

    enh: add allInfo() method

commit 7e4d180
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:40:58 2022 -0300

    enh: add draw() methods

commit d898773
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:39:34 2022 -0300

    enh: added super Fin class and reorganized other fin classes

commit ea45c55
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:34:48 2022 -0300

    maint: fixed wrong Yma formula in docs

commit 2293c1c
Author: Gui-FernandesBR <[email protected]>
Date:   Mon Oct 24 02:13:25 2022 +0200

    FIX: adjust variables names to surpass tests

commit eff4dc0
Author: Gui-FernandesBR <[email protected]>
Date:   Mon Oct 24 01:09:21 2022 +0200

    MAINT: adapting attributes names at AeroSurfaces

commit 9dc26a3
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 23 23:00:42 2022 +0200

    MAINT: Introducing AeroSurfaces classes

commit ba8c7bd
Merge: 64e6a4d 2834b5f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:35:21 2022 -0300

    Merge pull request #256 from RocketPy-Team/enh/swept-back-fins

    ENH: Add Sweep Length to Trapezoidal Fins

commit 2834b5f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:18:07 2022 -0300

    FIX: addFins returns created fin set once again

commit af2de0c
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:17:40 2022 -0300

    TST: implement tests related to trapezoidal fin sweep

commit 909b38e
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 00:21:14 2022 -0300

    ENH: add option to enter sweep angle in Rocket.addTrapezoidalFins

commit 89c36c0
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 00:09:54 2022 -0300

    ENH: add sweep length to trapezoidal fins

commit 64e6a4d
Merge: 34744af 1845d68
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Oct 10 01:24:12 2022 +0200

    Merge pull request #249 from RocketPy-Team/enh/refactor_post_process

    ENH: Introducing properties in Flight class

commit 1845d68
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 17:06:39 2022 +0200

    BUG: fixing tests bugs related with lat/lon

commit 7252bf0
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 03:07:39 2022 +0200

    MAINT: removing self._R1 attributes from udot

commit cdb2093
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:35:24 2022 +0200

    MAINT: fixing tuple not callable problem

commit 8c5f69a
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:28:43 2022 +0200

    MAINT: sorting imports

commit 6a45586
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:23:40 2022 +0200

    DOC: updating postProcess bool in Flight.py

commit a84cff0
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:13:56 2022 +0200

    ENH: Allow other interpolation types in properties

commit ff665d7
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:03:05 2022 +0200

    ENH: Transform lat/lon into properties

commit fb1a95f
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 01:40:58 2022 +0200

    ENH: properties for the rail buttons forces

commit 560eb0e
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 01:12:01 2022 +0200

    ENH: more properties for temporary values

commit 6656659
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 00:19:02 2022 +0200

    ENH: more abstract acceleration properties

commit 34744af
Merge: f75c7da 88e2bc2
Author: Patrick Sampaio <[email protected]>
Date:   Sat Oct 8 22:41:00 2022 +0200

    Merge pull request #226 from RocketPy-Team/enh/env_analysis_euroc

    WIP: ENH: Env Analysis Euroc 2022

commit 88e2bc2
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Oct 8 18:24:52 2022 +0200

    DOC: adding new notebook to docs page

commit d4abe4b
Merge: df7f927 e8da19e
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Oct 8 18:12:19 2022 +0200

    Merge pull request #197 from RocketPy-Team/enh/env_analysis_wind_direction

    ENH: Environment Analysis - Wind Heading Profiles

commit e8da19e
Merge: 9516619 df7f927
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Oct 8 17:27:03 2022 +0200

    Merge remote-tracking branch 'RocketPy-Team/enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit df7f927
Merge: 9b9d6e6 0f070a4
Author: Patrick Sampaio <[email protected]>
Date:   Wed Oct 5 21:52:50 2022 +0200

    Merge pull request #244 from RocketPy-Team/enh/forecast_comparaison

    [EuroC][EnvAnalysis] add forecast comparison to env analysis

commit 0f070a4
Author: patrick <[email protected]>
Date:   Wed Oct 5 21:52:28 2022 +0200

    Enh: Docs for new parameters

commit 9b9d6e6
Author: patrick <[email protected]>
Date:   Tue Oct 4 12:01:50 2022 +0200

    Enh: Executed notebook

commit eeff1cd
Merge: 8b737b3 2002a85
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:12:12 2022 +0200

    gMerge branch 'enh/forecast_comparaison' of https://github.com/Projeto-Jupiter/RocketPy into enh/forecast_comparaison

commit 8b737b3
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:12:07 2022 +0200

    MAINT: removed unused func

commit 2002a85
Author: Lint Action <[email protected]>
Date:   Thu Sep 29 19:11:05 2022 +0000

    Fix code style issues with Black

commit 145e4c5
Merge: 2ceca6a 4e40c42
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:10:15 2022 +0200

    Merge

commit 2ceca6a
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:09:21 2022 +0200

    Enh: Added windspeed forecast comparation plots and env configuration option

commit 47b220c
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 29 04:23:57 2022 +0200

    ENH: Introducing properties in Flight class

commit 4e40c42
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 16:23:42 2022 +0200

    ENH: drafting compareEnvironments method

commit 0c63b61
Merge: e5c920c 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 15:54:09 2022 +0200

    Merge env_analysis_euroc into forecast_comparison

commit 9516619
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 15:45:24 2022 +0200

    FIX: wind heading plots title

commit f75c7da
Merge: be7c521 adf9414
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Sep 24 13:51:23 2022 +0200

    Merge pull request #229 from RocketPy-Team/enh/automate_dispersion

    ENH: automate dispersion inputs with csv

commit adf9414
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:43:52 2022 +0200

    ENH: improve utilities' tests

commit 26078c5
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Sep 24 13:30:59 2022 +0200

    FIX: Revert wrong name replace

commit e9f1e53
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:29:12 2022 +0200

    ENH: adding tests

commit 88d3a47
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:20:28 2022 +0200

    FIX: Refactor .csv files

commit 5671927
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:20:10 2022 +0200

    ENH: Dealing with expect errors cases

commit 576dc9d
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:31:35 2022 +0200

    ENH: Remove undesired sigma plots

commit 809e815
Merge: cee6336 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:23:35 2022 +0200

    GIT: Merge env_analysis_euroc into wind_direction

commit 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:07:03 2022 +0200

    ADD: new notebook for EuroC example

commit e396224
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 03:55:38 2022 +0200

    ENH: Modifying docs and functions attributes

commit 6a26465
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 03:53:38 2022 +0200

    MAINT: Replacing with .nc files that finally works

commit 2c065fa
Author: Lint Action <[email protected]>
Date:   Fri Sep 23 23:13:44 2022 +0000

    Fix code style issues with Black

commit dae5056
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 20:13:00 2022 -0300

    fixing errors and adding Valetudo.csv

commit 0e8bda5
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 00:17:12 2022 +0200

    DOCS: changes on links website

commit a1873e6
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 00:15:46 2022 +0200

    MAINT: refactor surface data file

commit b26650b
Merge: 68ba507 05ff066
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 17:26:20 2022 -0300

    Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

commit 68ba507
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 17:23:06 2022 -0300

    removing libraries

commit cee6336
Merge: c39617c d4babbe
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 02:09:06 2022 +0200

    Merge branch 'enh/env_analysis_wind_direction' of https://github.com/rocketpy-team/rocketpy into enh/env_analysis_wind_direction

commit c39617c
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 02:09:02 2022 +0200

    MAINT: REverting notebook changes

commit d4babbe
Merge: 2492116 58bd0c4
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 02:05:40 2022 +0200

    Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit 58bd0c4
Merge: cd2ba82 92acb1f
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 01:38:06 2022 +0200

    Merge pull request #238 from RocketPy-Team/env_analysis_euroc_add_files

    ENH: Adding .nc files for EnvAnalysis at EuroC

commit cd2ba82
Merge: 7ecf051 0e57727
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 01:33:13 2022 +0200

    Merge pull request #237 from RocketPy-Team/enh/env_analysis_refactor_load_files

    ENH: Refactor Env Analysis .json conversions

commit 0e57727
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:19:38 2022 +0200

    MAINT: removing undesired comments

commit e55ddec
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:09:14 2022 +0200

    MAINT: Add jsonpickle as requirement

commit c5d6517
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:07:01 2022 +0200

    MAINT: Improve methods docs

commit badea3b
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:00:15 2022 +0200

    ENH: Cleaning unused codelines

commit ce2d65c
Merge: 19ebc44 cda9198
Author: Patrick Sampaio <[email protected]>
Date:   Thu Sep 22 19:51:41 2022 +0200

    Merge pull request #239 from RocketPy-Team/enh/jsonpickle

    Enh: Using jsonpickle to serialize EnvAnal

commit 92acb1f
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 16:54:41 2022 +0200

    MAINT: replacing .nc files

commit e5c920c
Author: patrick <[email protected]>
Date:   Thu Sep 22 16:21:09 2022 +0200

    Enh: added forecast comparaison parameters to env analysis

commit cda9198
Author: patrick <[email protected]>
Date:   Thu Sep 22 14:59:01 2022 +0200

    Enh: Using jsonpickle to serialize EnvAnal

commit 2492116
Merge: c7a5123 7ecf051
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Thu Sep 22 04:23:28 2022 +0200

    Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit c7a5123
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 04:15:16 2022 +0200

    ENH: Improve wind heading profiles

commit 514b882
Merge: 03b89b8 be7c521
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 02:32:48 2022 +0200

    MAINT: refresh branch with master

commit 4cc4fa4
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 20:54:47 2022 +0200

    ADD: EuroC Pressure Level large file

commit 19ebc44
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 16:44:25 2022 +0200

    FIX: partially solve masks on json using nan

commit c96db9d
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:46:42 2022 +0200

    MAINT: formatting with black

commit 65d499c
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:38:58 2022 +0200

    ADD: single level file

commit 506503d
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:37:32 2022 +0200

    ENH: Finally reading the .json correctly

commit 9d08619
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 09:10:32 2022 +0200

    FIX: removing 'json' from requirements, not needed

commit 7ecf051
Merge: 5e6bcc4 be7c521
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 08:49:09 2022 +0200

    Merge remote-tracking branch 'origin/master' into enh/env_analysis_euroc

commit cb2c2c9
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 20 15:50:40 2022 -0300

    removed libraries

commit b4f5560
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 16 14:19:00 2022 -0300

    included xlsx

commit 05ff066
Author: FranzYuri <[email protected]>
Date:   Thu Sep 15 13:30:49 2022 -0300

    Update utilities.py

commit 3c89ecf
Author: Lint Action <[email protected]>
Date:   Tue Sep 13 23:27:24 2022 +0000

    Fix code style issues with Black

commit 6093de3
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:22:47 2022 -0300

    formating

commit 3e0d8e5
Merge: bc1fb76 542cd1b
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:04:00 2022 -0300

    Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

commit bc1fb76
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:03:32 2022 -0300

    implemented dictionary creation

commit 542cd1b
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 19:54:21 2022 -0300

    implemented dictionary creation

commit 5e6bcc4
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:35:50 2022 +0200

    MAINT: erasing unexpected conflicts

commit d4e4b76
Author: Lint Action <[email protected]>
Date:   Sun Sep 11 19:28:04 2022 +0000

    Fix code style issues with Black

commit 352073e
Merge: 2161129 e8967cb
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:27:15 2022 +0200

    GIT: Merge conflicted branches

commit 2161129
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:19:18 2022 +0200

    GIT: Trying to force merge

commit be0d26c
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:14:04 2022 +0200

    MAINT: Add json to requirements

commit e8967cb
Author: Lint Action <[email protected]>
Date:   Sun Sep 11 19:09:06 2022 +0000

    Fix code style issues with Black

commit b944ce1
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 20:40:40 2022 +0200

    MAINT: Replace misplaced convertion units

commit 7b24b80
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 19:15:28 2022 +0200

    ENH: saving EnvAnalysisDict into .json

commit d482d96
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 18:21:25 2022 +0200

    MAINT: set default type json.dumps

commit 05fb26f
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 18:20:42 2022 +0200

    ENH: allow to export EnvAnal profiles

commit f5edf69
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:46:53 2022 +0200

    ENH: create exportMeanProfiles core, draft

commit 12a2592
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:31:04 2022 +0200

    MAINT: adjust json format more beatifuly

commit c218992
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:02:19 2022 +0200

    ENH: adding exportEnvironment method

commit 03b89b8
Author: Lint Action <[email protected]>
Date:   Tue Jun 21 11:12:03 2022 +0000

    Fix code style issues with Black

commit b2615e3
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 08:11:39 2022 -0300

    maint: removing unused attributes

commit f023c04
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 08:02:24 2022 -0300

    maint: typo fix on notebook

commit 598f6a8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:58:46 2022 -0300

    enh: adding wind headin profile to our notebook

commit 302395a
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:54:34 2022 -0300

    maint: typo fix

commit 8b68dd8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:52:20 2022 -0300

    enh: adding new methods for wind heading plots
Gui-FernandesBR added a commit that referenced this pull request Nov 16, 2022
commit 540be8c
Merge: 6faef4c 14ee975
Author: MateusStano <[email protected]>
Date:   Mon Nov 14 14:50:33 2022 -0300

    Merge pull request #296 from RocketPy-Team/enh/environment_plots

    ENH: Moved Environment plots to environment_plots.py

commit 6faef4c
Merge: 78a0bd8 ca68cd8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Nov 14 17:02:40 2022 +0100

    Merge pull request #293 from RocketPy-Team/enh/add_name_arguments

    ENH: adding name as a karg in Flight class

commit 14ee975
Merge: fa3faa9 78a0bd8
Author: MateusStano <[email protected]>
Date:   Mon Nov 14 12:39:22 2022 -0300

    Merge branch 'enh/new_plots' into enh/environment_plots

commit 78a0bd8
Merge: 553df48 4ebab9a
Author: MateusStano <[email protected]>
Date:   Mon Nov 14 12:11:54 2022 -0300

    Merge pull request #294 from RocketPy-Team/enh/environment_prints

    ENH: Moved Environment prints to environment_prints.py

commit ca68cd8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Nov 14 05:20:21 2022 +0100

    MAINT: Update flight docs

commit c37d95f
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Nov 14 05:19:46 2022 +0100

    MAINT: modifying default name value

commit fa3faa9
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 22:25:39 2022 -0300

    maint: docs

commit 64eb8a1
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 22:24:52 2022 -0300

    enh: moved plots from Environment.py to environment_plots.py

commit 4ebab9a
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 21:41:09 2022 -0300

    added author

commit 80776fc
Author: Lint Action <[email protected]>
Date:   Mon Nov 14 00:36:13 2022 +0000

    Fix code style issues with Black

commit c5b4857
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 20:50:16 2022 +0100

    ENH: adding name as a karg in Flight class

commit 553df48
Merge: 7925d60 d0da62b
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 16:09:44 2022 -0300

    Merge pull request #289 from RocketPy-Team/enh/flight_prints

    ENH: Moved Flight prints to flight_prints.py

commit d0da62b
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 16:03:18 2022 -0300

    maint: deleted repeated lines of code

commit 67e3711
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 16:02:00 2022 -0300

    enh: changed Environment infos into environment_prints.py

commit 8bbe42f
Merge: 5577ec2 fd8eb41
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 14:35:00 2022 -0300

    Merge branch 'enh/flight_prints' of https://github.com/RocketPy-Team/RocketPy into enh/flight_prints

commit 5577ec2
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 14:34:47 2022 -0300

    maint: removed '\n' from prints

commit d118c0e
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 14:25:05 2022 -0300

    maint: removed 'print' from methods names

commit fd8eb41
Merge: 41f55ca 418ddfd
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:52:02 2022 +0100

    Merge branch 'enh/flight_prints' of https://github.com/rocketpy-team/rocketpy into enh/flight_prints

commit 41f55ca
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:51:16 2022 +0100

    Squashed commit of the following:

    commit 7925d60
    Merge: bb5d7c5 3b09de6
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Nov 13 17:45:01 2022 +0100

        Merge branch 'beta/v1.0.0' into enh/new_plots

    commit 3b09de6
    Merge: ce5a730 a46aa2e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:34:53 2022 -0300

        Merge pull request #283 from RocketPy-Team/fix/cached_property_py37

        Fix: Cached Property support for Python 3.6 and 3.7

    commit a46aa2e
    Author: Lint Action <[email protected]>
    Date:   Sun Nov 13 02:09:36 2022 +0000

        Fix code style issues with Black

    commit b81e30f
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:09:03 2022 -0300

        ENH: Prevents cached_property decorator from being used before `__set_name__`

    commit d7a8e60
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:48 2022 -0300

        FIX: import local cached_property if standard does not exist

    commit d24fce7
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:09 2022 -0300

        ENH: created a cached_property decorator

    commit ce5a730
    Merge: d3a9c63 a9f9fab
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Nov 3 13:39:13 2022 +0100

        Merge remote-tracking branch 'origin/master' into develop

    commit d3a9c63
    Merge: ba8c7bd f7c7a19
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Thu Nov 3 12:31:08 2022 +0100

        Merge pull request #263 from RocketPy-Team/enh/aero_surfaces_class

        ENH: Adding AeroSurfaces classes

    commit f7c7a19
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 08:06:04 2022 -0300

        ENH: add try: except: to roll

    commit e721530
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 04:34:16 2022 -0300

        ENH: remaining TODOs

    commit edc1895
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 04:33:46 2022 -0300

        MAINT: changed back to using trapezoidal fins with Calisto

    commit 8c0fb8a
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:17:47 2022 +0100

        ENH: adding final plots do AeroSurfaces

    commit 01819ac
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:17:12 2022 +0100

        MAINT: updating docstrings of AeroSurfaces

    commit 6b906d5
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:13:49 2022 +0100

        ENH: updating 2D plots at Function.py

    commit 57a93e7
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Nov 1 17:06:51 2022 +0100

        MAINT: removing duplicated cLift definition

        Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>

    commit 024ea0f
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 10:04:13 2022 -0300

        bug: fixed setAttribute and fin area calculation

    commit fdc5085
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 09:25:32 2022 -0300

        enh: add setAttribute

    commit 21407f3
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 09:11:39 2022 -0300

        enh: docs

    commit 3e18215
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:41:25 2022 -0300

        enh: add allInfo() method

    commit 7e4d180
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:40:58 2022 -0300

        enh: add draw() methods

    commit d898773
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:39:34 2022 -0300

        enh: added super Fin class and reorganized other fin classes

    commit ea45c55
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:34:48 2022 -0300

        maint: fixed wrong Yma formula in docs

    commit 2293c1c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Mon Oct 24 02:13:25 2022 +0200

        FIX: adjust variables names to surpass tests

    commit eff4dc0
    Author: Gui-FernandesBR <[email protected]>
    Date:   Mon Oct 24 01:09:21 2022 +0200

        MAINT: adapting attributes names at AeroSurfaces

    commit 9dc26a3
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 23 23:00:42 2022 +0200

        MAINT: Introducing AeroSurfaces classes

    commit ba8c7bd
    Merge: 64e6a4d 2834b5f
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:35:21 2022 -0300

        Merge pull request #256 from RocketPy-Team/enh/swept-back-fins

        ENH: Add Sweep Length to Trapezoidal Fins

    commit 2834b5f
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:18:07 2022 -0300

        FIX: addFins returns created fin set once again

    commit af2de0c
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:17:40 2022 -0300

        TST: implement tests related to trapezoidal fin sweep

    commit 909b38e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 00:21:14 2022 -0300

        ENH: add option to enter sweep angle in Rocket.addTrapezoidalFins

    commit 89c36c0
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 00:09:54 2022 -0300

        ENH: add sweep length to trapezoidal fins

    commit 64e6a4d
    Merge: 34744af 1845d68
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Mon Oct 10 01:24:12 2022 +0200

        Merge pull request #249 from RocketPy-Team/enh/refactor_post_process

        ENH: Introducing properties in Flight class

    commit 1845d68
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 17:06:39 2022 +0200

        BUG: fixing tests bugs related with lat/lon

    commit 7252bf0
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 03:07:39 2022 +0200

        MAINT: removing self._R1 attributes from udot

    commit cdb2093
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:35:24 2022 +0200

        MAINT: fixing tuple not callable problem

    commit 8c5f69a
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:28:43 2022 +0200

        MAINT: sorting imports

    commit 6a45586
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:23:40 2022 +0200

        DOC: updating postProcess bool in Flight.py

    commit a84cff0
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:13:56 2022 +0200

        ENH: Allow other interpolation types in properties

    commit ff665d7
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:03:05 2022 +0200

        ENH: Transform lat/lon into properties

    commit fb1a95f
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 01:40:58 2022 +0200

        ENH: properties for the rail buttons forces

    commit 560eb0e
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 01:12:01 2022 +0200

        ENH: more properties for temporary values

    commit 6656659
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 00:19:02 2022 +0200

        ENH: more abstract acceleration properties

    commit 34744af
    Merge: f75c7da 88e2bc2
    Author: Patrick Sampaio <[email protected]>
    Date:   Sat Oct 8 22:41:00 2022 +0200

        Merge pull request #226 from RocketPy-Team/enh/env_analysis_euroc

        WIP: ENH: Env Analysis Euroc 2022

    commit 88e2bc2
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Oct 8 18:24:52 2022 +0200

        DOC: adding new notebook to docs page

    commit d4abe4b
    Merge: df7f927 e8da19e
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Oct 8 18:12:19 2022 +0200

        Merge pull request #197 from RocketPy-Team/enh/env_analysis_wind_direction

        ENH: Environment Analysis - Wind Heading Profiles

    commit e8da19e
    Merge: 9516619 df7f927
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Oct 8 17:27:03 2022 +0200

        Merge remote-tracking branch 'RocketPy-Team/enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit df7f927
    Merge: 9b9d6e6 0f070a4
    Author: Patrick Sampaio <[email protected]>
    Date:   Wed Oct 5 21:52:50 2022 +0200

        Merge pull request #244 from RocketPy-Team/enh/forecast_comparaison

        [EuroC][EnvAnalysis] add forecast comparison to env analysis

    commit 0f070a4
    Author: patrick <[email protected]>
    Date:   Wed Oct 5 21:52:28 2022 +0200

        Enh: Docs for new parameters

    commit 9b9d6e6
    Author: patrick <[email protected]>
    Date:   Tue Oct 4 12:01:50 2022 +0200

        Enh: Executed notebook

    commit eeff1cd
    Merge: 8b737b3 2002a85
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:12:12 2022 +0200

        gMerge branch 'enh/forecast_comparaison' of https://github.com/Projeto-Jupiter/RocketPy into enh/forecast_comparaison

    commit 8b737b3
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:12:07 2022 +0200

        MAINT: removed unused func

    commit 2002a85
    Author: Lint Action <[email protected]>
    Date:   Thu Sep 29 19:11:05 2022 +0000

        Fix code style issues with Black

    commit 145e4c5
    Merge: 2ceca6a 4e40c42
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:10:15 2022 +0200

        Merge

    commit 2ceca6a
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:09:21 2022 +0200

        Enh: Added windspeed forecast comparation plots and env configuration option

    commit 47b220c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 29 04:23:57 2022 +0200

        ENH: Introducing properties in Flight class

    commit 4e40c42
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 16:23:42 2022 +0200

        ENH: drafting compareEnvironments method

    commit 0c63b61
    Merge: e5c920c 8bbf782
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 15:54:09 2022 +0200

        Merge env_analysis_euroc into forecast_comparison

    commit 9516619
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 15:45:24 2022 +0200

        FIX: wind heading plots title

    commit f75c7da
    Merge: be7c521 adf9414
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Sep 24 13:51:23 2022 +0200

        Merge pull request #229 from RocketPy-Team/enh/automate_dispersion

        ENH: automate dispersion inputs with csv

    commit adf9414
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:43:52 2022 +0200

        ENH: improve utilities' tests

    commit 26078c5
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Sep 24 13:30:59 2022 +0200

        FIX: Revert wrong name replace

    commit e9f1e53
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:29:12 2022 +0200

        ENH: adding tests

    commit 88d3a47
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:20:28 2022 +0200

        FIX: Refactor .csv files

    commit 5671927
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:20:10 2022 +0200

        ENH: Dealing with expect errors cases

    commit 576dc9d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:31:35 2022 +0200

        ENH: Remove undesired sigma plots

    commit 809e815
    Merge: cee6336 8bbf782
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:23:35 2022 +0200

        GIT: Merge env_analysis_euroc into wind_direction

    commit 8bbf782
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:07:03 2022 +0200

        ADD: new notebook for EuroC example

    commit e396224
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 03:55:38 2022 +0200

        ENH: Modifying docs and functions attributes

    commit 6a26465
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 03:53:38 2022 +0200

        MAINT: Replacing with .nc files that finally works

    commit 2c065fa
    Author: Lint Action <[email protected]>
    Date:   Fri Sep 23 23:13:44 2022 +0000

        Fix code style issues with Black

    commit dae5056
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 20:13:00 2022 -0300

        fixing errors and adding Valetudo.csv

    commit 0e8bda5
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 00:17:12 2022 +0200

        DOCS: changes on links website

    commit a1873e6
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 00:15:46 2022 +0200

        MAINT: refactor surface data file

    commit b26650b
    Merge: 68ba507 05ff066
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 17:26:20 2022 -0300

        Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

    commit 68ba507
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 17:23:06 2022 -0300

        removing libraries

    commit cee6336
    Merge: c39617c d4babbe
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 02:09:06 2022 +0200

        Merge branch 'enh/env_analysis_wind_direction' of https://github.com/rocketpy-team/rocketpy into enh/env_analysis_wind_direction

    commit c39617c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 02:09:02 2022 +0200

        MAINT: REverting notebook changes

    commit d4babbe
    Merge: 2492116 58bd0c4
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 02:05:40 2022 +0200

        Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit 58bd0c4
    Merge: cd2ba82 92acb1f
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 01:38:06 2022 +0200

        Merge pull request #238 from RocketPy-Team/env_analysis_euroc_add_files

        ENH: Adding .nc files for EnvAnalysis at EuroC

    commit cd2ba82
    Merge: 7ecf051 0e57727
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 01:33:13 2022 +0200

        Merge pull request #237 from RocketPy-Team/enh/env_analysis_refactor_load_files

        ENH: Refactor Env Analysis .json conversions

    commit 0e57727
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:19:38 2022 +0200

        MAINT: removing undesired comments

    commit e55ddec
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:09:14 2022 +0200

        MAINT: Add jsonpickle as requirement

    commit c5d6517
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:07:01 2022 +0200

        MAINT: Improve methods docs

    commit badea3b
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:00:15 2022 +0200

        ENH: Cleaning unused codelines

    commit ce2d65c
    Merge: 19ebc44 cda9198
    Author: Patrick Sampaio <[email protected]>
    Date:   Thu Sep 22 19:51:41 2022 +0200

        Merge pull request #239 from RocketPy-Team/enh/jsonpickle

        Enh: Using jsonpickle to serialize EnvAnal

    commit 92acb1f
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 16:54:41 2022 +0200

        MAINT: replacing .nc files

    commit e5c920c
    Author: patrick <[email protected]>
    Date:   Thu Sep 22 16:21:09 2022 +0200

        Enh: added forecast comparaison parameters to env analysis

    commit cda9198
    Author: patrick <[email protected]>
    Date:   Thu Sep 22 14:59:01 2022 +0200

        Enh: Using jsonpickle to serialize EnvAnal

    commit 2492116
    Merge: c7a5123 7ecf051
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Thu Sep 22 04:23:28 2022 +0200

        Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit c7a5123
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 04:15:16 2022 +0200

        ENH: Improve wind heading profiles

    commit 514b882
    Merge: 03b89b8 be7c521
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 02:32:48 2022 +0200

        MAINT: refresh branch with master

    commit 4cc4fa4
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 20:54:47 2022 +0200

        ADD: EuroC Pressure Level large file

    commit 19ebc44
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 16:44:25 2022 +0200

        FIX: partially solve masks on json using nan

    commit c96db9d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:46:42 2022 +0200

        MAINT: formatting with black

    commit 65d499c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:38:58 2022 +0200

        ADD: single level file

    commit 506503d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:37:32 2022 +0200

        ENH: Finally reading the .json correctly

    commit 9d08619
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 09:10:32 2022 +0200

        FIX: removing 'json' from requirements, not needed

    commit 7ecf051
    Merge: 5e6bcc4 be7c521
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 08:49:09 2022 +0200

        Merge remote-tracking branch 'origin/master' into enh/env_analysis_euroc

    commit cb2c2c9
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 20 15:50:40 2022 -0300

        removed libraries

    commit b4f5560
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 16 14:19:00 2022 -0300

        included xlsx

    commit 05ff066
    Author: FranzYuri <[email protected]>
    Date:   Thu Sep 15 13:30:49 2022 -0300

        Update utilities.py

    commit 3c89ecf
    Author: Lint Action <[email protected]>
    Date:   Tue Sep 13 23:27:24 2022 +0000

        Fix code style issues with Black

    commit 6093de3
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:22:47 2022 -0300

        formating

    commit 3e0d8e5
    Merge: bc1fb76 542cd1b
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:04:00 2022 -0300

        Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

    commit bc1fb76
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:03:32 2022 -0300

        implemented dictionary creation

    commit 542cd1b
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 19:54:21 2022 -0300

        implemented dictionary creation

    commit 5e6bcc4
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:35:50 2022 +0200

        MAINT: erasing unexpected conflicts

    commit d4e4b76
    Author: Lint Action <[email protected]>
    Date:   Sun Sep 11 19:28:04 2022 +0000

        Fix code style issues with Black

    commit 352073e
    Merge: 2161129 e8967cb
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:27:15 2022 +0200

        GIT: Merge conflicted branches

    commit 2161129
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:19:18 2022 +0200

        GIT: Trying to force merge

    commit be0d26c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:14:04 2022 +0200

        MAINT: Add json to requirements

    commit e8967cb
    Author: Lint Action <[email protected]>
    Date:   Sun Sep 11 19:09:06 2022 +0000

        Fix code style issues with Black

    commit b944ce1
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 20:40:40 2022 +0200

        MAINT: Replace misplaced convertion units

    commit 7b24b80
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 19:15:28 2022 +0200

        ENH: saving EnvAnalysisDict into .json

    commit d482d96
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 18:21:25 2022 +0200

        MAINT: set default type json.dumps

    commit 05fb26f
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 18:20:42 2022 +0200

        ENH: allow to export EnvAnal profiles

    commit f5edf69
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:46:53 2022 +0200

        ENH: create exportMeanProfiles core, draft

    commit 12a2592
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:31:04 2022 +0200

        MAINT: adjust json format more beatifuly

    commit c218992
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:02:19 2022 +0200

        ENH: adding exportEnvironment method

    commit 03b89b8
    Author: Lint Action <[email protected]>
    Date:   Tue Jun 21 11:12:03 2022 +0000

        Fix code style issues with Black

    commit b2615e3
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 08:11:39 2022 -0300

        maint: removing unused attributes

    commit f023c04
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 08:02:24 2022 -0300

        maint: typo fix on notebook

    commit 598f6a8
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:58:46 2022 -0300

        enh: adding wind headin profile to our notebook

    commit 302395a
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:54:34 2022 -0300

        maint: typo fix

    commit 8b68dd8
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:52:20 2022 -0300

        enh: adding new methods for wind heading plots

commit 418ddfd
Merge: 48b0fd3 7925d60
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 13:50:27 2022 -0300

    Merge branch 'enh/new_plots' into enh/flight_prints

commit f5f7bca
Merge: 48b0fd3 a9f9fab
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:48:48 2022 +0100

    Merge branch 'master' into enh/flight_prints

commit 48b0fd3
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 13:31:00 2022 -0300

    updated docs

commit ab23ce8
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 13:02:56 2022 -0300

    enh: moved Flight prints to flight_prints.py
MateusStano pushed a commit that referenced this pull request Dec 28, 2022
commit 7925d60
Merge: bb5d7c5 3b09de6
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:45:01 2022 +0100

    Merge branch 'beta/v1.0.0' into enh/new_plots

commit 3b09de6
Merge: ce5a730 a46aa2e
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 23:34:53 2022 -0300

    Merge pull request #283 from RocketPy-Team/fix/cached_property_py37

    Fix: Cached Property support for Python 3.6 and 3.7

commit a46aa2e
Author: Lint Action <[email protected]>
Date:   Sun Nov 13 02:09:36 2022 +0000

    Fix code style issues with Black

commit b81e30f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 23:09:03 2022 -0300

    ENH: Prevents cached_property decorator from being used before `__set_name__`

commit d7a8e60
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 00:43:48 2022 -0300

    FIX: import local cached_property if standard does not exist

commit d24fce7
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Sat Nov 12 00:43:09 2022 -0300

    ENH: created a cached_property decorator

commit ce5a730
Merge: d3a9c63 a9f9fab
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Nov 3 13:39:13 2022 +0100

    Merge remote-tracking branch 'origin/master' into develop

commit d3a9c63
Merge: ba8c7bd f7c7a19
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Thu Nov 3 12:31:08 2022 +0100

    Merge pull request #263 from RocketPy-Team/enh/aero_surfaces_class

    ENH: Adding AeroSurfaces classes

commit f7c7a19
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 08:06:04 2022 -0300

    ENH: add try: except: to roll

commit e721530
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 04:34:16 2022 -0300

    ENH: remaining TODOs

commit edc1895
Author: MateusStano <[email protected]>
Date:   Thu Nov 3 04:33:46 2022 -0300

    MAINT: changed back to using trapezoidal fins with Calisto

commit 8c0fb8a
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:17:47 2022 +0100

    ENH: adding final plots do AeroSurfaces

commit 01819ac
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:17:12 2022 +0100

    MAINT: updating docstrings of AeroSurfaces

commit 6b906d5
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 2 08:13:49 2022 +0100

    ENH: updating 2D plots at Function.py

commit 57a93e7
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Nov 1 17:06:51 2022 +0100

    MAINT: removing duplicated cLift definition

    Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>

commit 024ea0f
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 10:04:13 2022 -0300

    bug: fixed setAttribute and fin area calculation

commit fdc5085
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 09:25:32 2022 -0300

    enh: add setAttribute

commit 21407f3
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 09:11:39 2022 -0300

    enh: docs

commit 3e18215
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:41:25 2022 -0300

    enh: add allInfo() method

commit 7e4d180
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:40:58 2022 -0300

    enh: add draw() methods

commit d898773
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:39:34 2022 -0300

    enh: added super Fin class and reorganized other fin classes

commit ea45c55
Author: MateusStano <[email protected]>
Date:   Tue Nov 1 05:34:48 2022 -0300

    maint: fixed wrong Yma formula in docs

commit 2293c1c
Author: Gui-FernandesBR <[email protected]>
Date:   Mon Oct 24 02:13:25 2022 +0200

    FIX: adjust variables names to surpass tests

commit eff4dc0
Author: Gui-FernandesBR <[email protected]>
Date:   Mon Oct 24 01:09:21 2022 +0200

    MAINT: adapting attributes names at AeroSurfaces

commit 9dc26a3
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 23 23:00:42 2022 +0200

    MAINT: Introducing AeroSurfaces classes

commit ba8c7bd
Merge: 64e6a4d 2834b5f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:35:21 2022 -0300

    Merge pull request #256 from RocketPy-Team/enh/swept-back-fins

    ENH: Add Sweep Length to Trapezoidal Fins

commit 2834b5f
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:18:07 2022 -0300

    FIX: addFins returns created fin set once again

commit af2de0c
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 01:17:40 2022 -0300

    TST: implement tests related to trapezoidal fin sweep

commit 909b38e
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 00:21:14 2022 -0300

    ENH: add option to enter sweep angle in Rocket.addTrapezoidalFins

commit 89c36c0
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 12 00:09:54 2022 -0300

    ENH: add sweep length to trapezoidal fins

commit 64e6a4d
Merge: 34744af 1845d68
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Oct 10 01:24:12 2022 +0200

    Merge pull request #249 from RocketPy-Team/enh/refactor_post_process

    ENH: Introducing properties in Flight class

commit 1845d68
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 17:06:39 2022 +0200

    BUG: fixing tests bugs related with lat/lon

commit 7252bf0
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 03:07:39 2022 +0200

    MAINT: removing self._R1 attributes from udot

commit cdb2093
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:35:24 2022 +0200

    MAINT: fixing tuple not callable problem

commit 8c5f69a
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:28:43 2022 +0200

    MAINT: sorting imports

commit 6a45586
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:23:40 2022 +0200

    DOC: updating postProcess bool in Flight.py

commit a84cff0
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:13:56 2022 +0200

    ENH: Allow other interpolation types in properties

commit ff665d7
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 02:03:05 2022 +0200

    ENH: Transform lat/lon into properties

commit fb1a95f
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 01:40:58 2022 +0200

    ENH: properties for the rail buttons forces

commit 560eb0e
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 01:12:01 2022 +0200

    ENH: more properties for temporary values

commit 6656659
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Oct 9 00:19:02 2022 +0200

    ENH: more abstract acceleration properties

commit 34744af
Merge: f75c7da 88e2bc2
Author: Patrick Sampaio <[email protected]>
Date:   Sat Oct 8 22:41:00 2022 +0200

    Merge pull request #226 from RocketPy-Team/enh/env_analysis_euroc

    WIP: ENH: Env Analysis Euroc 2022

commit 88e2bc2
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Oct 8 18:24:52 2022 +0200

    DOC: adding new notebook to docs page

commit d4abe4b
Merge: df7f927 e8da19e
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Oct 8 18:12:19 2022 +0200

    Merge pull request #197 from RocketPy-Team/enh/env_analysis_wind_direction

    ENH: Environment Analysis - Wind Heading Profiles

commit e8da19e
Merge: 9516619 df7f927
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Oct 8 17:27:03 2022 +0200

    Merge remote-tracking branch 'RocketPy-Team/enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit df7f927
Merge: 9b9d6e6 0f070a4
Author: Patrick Sampaio <[email protected]>
Date:   Wed Oct 5 21:52:50 2022 +0200

    Merge pull request #244 from RocketPy-Team/enh/forecast_comparaison

    [EuroC][EnvAnalysis] add forecast comparison to env analysis

commit 0f070a4
Author: patrick <[email protected]>
Date:   Wed Oct 5 21:52:28 2022 +0200

    Enh: Docs for new parameters

commit 9b9d6e6
Author: patrick <[email protected]>
Date:   Tue Oct 4 12:01:50 2022 +0200

    Enh: Executed notebook

commit eeff1cd
Merge: 8b737b3 2002a85
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:12:12 2022 +0200

    gMerge branch 'enh/forecast_comparaison' of https://github.com/Projeto-Jupiter/RocketPy into enh/forecast_comparaison

commit 8b737b3
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:12:07 2022 +0200

    MAINT: removed unused func

commit 2002a85
Author: Lint Action <[email protected]>
Date:   Thu Sep 29 19:11:05 2022 +0000

    Fix code style issues with Black

commit 145e4c5
Merge: 2ceca6a 4e40c42
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:10:15 2022 +0200

    Merge

commit 2ceca6a
Author: patrick <[email protected]>
Date:   Thu Sep 29 21:09:21 2022 +0200

    Enh: Added windspeed forecast comparation plots and env configuration option

commit 47b220c
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 29 04:23:57 2022 +0200

    ENH: Introducing properties in Flight class

commit 4e40c42
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 16:23:42 2022 +0200

    ENH: drafting compareEnvironments method

commit 0c63b61
Merge: e5c920c 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 15:54:09 2022 +0200

    Merge env_analysis_euroc into forecast_comparison

commit 9516619
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 15:45:24 2022 +0200

    FIX: wind heading plots title

commit f75c7da
Merge: be7c521 adf9414
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Sep 24 13:51:23 2022 +0200

    Merge pull request #229 from RocketPy-Team/enh/automate_dispersion

    ENH: automate dispersion inputs with csv

commit adf9414
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:43:52 2022 +0200

    ENH: improve utilities' tests

commit 26078c5
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Sat Sep 24 13:30:59 2022 +0200

    FIX: Revert wrong name replace

commit e9f1e53
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:29:12 2022 +0200

    ENH: adding tests

commit 88d3a47
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:20:28 2022 +0200

    FIX: Refactor .csv files

commit 5671927
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 13:20:10 2022 +0200

    ENH: Dealing with expect errors cases

commit 576dc9d
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:31:35 2022 +0200

    ENH: Remove undesired sigma plots

commit 809e815
Merge: cee6336 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:23:35 2022 +0200

    GIT: Merge env_analysis_euroc into wind_direction

commit 8bbf782
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 04:07:03 2022 +0200

    ADD: new notebook for EuroC example

commit e396224
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 03:55:38 2022 +0200

    ENH: Modifying docs and functions attributes

commit 6a26465
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 03:53:38 2022 +0200

    MAINT: Replacing with .nc files that finally works

commit 2c065fa
Author: Lint Action <[email protected]>
Date:   Fri Sep 23 23:13:44 2022 +0000

    Fix code style issues with Black

commit dae5056
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 20:13:00 2022 -0300

    fixing errors and adding Valetudo.csv

commit 0e8bda5
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 00:17:12 2022 +0200

    DOCS: changes on links website

commit a1873e6
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Sep 24 00:15:46 2022 +0200

    MAINT: refactor surface data file

commit b26650b
Merge: 68ba507 05ff066
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 17:26:20 2022 -0300

    Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

commit 68ba507
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 23 17:23:06 2022 -0300

    removing libraries

commit cee6336
Merge: c39617c d4babbe
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 02:09:06 2022 +0200

    Merge branch 'enh/env_analysis_wind_direction' of https://github.com/rocketpy-team/rocketpy into enh/env_analysis_wind_direction

commit c39617c
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 02:09:02 2022 +0200

    MAINT: REverting notebook changes

commit d4babbe
Merge: 2492116 58bd0c4
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 02:05:40 2022 +0200

    Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit 58bd0c4
Merge: cd2ba82 92acb1f
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 01:38:06 2022 +0200

    Merge pull request #238 from RocketPy-Team/env_analysis_euroc_add_files

    ENH: Adding .nc files for EnvAnalysis at EuroC

commit cd2ba82
Merge: 7ecf051 0e57727
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Fri Sep 23 01:33:13 2022 +0200

    Merge pull request #237 from RocketPy-Team/enh/env_analysis_refactor_load_files

    ENH: Refactor Env Analysis .json conversions

commit 0e57727
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:19:38 2022 +0200

    MAINT: removing undesired comments

commit e55ddec
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:09:14 2022 +0200

    MAINT: Add jsonpickle as requirement

commit c5d6517
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:07:01 2022 +0200

    MAINT: Improve methods docs

commit badea3b
Author: Gui-FernandesBR <[email protected]>
Date:   Fri Sep 23 01:00:15 2022 +0200

    ENH: Cleaning unused codelines

commit ce2d65c
Merge: 19ebc44 cda9198
Author: Patrick Sampaio <[email protected]>
Date:   Thu Sep 22 19:51:41 2022 +0200

    Merge pull request #239 from RocketPy-Team/enh/jsonpickle

    Enh: Using jsonpickle to serialize EnvAnal

commit 92acb1f
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 16:54:41 2022 +0200

    MAINT: replacing .nc files

commit e5c920c
Author: patrick <[email protected]>
Date:   Thu Sep 22 16:21:09 2022 +0200

    Enh: added forecast comparaison parameters to env analysis

commit cda9198
Author: patrick <[email protected]>
Date:   Thu Sep 22 14:59:01 2022 +0200

    Enh: Using jsonpickle to serialize EnvAnal

commit 2492116
Merge: c7a5123 7ecf051
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Thu Sep 22 04:23:28 2022 +0200

    Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

commit c7a5123
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 04:15:16 2022 +0200

    ENH: Improve wind heading profiles

commit 514b882
Merge: 03b89b8 be7c521
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Sep 22 02:32:48 2022 +0200

    MAINT: refresh branch with master

commit 4cc4fa4
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 20:54:47 2022 +0200

    ADD: EuroC Pressure Level large file

commit 19ebc44
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 16:44:25 2022 +0200

    FIX: partially solve masks on json using nan

commit c96db9d
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:46:42 2022 +0200

    MAINT: formatting with black

commit 65d499c
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:38:58 2022 +0200

    ADD: single level file

commit 506503d
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 15:37:32 2022 +0200

    ENH: Finally reading the .json correctly

commit 9d08619
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 09:10:32 2022 +0200

    FIX: removing 'json' from requirements, not needed

commit 7ecf051
Merge: 5e6bcc4 be7c521
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Sep 21 08:49:09 2022 +0200

    Merge remote-tracking branch 'origin/master' into enh/env_analysis_euroc

commit cb2c2c9
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 20 15:50:40 2022 -0300

    removed libraries

commit b4f5560
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Fri Sep 16 14:19:00 2022 -0300

    included xlsx

commit 05ff066
Author: FranzYuri <[email protected]>
Date:   Thu Sep 15 13:30:49 2022 -0300

    Update utilities.py

commit 3c89ecf
Author: Lint Action <[email protected]>
Date:   Tue Sep 13 23:27:24 2022 +0000

    Fix code style issues with Black

commit 6093de3
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:22:47 2022 -0300

    formating

commit 3e0d8e5
Merge: bc1fb76 542cd1b
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:04:00 2022 -0300

    Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

commit bc1fb76
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 20:03:32 2022 -0300

    implemented dictionary creation

commit 542cd1b
Author: Franz Masatoshi Yuri <[email protected]>
Date:   Tue Sep 13 19:54:21 2022 -0300

    implemented dictionary creation

commit 5e6bcc4
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:35:50 2022 +0200

    MAINT: erasing unexpected conflicts

commit d4e4b76
Author: Lint Action <[email protected]>
Date:   Sun Sep 11 19:28:04 2022 +0000

    Fix code style issues with Black

commit 352073e
Merge: 2161129 e8967cb
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:27:15 2022 +0200

    GIT: Merge conflicted branches

commit 2161129
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:19:18 2022 +0200

    GIT: Trying to force merge

commit be0d26c
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 21:14:04 2022 +0200

    MAINT: Add json to requirements

commit e8967cb
Author: Lint Action <[email protected]>
Date:   Sun Sep 11 19:09:06 2022 +0000

    Fix code style issues with Black

commit b944ce1
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 20:40:40 2022 +0200

    MAINT: Replace misplaced convertion units

commit 7b24b80
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 19:15:28 2022 +0200

    ENH: saving EnvAnalysisDict into .json

commit d482d96
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 18:21:25 2022 +0200

    MAINT: set default type json.dumps

commit 05fb26f
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 18:20:42 2022 +0200

    ENH: allow to export EnvAnal profiles

commit f5edf69
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:46:53 2022 +0200

    ENH: create exportMeanProfiles core, draft

commit 12a2592
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:31:04 2022 +0200

    MAINT: adjust json format more beatifuly

commit c218992
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Sep 11 04:02:19 2022 +0200

    ENH: adding exportEnvironment method

commit 03b89b8
Author: Lint Action <[email protected]>
Date:   Tue Jun 21 11:12:03 2022 +0000

    Fix code style issues with Black

commit b2615e3
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 08:11:39 2022 -0300

    maint: removing unused attributes

commit f023c04
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 08:02:24 2022 -0300

    maint: typo fix on notebook

commit 598f6a8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:58:46 2022 -0300

    enh: adding wind headin profile to our notebook

commit 302395a
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:54:34 2022 -0300

    maint: typo fix

commit 8b68dd8
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Tue Jun 21 07:52:20 2022 -0300

    enh: adding new methods for wind heading plots
MateusStano added a commit that referenced this pull request Jan 26, 2023
commit 96ff97bfa2bb62955ebd32d62ef6ad3b75e25ca4
Merge: 52bd7b4 7c14e54
Author: MateusStano <[email protected]>
Date:   Wed Jan 18 21:41:10 2023 -0300

    Merge pull request #282 from RocketPy-Team/enh/distances-vs-positons-v2

    ENH: Distances vs Positons v2

commit 7c14e54ab91666ccf732616ded81992a5d426596
Author: MateusStano <[email protected]>
Date:   Wed Jan 18 21:29:46 2023 -0300

    bug: fix b and c geometrical parameters calculation

commit 03f1dc4729a0c5955ac89da507d37331f42f8ed5
Author: MateusStano <[email protected]>
Date:   Wed Jan 18 21:28:50 2023 -0300

    remaining merging conflicts

commit d83e7ebf1fb652487039ef2aeaf0f116c58c727c
Merge: 8920c41 dda3ce5
Author: MateusStano <[email protected]>
Date:   Wed Jan 18 00:01:44 2023 -0300

    Merge pull request #306 from RocketPy-Team/tst/new_env_func_aero_tests

    New tests for AeroSurfaces, Environment, Environment Analysis and Function

commit 52bd7b44e089ba92a566f52980ecf96cae9be92b
Merge: 920a3cc 7dfa5c8
Author: MateusStano <[email protected]>
Date:   Wed Jan 11 15:16:57 2023 -0300

    Merge pull request #322 from RocketPy-Team/docs/deployable-payload-example

    DOCS: new deployable payload example

commit 7dfa5c8ad9a708263945dcc7fe1ed1f012bf9e4e
Author: MateusStano <[email protected]>
Date:   Wed Jan 11 15:12:44 2023 -0300

    enh: removed %matplotlib widget

commit a1af7f688537eea22851774172a916d2b416f591
Author: MateusStano <[email protected]>
Date:   Tue Jan 10 18:22:52 2023 -0300

    maint: add docs and typos fix

commit dda3ce580ce2bf224c7abb94ee5955cefe78108e
Author: Lint Action <[email protected]>
Date:   Tue Jan 10 17:41:03 2023 +0000

    Fix code style issues with Black

commit e6cf871b8bd97fa8d065077b8dfe7a9fe821170e
Merge: 8473947 8920c41
Author: MateusStano <[email protected]>
Date:   Tue Jan 10 14:40:25 2023 -0300

    Merge branch 'enh/distances-vs-positons-v2' into tst/new_env_func_aero_tests

commit 8920c41da68983da621a3c2f37fabd3c70d961ac
Merge: 1664395 920a3cc
Author: MateusStano <[email protected]>
Date:   Mon Jan 9 00:41:44 2023 -0300

    Merge branch 'beta/v1.0.0' into enh/distances-vs-positons-v2

commit 920a3ccd6a43e5d46eb0449b213dcc8b10624761
Merge: 1f0535f 012feee
Author: MateusStano <[email protected]>
Date:   Sun Jan 8 16:58:05 2023 -0300

    Merge pull request #287 from RocketPy-Team/enh/new_plots

    ENH: Refactor and replace plots and outputs + Compare plots

commit b44a624d88eda95bfb2981158c96f929c3999ccf
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 17:33:37 2023 +0100

    ADD: new deployable payload example

commit 012feeec7b6934d6cf99ed7a83916d9d0264842f
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 17:30:29 2023 +0100

    BUG: additional conditions for initialSolution

commit d5b436625a95877b9ee7944179c4ed0d3396e3e9
Author: Lint Action <[email protected]>
Date:   Sun Jan 8 16:01:40 2023 +0000

    Fix code style issues with Black

commit 6d66c9e575420460bcf3e2b20b81472647324541
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 17:00:34 2023 +0100

    MAINT: refactor __init__ method

commit 0108d2faae691c728b8a42ced64bd6bd12a2efe7
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 16:59:43 2023 +0100

    MAINT: remove properties' definition from __init__

commit 56a40af7378b0ff955e64a8774973894fa99fadd
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 16:39:20 2023 +0100

    Revert 2b8ee0a9bdd7f3b6854a2c209bce867b0c6bb722

commit 1664395a1eaf22aee5f3df4cf107de416ab235c9
Merge: 8f9e370 1f0535f
Author: MateusStano <[email protected]>
Date:   Sun Jan 8 00:14:09 2023 -0300

    Merge branch 'beta/v1.0.0' into enh/distances-vs-positons-v2

commit 083fa20f5faceda0065bb891e72954d145fdba18
Author: Lint Action <[email protected]>
Date:   Sun Jan 8 02:26:31 2023 +0000

    Fix code style issues with Black

commit 2b8ee0a9bdd7f3b6854a2c209bce867b0c6bb722
Merge: 973cf60 1f0535f
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 03:25:45 2023 +0100

    Merge branch 'beta/v1.0.0' into enh/new_plots

commit 1f0535f59983107556b1a678b7d788ece3b92b7c
Merge: b311fed ac34d57
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 03:13:46 2023 +0100

    Merge pull request #321 from RocketPy-Team/enh/improve_initial_sol

    MAINT: refactor flight class __init__ method

commit 973cf60b8a9a659cf3acf3b5a6f20574fbf2555e
Merge: a64c50c f5a4d6d
Author: Guilherme <[email protected]>
Date:   Sun Jan 8 03:04:23 2023 +0100

    Merge pull request #320 from RocketPy-Team/tst/new_plots_tests

    TST: new plots tests

commit ac34d5773d2b3003b7b4dccd1dc26b6167a08cec
Author: giovaniceotto <[email protected]>
Date:   Wed Sep 14 08:15:17 2022 -0300

    MAINT: Make rail buttons optional in simulation

commit c9c46157b740059fe400944d82642a585ce8e0ab
Author: giovaniceotto <[email protected]>
Date:   Wed Sep 14 08:19:17 2022 -0300

    MAINT: refactor solution monitors initialization

commit 247fe7f465b727afac3de12bc1ec537ce29b2deb
Author: Gui-FernandesBR <[email protected]>
Date:   Tue Sep 27 16:59:30 2022 +0200

    MAINT: Make rail buttons optional in simulation

commit 10911f5c923df86821535a41f3474684e3dda7b2
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Oct 5 03:31:41 2022 +0000

    BUG: miss matching arrays init solution

commit f5a4d6d67380324a0a7dfb4c4c691681d2a9139f
Author: Guilherme <[email protected]>
Date:   Thu Jan 5 06:49:31 2023 +0100

    TST: new plots for compare plots

commit c910f8994c4663196439394c88e262a2e75947d3
Author: Guilherme <[email protected]>
Date:   Thu Jan 5 06:49:04 2023 +0100

    MAINT: extract logic methods, avoid repeating

commit 9354ec87a8766e24d657278852cba37a7d5d7839
Author: Guilherme <[email protected]>
Date:   Thu Jan 5 06:48:28 2023 +0100

    TST: moving fixtures to conftest.py

commit 2110f857cafdb9a9d8529b943fac876c2449ddc2
Author: Guilherme <[email protected]>
Date:   Thu Jan 5 06:47:46 2023 +0100

    MAINT: avoid DRY - duplicate calls at rocket_plots

commit 8f9e3705231ac43a417bfe60a7de2df88f817f03
Author: MateusStano <[email protected]>
Date:   Wed Jan 4 17:25:39 2023 -0300

    maint: run black on notebooks

commit a64c50c0418ce48c77b6aadefb34e675dc714c4b
Merge: eaf508f 069b136
Author: Guilherme <[email protected]>
Date:   Wed Jan 4 10:22:07 2023 +0100

    Merge pull request #295 from RocketPy-Team/enh/new_plotscompare-plots

    ENH: Introducing CompareFlights class, a comparison of flight plots

commit 069b136eaed42de79dcd2a8c226278e32c71d4ac
Author: MateusStano <[email protected]>
Date:   Wed Jan 4 06:11:56 2023 -0300

    enh: made x_attributes optional

commit 847394739924f53c15f0c919a9ed58e0902af462
Author: Guilherme <[email protected]>
Date:   Wed Jan 4 10:06:49 2023 +0100

    TST: set EnvAnalysis tests as slow option

commit 81052345e114e7fc5bd87c0a58cb5a47b453967b
Author: MateusStano <[email protected]>
Date:   Wed Jan 4 05:26:33 2023 -0300

    enh: rail_buttons_forces

commit 2d086a24e1fd8e3c8b4dcf19b142de6f0991415e
Author: MateusStano <[email protected]>
Date:   Wed Jan 4 05:26:19 2023 -0300

    maint: docstring parameters order

commit 65a28f71e14b3f2d21e01d7c2742cafb7a0b44ce
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 21:49:24 2023 -0300

    bug: fix Function np.inf call with int or float defined Functions

commit 51c7cbff2cb2327faec4846fc35497670eee1788
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 21:46:52 2023 -0300

    maint: sort imports

commit b352ac74be38f42b81857ac56b75422211b006ad
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 21:46:29 2023 -0300

    enh: added envanalysis import

commit 4bb94f6832deca480e30a7672d19f7952df95223
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 21:44:24 2023 -0300

    maint: removed anotations

commit 258687697c0404ec2a000e43719fbdb5fee34bee
Author: Guilherme <[email protected]>
Date:   Wed Jan 4 01:13:38 2023 +0100

    MAINT: update notebook

commit fce219fb1660bdfe8d8a960c0d335a2b3da43465
Author: Guilherme <[email protected]>
Date:   Wed Jan 4 01:13:21 2023 +0100

    ENH: finish compare trajectories 2d functions

commit d4ec8f3fd1f3eb68c52abeb3afe553349d765730
Author: Guilherme <[email protected]>
Date:   Wed Jan 4 01:12:53 2023 +0100

    MAINT: update __init__ files

commit a6df18b8b544a1fc3b8272d8f1e6206fd38701e1
Merge: 4d4161e eaf508f
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 03:18:31 2023 -0300

    Merge branch 'enh/new_plots' into enh/new_plotscompare-plots

commit 4d4161ebaf03b6019d68c2667dcbcd29aa101642
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 03:14:42 2023 -0300

    enh: adapted compare_flights to inherit compare class

commit f80d7c394c375e8f2567c7c479ca85c878152977
Author: MateusStano <[email protected]>
Date:   Tue Jan 3 03:13:36 2023 -0300

    enh: created compare.py super class

commit eaf508fe149a9c091e19a1014ba3f08ffcedd5e8
Merge: e300dd5 7094d0a
Author: MateusStano <[email protected]>
Date:   Sun Jan 1 23:26:39 2023 -0300

    Merge pull request #290 from RocketPy-Team/enh/flight_plots

    ENH: Moved Flight plots to flight_plots.py

commit 7094d0ae50569a15c3e1875b6ecffea5bfeaae79
Author: MateusStano <[email protected]>
Date:   Sun Jan 1 23:25:11 2023 -0300

    enh: add title and formatting to pressure at rockets altitude plots

commit db990f9e2f04a4181b87bd4f015b7d335c2c8503
Author: Lint Action <[email protected]>
Date:   Sat Dec 31 07:35:43 2022 +0000

    Fix code style issues with Black

commit 27422afb922dff32f58bc37161858fdc70d6f861
Merge: bd7d88f a94f52a
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:35:08 2022 +0100

    Merge branch 'enh/distances-vs-positons-v2' into tst/new_env_func_aero_tests

commit bd7d88ff3c1cc8dfd5558a30a430e2a90d83941a
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:33:57 2022 +0100

    MAINT: closing and cleaning files after tests

commit cc1dc0469c1c4eb17e2846813345ea3ef17b740c
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:33:40 2022 +0100

    TST: Improved tests for info returned

commit 49d4b75a13c652875b7019ba0aac5440e017349d
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:33:00 2022 +0100

    MAINT: improve docstrings for tests

commit 916cc50fd6e3b76580cff92026b9aa575f39012d
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:32:02 2022 +0100

    ENH: moving fixtures to the conftest.py

commit 23d98d48887f5029458465e4640d19565297a521
Author: Guilherme <[email protected]>
Date:   Sat Dec 31 08:30:28 2022 +0100

    MAINT: revert type hint and improve docs

commit 30339cf82f46f256f4b1aa44337a83443268e351
Author: MateusStano <[email protected]>
Date:   Fri Dec 30 18:38:17 2022 -0300

    enh: remove plt.close()

commit a94f52adecd1cf32d3b6d1c38808d94f34ad53ca
Merge: de6be57 b311fed
Author: MateusStano <[email protected]>
Date:   Thu Dec 29 14:52:40 2022 -0300

    Merge branch 'beta/v1.0.0' into enh/distances-vs-positons-v2

commit 8a7c74a480bf83f5996f097e81d6793722529f31
Author: Guilherme <[email protected]>
Date:   Thu Dec 29 12:01:39 2022 +0100

    FIX: pressure_rocket_altitude not working

commit c520f7bb8ab9b2980083b34c24aee02d9be3e322
Author: MateusStano <[email protected]>
Date:   Thu Dec 29 03:21:57 2022 -0300

    enh: added events cached property and fixed pressure plots

commit 79a50aef7d3e065b9ab169aaf1e3ad0de37de063
Merge: 3f0c7df e300dd5
Author: MateusStano <[email protected]>
Date:   Tue Dec 27 21:38:23 2022 -0300

    Merge branch 'enh/new_plots' into enh/flight_plots

commit e300dd54f3f793549baa8a53c496623836b01eb6
Merge: 275e443 14932f6
Author: MateusStano <[email protected]>
Date:   Tue Dec 27 21:26:18 2022 -0300

    Merge branch 'enh/new_plots' of https://github.com/RocketPy-Team/RocketPy into enh/new_plots

commit 275e44330fa9b23b50850120d3975d5b823ae699
Author: MateusStano <[email protected]>
Date:   Tue Dec 27 21:22:59 2022 -0300

    maint. remaining rebase conflicts

commit 276d31f9f8462d56083afb65fdda99b099470dab
Author: Lint Action <[email protected]>
Date:   Sat Nov 19 02:32:53 2022 +0000

    Fix code style issues with Black

commit 3ea8641323a2d924637029fe0203ed0fc2e238f3
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 23:32:10 2022 -0300

    enh: new methods added to rocket_plots.py

commit 68d62abf10911e849b32bc8fab607cf66d95bdc8
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:43:58 2022 -0300

    fix attribute reference

commit 9c3ef286ed1f2f89ab8654c8ed571b5501cf980e
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:30:03 2022 -0300

    Fix typo

commit b3cd63860e7b79bcf4ce96fb63693eda49d1dd1a
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:11:35 2022 -0300

    ENH: Moved Rocket plots to rocket_plots.py

commit 58d09e39e2ba76a6ec42c5ad3e7e4ec997608594
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 20:20:04 2022 -0300

    enh: added line skips

commit df1d422f5339d8d5765d180df9af44181b7016f1
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 20:14:35 2022 -0300

    bug: fix import errors and clalpha print

commit 0df159b6d82bf62965aaf8e6ad4bdf3894834304
Author: Lint Action <[email protected]>
Date:   Sat Nov 19 03:49:02 2022 +0000

    Fix code style issues with Black

commit 8c174791d946cc47fbaceadfbf3158d592b6ce78
Author: ompro07 <[email protected]>
Date:   Sat Nov 19 00:47:20 2022 -0300

    ENH: Moved Rocket prints to rocket_prints.py

commit ee3a1dfd3ddbc14c2e92367d52b9e644a4ef3210
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 22:25:39 2022 -0300

    maint: docs

commit addadb4dff51da7fa053cb1ea8f0729493775603
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 22:24:52 2022 -0300

    enh: moved plots from Environment.py to environment_plots.py

commit c4a88c8b37e41c142c4cded32f022fa37477bc7e
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Nov 14 05:20:21 2022 +0100

    MAINT: Update flight docs

commit b49788b77cc2d090a29f91f21c428ce87ebab875
Author: Guilherme Fernandes Alves <[email protected]>
Date:   Mon Nov 14 05:19:46 2022 +0100

    MAINT: modifying default name value

commit 9ed26851afaf7957ecdafac37eb8b3ab5367b43a
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 20:50:16 2022 +0100

    ENH: adding name as a karg in Flight class

commit 1a59d14dd2a02ab720bcb4f7ab5f0a647d95b3e1
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 21:41:09 2022 -0300

    added author

commit 6de03bdd2a3b36cfba112bb9ea79814060168be8
Author: Lint Action <[email protected]>
Date:   Mon Nov 14 00:36:13 2022 +0000

    Fix code style issues with Black

commit e09d12d91f03583778378919b8bab76f6df2f8d6
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 16:02:00 2022 -0300

    enh: changed Environment infos into environment_prints.py

commit 8fc8c414507f0db3eadd3f4ef4c71ea68617555a
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 16:03:18 2022 -0300

    maint: deleted repeated lines of code

commit 0405f76034f01b5e339daa617ecf21d0b677b95f
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 13 17:51:16 2022 +0100

    Squashed commit of the following:

    commit 7925d60e2571057d822d659a9f1447f0ee650af1
    Merge: bb5d7c5 3b09de6
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Nov 13 17:45:01 2022 +0100

        Merge branch 'beta/v1.0.0' into enh/new_plots

    commit 3b09de6cd76273111cd07aab308354b06680f8c9
    Merge: ce5a730 a46aa2e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:34:53 2022 -0300

        Merge pull request #283 from RocketPy-Team/fix/cached_property_py37

        Fix: Cached Property support for Python 3.6 and 3.7

    commit a46aa2efca8294357ec16e7274e466062c08eab2
    Author: Lint Action <[email protected]>
    Date:   Sun Nov 13 02:09:36 2022 +0000

        Fix code style issues with Black

    commit b81e30f8d9c22b7f66ea5c544b6f27364525ffbe
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:09:03 2022 -0300

        ENH: Prevents cached_property decorator from being used before `__set_name__`

    commit d7a8e604530285d3f6d1c7c87ed949785829be22
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:48 2022 -0300

        FIX: import local cached_property if standard does not exist

    commit d24fce726ff77b0d00e653a651c7045f728ce4ff
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:09 2022 -0300

        ENH: created a cached_property decorator

    commit ce5a730867af84da4f026b86ecd0b1706fef9ad0
    Merge: d3a9c63 a9f9fab
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Nov 3 13:39:13 2022 +0100

        Merge remote-tracking branch 'origin/master' into develop

    commit d3a9c630d299051673a05c70e64dc9610c590437
    Merge: ba8c7bd f7c7a19
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Thu Nov 3 12:31:08 2022 +0100

        Merge pull request #263 from RocketPy-Team/enh/aero_surfaces_class

        ENH: Adding AeroSurfaces classes

    commit f7c7a193264af70a7eece112c997f377f6ec5ea9
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 08:06:04 2022 -0300

        ENH: add try: except: to roll

    commit e721530f48549747c4c2dc84fcff4f54b9127bbb
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 04:34:16 2022 -0300

        ENH: remaining TODOs

    commit edc18956999d9917527c09a0ec9bf020d252029f
    Author: MateusStano <[email protected]>
    Date:   Thu Nov 3 04:33:46 2022 -0300

        MAINT: changed back to using trapezoidal fins with Calisto

    commit 8c0fb8abff1ac266fe0190e5b4c137fffa3818b8
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:17:47 2022 +0100

        ENH: adding final plots do AeroSurfaces

    commit 01819ac22dfa3e5ae2aaf8f17110c04dff7184e6
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:17:12 2022 +0100

        MAINT: updating docstrings of AeroSurfaces

    commit 6b906d5af1f8764b42bf1cd6708fe22b5a453e1b
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Nov 2 08:13:49 2022 +0100

        ENH: updating 2D plots at Function.py

    commit 57a93e729f0f70b3f9693d9777e483c3bb66d4e4
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Nov 1 17:06:51 2022 +0100

        MAINT: removing duplicated cLift definition

        Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>

    commit 024ea0f8c57b1ef7258260a2e7671442f4d80b8f
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 10:04:13 2022 -0300

        bug: fixed setAttribute and fin area calculation

    commit fdc50855ed7132c3e07910fb9405c897c340c986
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 09:25:32 2022 -0300

        enh: add setAttribute

    commit 21407f309f5662f4cb1da36a42cfc41784e30fdd
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 09:11:39 2022 -0300

        enh: docs

    commit 3e18215774c6e2957d0c4dc822e4ef22e21e3d82
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:41:25 2022 -0300

        enh: add allInfo() method

    commit 7e4d18084e8a092844fe9be7ee5ee1f34576b0b3
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:40:58 2022 -0300

        enh: add draw() methods

    commit d898773b7e23480d757f7bcea4adb46c35cbd624
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:39:34 2022 -0300

        enh: added super Fin class and reorganized other fin classes

    commit ea45c551a0a7370e27de2567a9552beaef40a2cd
    Author: MateusStano <[email protected]>
    Date:   Tue Nov 1 05:34:48 2022 -0300

        maint: fixed wrong Yma formula in docs

    commit 2293c1c81a2bee1b91787542048374a794402df9
    Author: Gui-FernandesBR <[email protected]>
    Date:   Mon Oct 24 02:13:25 2022 +0200

        FIX: adjust variables names to surpass tests

    commit eff4dc0e0f1d7dabdbf4cc1f0b8de3c70af1448c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Mon Oct 24 01:09:21 2022 +0200

        MAINT: adapting attributes names at AeroSurfaces

    commit 9dc26a3e66667521cc60fe45085488a024a4dcf1
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 23 23:00:42 2022 +0200

        MAINT: Introducing AeroSurfaces classes

    commit ba8c7bd3e0a194064e4d588b4acdbfca1c335185
    Merge: 64e6a4d 2834b5f
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:35:21 2022 -0300

        Merge pull request #256 from RocketPy-Team/enh/swept-back-fins

        ENH: Add Sweep Length to Trapezoidal Fins

    commit 2834b5f4bccf87f709722a55d93be720f6ef6504
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:18:07 2022 -0300

        FIX: addFins returns created fin set once again

    commit af2de0ca341493b3764dbed74d44ab6e78ea21de
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 01:17:40 2022 -0300

        TST: implement tests related to trapezoidal fin sweep

    commit 909b38e339d3cf1174c19af09514824b32cccd9e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 00:21:14 2022 -0300

        ENH: add option to enter sweep angle in Rocket.addTrapezoidalFins

    commit 89c36c026a4a8423264c1e3d99b6381ef394e258
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Wed Oct 12 00:09:54 2022 -0300

        ENH: add sweep length to trapezoidal fins

    commit 64e6a4d4c6bb762f66b8166a0e3c3b2d9dd8674a
    Merge: 34744af 1845d68
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Mon Oct 10 01:24:12 2022 +0200

        Merge pull request #249 from RocketPy-Team/enh/refactor_post_process

        ENH: Introducing properties in Flight class

    commit 1845d68a042606e099c0f9e5de35de3e0558d622
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 17:06:39 2022 +0200

        BUG: fixing tests bugs related with lat/lon

    commit 7252bf0c869bde8fdf618a01501838c93766f082
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 03:07:39 2022 +0200

        MAINT: removing self._R1 attributes from udot

    commit cdb20930db66adf8c4b47ced55085364cccb584d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:35:24 2022 +0200

        MAINT: fixing tuple not callable problem

    commit 8c5f69aaeb6cb7bffc8953e0da461f8f9040c05d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:28:43 2022 +0200

        MAINT: sorting imports

    commit 6a4558600c00259016f96b6d7918c9e6e37f9c7b
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:23:40 2022 +0200

        DOC: updating postProcess bool in Flight.py

    commit a84cff0bb0589bc6cfaa1db7fd29ee13f9cf4f7d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:13:56 2022 +0200

        ENH: Allow other interpolation types in properties

    commit ff665d74faf996cfd8e0cb78d4b4d02f56e3dba9
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 02:03:05 2022 +0200

        ENH: Transform lat/lon into properties

    commit fb1a95f0d31eb21e349bb5a260999b90a12fe454
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 01:40:58 2022 +0200

        ENH: properties for the rail buttons forces

    commit 560eb0e16a5c284d4ff55cd674118bf6dc48d96a
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 01:12:01 2022 +0200

        ENH: more properties for temporary values

    commit 66566599874e2f662f9720c970900403986c5589
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Oct 9 00:19:02 2022 +0200

        ENH: more abstract acceleration properties

    commit 34744afa2d8b2681f90537c5154d5af17d59b111
    Merge: f75c7da 88e2bc2
    Author: Patrick Sampaio <[email protected]>
    Date:   Sat Oct 8 22:41:00 2022 +0200

        Merge pull request #226 from RocketPy-Team/enh/env_analysis_euroc

        WIP: ENH: Env Analysis Euroc 2022

    commit 88e2bc2234c2b5c89c4049832d7e626f9eb82fd8
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Oct 8 18:24:52 2022 +0200

        DOC: adding new notebook to docs page

    commit d4abe4b64ef39cc2501bfad61049da3037877c30
    Merge: df7f927 e8da19e
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Oct 8 18:12:19 2022 +0200

        Merge pull request #197 from RocketPy-Team/enh/env_analysis_wind_direction

        ENH: Environment Analysis - Wind Heading Profiles

    commit e8da19e3ddf7a8ec7e9d9ccd5a7a0cce9a105c40
    Merge: 9516619 df7f927
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Oct 8 17:27:03 2022 +0200

        Merge remote-tracking branch 'RocketPy-Team/enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit df7f9273f7a0e86de1ce5c5eedb85256b86b2039
    Merge: 9b9d6e6 0f070a4
    Author: Patrick Sampaio <[email protected]>
    Date:   Wed Oct 5 21:52:50 2022 +0200

        Merge pull request #244 from RocketPy-Team/enh/forecast_comparaison

        [EuroC][EnvAnalysis] add forecast comparison to env analysis

    commit 0f070a4e940d1b310bf5e640ee7ec81ddb6ab0c4
    Author: patrick <[email protected]>
    Date:   Wed Oct 5 21:52:28 2022 +0200

        Enh: Docs for new parameters

    commit 9b9d6e6ccc6bebe050e23cfa7325c8f576af37d2
    Author: patrick <[email protected]>
    Date:   Tue Oct 4 12:01:50 2022 +0200

        Enh: Executed notebook

    commit eeff1cd01983ae7281766e8826531b61f1d15ee9
    Merge: 8b737b3 2002a85
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:12:12 2022 +0200

        gMerge branch 'enh/forecast_comparaison' of https://github.com/Projeto-Jupiter/RocketPy into enh/forecast_comparaison

    commit 8b737b31cd598eb0ec08dcdad86db3d583f10d9e
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:12:07 2022 +0200

        MAINT: removed unused func

    commit 2002a8518d197436e9266519fa5feb0909f9e451
    Author: Lint Action <[email protected]>
    Date:   Thu Sep 29 19:11:05 2022 +0000

        Fix code style issues with Black

    commit 145e4c5925b92c016445fa079b62a250deeb9ef9
    Merge: 2ceca6a 4e40c42
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:10:15 2022 +0200

        Merge

    commit 2ceca6a60464402b7c40f85178aedfc596125e22
    Author: patrick <[email protected]>
    Date:   Thu Sep 29 21:09:21 2022 +0200

        Enh: Added windspeed forecast comparation plots and env configuration option

    commit 47b220c354894a095b9c0530c060861d76a050fc
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 29 04:23:57 2022 +0200

        ENH: Introducing properties in Flight class

    commit 4e40c42398d52c756acd28db19c98da29968b25a
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 16:23:42 2022 +0200

        ENH: drafting compareEnvironments method

    commit 0c63b610b044a315b173d0445843af4fc9580343
    Merge: e5c920c 8bbf782
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 15:54:09 2022 +0200

        Merge env_analysis_euroc into forecast_comparison

    commit 951661953b132f436a38a87616cfbecf01676787
    Author: Gui-FernandesBR <[email protected]>
    Date:   Tue Sep 27 15:45:24 2022 +0200

        FIX: wind heading plots title

    commit f75c7dabd98557bcd8ba31e2893fc9c337e3c92d
    Merge: be7c521 adf9414
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Sep 24 13:51:23 2022 +0200

        Merge pull request #229 from RocketPy-Team/enh/automate_dispersion

        ENH: automate dispersion inputs with csv

    commit adf9414d5ebe1f67ac4a4fcda4442e32a99f388d
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:43:52 2022 +0200

        ENH: improve utilities' tests

    commit 26078c5ea918451cd368ab39403cf5ecfdf7edd9
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Sat Sep 24 13:30:59 2022 +0200

        FIX: Revert wrong name replace

    commit e9f1e53f9493d5f71e0d4fd55f7c4b5963b1bf5e
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:29:12 2022 +0200

        ENH: adding tests

    commit 88d3a47c4f4e2fb3f920d5fa10cd07a4aea9e724
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:20:28 2022 +0200

        FIX: Refactor .csv files

    commit 567192714197e2a7488c55af364ae37ff5deb13b
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 13:20:10 2022 +0200

        ENH: Dealing with expect errors cases

    commit 576dc9d1ba21b4a21a96677e1eb4dd5b2fdac0f5
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:31:35 2022 +0200

        ENH: Remove undesired sigma plots

    commit 809e815fc5a89d09b816e874dedcae34294f1e3c
    Merge: cee6336 8bbf782
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:23:35 2022 +0200

        GIT: Merge env_analysis_euroc into wind_direction

    commit 8bbf7826d60dabecab5e20ab46d7fe0918ff6ad5
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 04:07:03 2022 +0200

        ADD: new notebook for EuroC example

    commit e3962248b1a4f426a937b143cddaeb516b714105
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 03:55:38 2022 +0200

        ENH: Modifying docs and functions attributes

    commit 6a264659c8c19b630d6c716a27c195bc7a71586e
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 03:53:38 2022 +0200

        MAINT: Replacing with .nc files that finally works

    commit 2c065fa3cb347d9dc90703c14e0166c2d53fd871
    Author: Lint Action <[email protected]>
    Date:   Fri Sep 23 23:13:44 2022 +0000

        Fix code style issues with Black

    commit dae505669facb7227985b31c33ac0cc4ce2eb0eb
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 20:13:00 2022 -0300

        fixing errors and adding Valetudo.csv

    commit 0e8bda5055c53dbf8e7f2dfdb91b00c7f8c7e5d3
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 00:17:12 2022 +0200

        DOCS: changes on links website

    commit a1873e61a666bec4f5ca44dcd11f1a4b9e6d8b73
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sat Sep 24 00:15:46 2022 +0200

        MAINT: refactor surface data file

    commit b26650ba15fdb7a0038d13de7c89d2ce8d657b0f
    Merge: 68ba507 05ff066
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 17:26:20 2022 -0300

        Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

    commit 68ba507648d5faadc44ec9bb5113631cded6f6c9
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 23 17:23:06 2022 -0300

        removing libraries

    commit cee6336353080741be082c829e39d6e104bb1ce7
    Merge: c39617c d4babbe
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 02:09:06 2022 +0200

        Merge branch 'enh/env_analysis_wind_direction' of https://github.com/rocketpy-team/rocketpy into enh/env_analysis_wind_direction

    commit c39617c6d43b0a7528cfa15f20150fe3828f3069
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 02:09:02 2022 +0200

        MAINT: REverting notebook changes

    commit d4babbe2c7f8860fb17128936facba02eb578108
    Merge: 2492116 58bd0c4
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 02:05:40 2022 +0200

        Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit 58bd0c49ea61ad96c552f8f02c31d543bcfe0bf5
    Merge: cd2ba82 92acb1f
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 01:38:06 2022 +0200

        Merge pull request #238 from RocketPy-Team/env_analysis_euroc_add_files

        ENH: Adding .nc files for EnvAnalysis at EuroC

    commit cd2ba828bb4e22490f4093f710ef2ff46fdd755b
    Merge: 7ecf051 0e57727
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Fri Sep 23 01:33:13 2022 +0200

        Merge pull request #237 from RocketPy-Team/enh/env_analysis_refactor_load_files

        ENH: Refactor Env Analysis .json conversions

    commit 0e577270054b32af6cafeae24bc27a009b6d9f33
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:19:38 2022 +0200

        MAINT: removing undesired comments

    commit e55ddec1ae5fbcea06208c18bb571fb61919e0e6
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:09:14 2022 +0200

        MAINT: Add jsonpickle as requirement

    commit c5d65176c7ed7c32a199838bef95c70dfcf517b9
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:07:01 2022 +0200

        MAINT: Improve methods docs

    commit badea3b11f0cb0fc35e9cddb6a563af29f1839b1
    Author: Gui-FernandesBR <[email protected]>
    Date:   Fri Sep 23 01:00:15 2022 +0200

        ENH: Cleaning unused codelines

    commit ce2d65c282fd3c70105507576710e860c75ec39c
    Merge: 19ebc44 cda9198
    Author: Patrick Sampaio <[email protected]>
    Date:   Thu Sep 22 19:51:41 2022 +0200

        Merge pull request #239 from RocketPy-Team/enh/jsonpickle

        Enh: Using jsonpickle to serialize EnvAnal

    commit 92acb1ff2ab3d1641d3bec05bf82584be0279629
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 16:54:41 2022 +0200

        MAINT: replacing .nc files

    commit e5c920c2d3a9a3afc9f63423f30b3a958195298b
    Author: patrick <[email protected]>
    Date:   Thu Sep 22 16:21:09 2022 +0200

        Enh: added forecast comparaison parameters to env analysis

    commit cda9198712723228437eb5661c85f5e3a24a96ab
    Author: patrick <[email protected]>
    Date:   Thu Sep 22 14:59:01 2022 +0200

        Enh: Using jsonpickle to serialize EnvAnal

    commit 2492116becc2b4e47539c038f83f3d7236532810
    Merge: c7a5123 7ecf051
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Thu Sep 22 04:23:28 2022 +0200

        Merge branch 'enh/env_analysis_euroc' into enh/env_analysis_wind_direction

    commit c7a5123374c65b1030de2b2798d36c6bb928be05
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 04:15:16 2022 +0200

        ENH: Improve wind heading profiles

    commit 514b882d8f4cec38513026b817326cbd6691cb7f
    Merge: 03b89b8 be7c521
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Sep 22 02:32:48 2022 +0200

        MAINT: refresh branch with master

    commit 4cc4fa41241ad96c83d4be0c6bf469177c311d73
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 20:54:47 2022 +0200

        ADD: EuroC Pressure Level large file

    commit 19ebc44d475c6d1f837da2f921d08b95821529ef
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 16:44:25 2022 +0200

        FIX: partially solve masks on json using nan

    commit c96db9d8195d06bb877d47dee003da287e0cf105
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:46:42 2022 +0200

        MAINT: formatting with black

    commit 65d499cdc1be9f80b8c7b6003f371100953022a5
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:38:58 2022 +0200

        ADD: single level file

    commit 506503dcfa00b6291dd19b7e1b9a1963fc983fcc
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 15:37:32 2022 +0200

        ENH: Finally reading the .json correctly

    commit 9d08619ed8cb7758469f229f4ab14ae4f3e90a1c
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 09:10:32 2022 +0200

        FIX: removing 'json' from requirements, not needed

    commit 7ecf051f05bec916f49e340a6bf43672ae8f5166
    Merge: 5e6bcc4 be7c521
    Author: Gui-FernandesBR <[email protected]>
    Date:   Wed Sep 21 08:49:09 2022 +0200

        Merge remote-tracking branch 'origin/master' into enh/env_analysis_euroc

    commit cb2c2c9d1c4aabbdf1fd2da2c5cd98a403858740
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 20 15:50:40 2022 -0300

        removed libraries

    commit b4f5560361650296f4d30d1a9b8051871c97f3a7
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Fri Sep 16 14:19:00 2022 -0300

        included xlsx

    commit 05ff0662ddda29e74b6019797ab710725d91831b
    Author: FranzYuri <[email protected]>
    Date:   Thu Sep 15 13:30:49 2022 -0300

        Update utilities.py

    commit 3c89ecf206cd11c92de4f82ee4f02d3b3f4b599f
    Author: Lint Action <[email protected]>
    Date:   Tue Sep 13 23:27:24 2022 +0000

        Fix code style issues with Black

    commit 6093de391b9d824ca79fe0b8eec97050033a958c
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:22:47 2022 -0300

        formating

    commit 3e0d8e55025f9121691e50d2c3167e5226edb28d
    Merge: bc1fb76 542cd1b
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:04:00 2022 -0300

        Merge branch 'enh/automate_dispersion' of https://github.com/RocketPy-Team/RocketPy into enh/automate_dispersion

    commit bc1fb7641fc2350eff450b7a6c64b96ddcacf443
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 20:03:32 2022 -0300

        implemented dictionary creation

    commit 542cd1b95066520c99c4ca4a18beab0e5d24e86f
    Author: Franz Masatoshi Yuri <[email protected]>
    Date:   Tue Sep 13 19:54:21 2022 -0300

        implemented dictionary creation

    commit 5e6bcc483bae7a64c1f66de588bd0dd2b3e2fb9f
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:35:50 2022 +0200

        MAINT: erasing unexpected conflicts

    commit d4e4b7663eb72c5b09468fbc68f953ff5f01796e
    Author: Lint Action <[email protected]>
    Date:   Sun Sep 11 19:28:04 2022 +0000

        Fix code style issues with Black

    commit 352073e916698c553955480ff1ead757faeb16e3
    Merge: 2161129 e8967cb
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:27:15 2022 +0200

        GIT: Merge conflicted branches

    commit 2161129a68d6346d23c4a0d3dd3f886597fbde6b
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:19:18 2022 +0200

        GIT: Trying to force merge

    commit be0d26c0601eda773e05556872df2c3760341340
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 21:14:04 2022 +0200

        MAINT: Add json to requirements

    commit e8967cb95d04966c30af5ed49387ca717ecd2adb
    Author: Lint Action <[email protected]>
    Date:   Sun Sep 11 19:09:06 2022 +0000

        Fix code style issues with Black

    commit b944ce1da9ec092c89988e48a37a0251abd71879
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 20:40:40 2022 +0200

        MAINT: Replace misplaced convertion units

    commit 7b24b80059e46f619f6203a0858e8b207ee9fc42
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 19:15:28 2022 +0200

        ENH: saving EnvAnalysisDict into .json

    commit d482d96ee076233cdd726fdc4bf47d52bf6ce7a7
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 18:21:25 2022 +0200

        MAINT: set default type json.dumps

    commit 05fb26fc92f2bd34e9c26e828a0f9cba2e15c585
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 18:20:42 2022 +0200

        ENH: allow to export EnvAnal profiles

    commit f5edf69fb190b7102787ab1663561119d01da761
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:46:53 2022 +0200

        ENH: create exportMeanProfiles core, draft

    commit 12a25922cea30ec2167d1f8eb7a1563293461ea7
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:31:04 2022 +0200

        MAINT: adjust json format more beatifuly

    commit c21899218e780e8bab80b90cc5318b318ae11fee
    Author: Gui-FernandesBR <[email protected]>
    Date:   Sun Sep 11 04:02:19 2022 +0200

        ENH: adding exportEnvironment method

    commit 03b89b84075ac18e5cc7136ed0945df678843d24
    Author: Lint Action <[email protected]>
    Date:   Tue Jun 21 11:12:03 2022 +0000

        Fix code style issues with Black

    commit b2615e3c24a3d4949d87120ea082696c2b335c95
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 08:11:39 2022 -0300

        maint: removing unused attributes

    commit f023c04565a6ff6e705171336a7cd0a48d915219
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 08:02:24 2022 -0300

        maint: typo fix on notebook

    commit 598f6a852544b664e6eefb7313926e58ca5f552d
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:58:46 2022 -0300

        enh: adding wind headin profile to our notebook

    commit 302395af294ac33adba0bcafb16d5ea62dbf95a1
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:54:34 2022 -0300

        maint: typo fix

    commit 8b68dd8ace06e7b650bd3cc111343556893368c0
    Author: Guilherme Fernandes Alves <[email protected]>
    Date:   Tue Jun 21 07:52:20 2022 -0300

        enh: adding new methods for wind heading plots

commit b01931d37f1ae426c28e92c5dc33cfbd37ba1905
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 14:34:47 2022 -0300

    maint: removed '\n' from prints

commit 42f0434eb043ce0301a66f80643f8259240043c2
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 14:25:05 2022 -0300

    maint: removed 'print' from methods names

commit 0602840b46987d7095c4f229c61232fee2bf29e6
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 13:31:00 2022 -0300

    updated docs

commit ef1dfc1c81d245d00ee58cbbb68eafff8716a615
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 13:02:56 2022 -0300

    enh: moved Flight prints to flight_prints.py

commit 09a7108346ebfb770641fde0e975c84384f12c69
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 11:53:28 2022 -0300

    enh: added prints folder

commit a10680c4e9e5f9546476fe2a0abaed64e932e871
Author: MateusStano <[email protected]>
Date:   Sun Nov 13 11:52:19 2022 -0300

    bug: fixed __init__ again

commit 3950ab8b4045f383734ee8ccd6de2c0efb79bd52
Author: MateusStano <[email protected]>
Date:   Sat Nov 12 22:35:00 2022 -0300

    bug: fized init and added underscore to classes

commit 4e70be84fd1a2bd9b3c9e6ac3ffdc54ac0d6c345
Author: MateusStano <[email protected]>
Date:   Sat Nov 12 18:45:12 2022 -0300

    enh: created files in the expected structure

commit 60ea09b14a745ace0b1fd8255e9e9eef46c1ae1e
Author: MateusStano <[email protected]>
Date:   Sat Nov 12 18:44:39 2022 -0300

    enh: create plots module

commit de6be57e78484be2ef9ef8e159d7ea090758118e
Author: MateusStano <[email protected]>
Date:   Fri Dec 23 20:41:51 2022 -0300

    bug: made notebook images link to google drive images

commit a9b859c3ecef616b7bb2abd523e6582a96eafbde
Author: MateusStano <[email protected]>
Date:   Fri Dec 23 20:39:45 2022 -0300

    tst: fixed motor grains position

commit 32702c38d6fb2fb334b36b47e2b807a6f451e1f2
Author: MateusStano <[email protected]>
Date:   Fri Dec 23 18:54:39 2022 -0300

    Update rocketpy/AeroSurfaces.py

    Co-authored-by: Giovani Hidalgo Ceotto <[email protected]>

commit b311fed4758f6c8470aa04686f5ab0938d550536
Merge: d0004aa 5b4c216
Author: MateusStano <[email protected]>
Date:   Fri Dec 23 18:50:07 2022 -0300

    Merge pull request #301 from RocketPy-Team/enh/wind_atmosphere

    ENH: implement retrieval of atmospheric data from Windy API

commit 5b4c216d4d4f536cc8246d0379df2219adefdcb7
Author: MateusStano <[email protected]>
Date:   Fri Dec 23 18:47:09 2022 -0300

    MAINT: EnvICONEU.allInfo() to EnvECMWF.allInfo()

commit 9a092e1bf2fa67b6fa7ea594f41956dd20a5e0f7
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Fri Dec 23 15:25:13 2022 -0300

    MAINT: minor Icon-EU error text adjustment

commit 374eca93b4e8d62512d1067a99f57af3ef1a3a83
Author: MateusStano <[email protected]>
Date:   Thu Dec 22 20:04:56 2022 -0300

    enh: add try except for icon-Eu outside of europe

commit 6470e8110a940503eb654e48f21551e09dbf035d
Author: MateusStano <[email protected]>
Date:   Thu Dec 22 19:16:47 2022 -0300

    tst: added coordinate system tests

commit b5e16fca869a2b42688d0dcc86c3f06be04e5b69
Author: MateusStano <[email protected]>
Date:   Thu Dec 22 18:39:53 2022 -0300

    maint: Update notebooks to new coordinate system

commit 4d8c7fdbc5248fc7e6deaa31bd6eee952c9884a6
Author: MateusStano <[email protected]>
Date:   Thu Dec 22 18:38:21 2022 -0300

    enh: remove() and pop() methods

commit 2f0df3b8d26ddb513a462da10b1ce43a4fa27ced
Author: MateusStano <[email protected]>
Date:   Mon Dec 19 23:27:14 2022 -0300

    enh: iconEu string process

commit ee15927d54b21b38a9e98cc31b63713914037df9
Author: MateusStano <[email protected]>
Date:   Mon Dec 19 23:13:47 2022 -0300

    maint: typos

commit 7eacf5d1204f77efe3f4f702c9ebdbb3b97374de
Author: MateusStano <[email protected]>
Date:   Mon Dec 19 23:08:55 2022 -0300

    enh: added windy example to notebook and improve documentation

commit fe2dd879c5e8dabcdaabedca698f6d1670f8aa54
Merge: 26e4fd4 94cd379
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Mon Nov 28 23:17:57 2022 -0300

    Merge pull request #305 from RocketPy-Team/tst/adjusting_test_distances_vs_positions

    TST: adjusting tests for new coordinate system

commit 94cd379339198b16772cbbdd059a940b319e6e86
Author: Lint Action <[email protected]>
Date:   Tue Nov 29 02:13:47 2022 +0000

    Fix code style issues with Black

commit 06344e02dd8c97467efbd23f8b4feeffe8006749
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Mon Nov 28 23:13:11 2022 -0300

    TST: add nozzlePosition argument value for consistency

commit 14932f646ce60df47c89338f745c8b19150ec058
Merge: c7bd0a6 f910f68
Author: MateusStano <[email protected]>
Date:   Mon Nov 21 15:40:49 2022 -0300

    Merge pull request #303 from RocketPy-Team/enh/rocket_prints

    ENH: Moved Rocket prints to rocket_prints.py

commit d0004aad90222de99b56ed09d36602498dc6c501
Merge: 6931005 f9871e7
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Mon Nov 21 15:40:24 2022 -0300

    Merge pull request #292 from RocketPy-Team/maint/flight-class-post-methods

    MAINT: Flight class post methods

commit f9871e7ad446028d01945aef60da4c117c536cd3
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Mon Nov 21 08:37:10 2022 -0300

    FIX: update Fourier transform normalization factor

    Co-authored-by: MateusStano <[email protected]>

commit a847089228fa2aaa77d795529093da8c8511c4f5
Author: Lint Action <[email protected]>
Date:   Sun Nov 20 10:35:51 2022 +0000

    Fix code style issues with Black

commit 1218179d165f1276d48e0947b93d9e784e28cacf
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:50:37 2022 +0100

    MAINT: removing undesired comments

commit 2199195c727e01dc4c8eee3cdd22be1619194190
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:49:50 2022 +0100

    TST: Create tests for Function class

commit 40baf0b4a6fb9d4a4f62ab039e04ef9603ec3b82
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:49:36 2022 +0100

    TST: Create test for environment analysis

commit a014dba971c53250900b53b74f2051dbee527a47
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:49:14 2022 +0100

    TST: Add additional cases to test_environment

commit d591d529282897323fa9897ccb3357e8abbfa2ea
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:48:41 2022 +0100

    MAINT: specifying input and retuning Nones

commit 65fe9d737ca0505f04e87533049e0cfa8d2155ee
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:47:45 2022 +0100

    MAINT: specifying input types in utmToGeodesic

commit ba547493b81d2c92c645a64a202998af0f7ef37e
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:46:56 2022 +0100

    BUG: fix Environment.exportEnvironment()

commit 68e97261f6b45688e1f76e18071c84a501cf77d9
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:45:02 2022 +0100

    BUG: correct wrong f string tail method

commit fd8de9714677adec0166adda43fd5952e7c6700d
Author: Gui-FernandesBR <[email protected]>
Date:   Sun Nov 20 10:44:46 2022 +0100

    TST: adding tests for aerosurfaces methods

commit 6931005a7f0a2187a205f1286cefe41a1290f360
Merge: 99d8f6c ef65372
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 22:26:48 2022 -0300

    Merge pull request #304 from RocketPy-Team/bug/fix_staticmargin_tests

    TST: Fix static margin related tests

commit f910f68a9cb5ef40bc318564a7fd6c6ab00b120a
Merge: 5420446 c7bd0a6
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 20:23:38 2022 -0300

    Merge branch 'enh/new_plots' into enh/rocket_prints

commit 542044621fada3518f4212e38dcfa4370e25e0d7
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 20:20:04 2022 -0300

    enh: added line skips

commit 5cbcffc4dca8a9955352356b0246196a533b9f38
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 20:14:35 2022 -0300

    bug: fix import errors and clalpha print

commit ef65372cfb6e94c5ba49dc0f23e5cd45dcedd417
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 17:26:33 2022 -0300

    tst: change (-1) to (np.inf) in static margin related tests

commit 6c4a306a596b98b96ab1a7772097826b77a3197d
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 17:18:10 2022 -0300

    tst: fixed acceptance tests

commit b1f90a74fa96125a662097fc8030edaa52636742
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 17:06:10 2022 -0300

    tst: fixed flight tests

commit 4a0dc3d7aedee998a202a00ae703cb71bcb993b5
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 16:17:16 2022 -0300

    tst: fixed rocket nosecone tests

commit 0b4667c022a95ac8b0468cb37e5c42a9aae207ed
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Nov 19 18:39:41 2022 +0100

    TST: Fix 80% of test_rocket tests

commit c7bd0a656a17b94397e0174338309c159c312f5e
Merge: 540be8c 1fdefd2
Author: MateusStano <[email protected]>
Date:   Sat Nov 19 14:39:05 2022 -0300

    Merge pull request #302 from RocketPy-Team/enh/rocket_plots

    ENH: Moved Rocket plots to rocket_plots.py

commit c88fb136f265d52d6d99383f6cb1dce461e269d9
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Nov 19 06:37:42 2022 +0100

    TST: solidmotor tests refactored dist vs pos

commit 7e806b2c2fc637d2c68abfda094ca432a8a77618
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Nov 19 06:32:43 2022 +0100

    TST: conftest.py refactored to dist. vs posit.

commit 26e4fd4eedb066530b1e35a2991fd0ec5b2237de
Author: Gui-FernandesBR <[email protected]>
Date:   Sat Nov 19 05:55:43 2022 +0100

    Squashed commit of the following:

    commit 99d8f6ca861a6ce5a0bb391f5397db3839b03932
    Merge: a279e4e 505c201
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Thu Nov 17 23:01:52 2022 -0300

        Merge pull request #300 from RocketPy-Team/fix/flight_bearing

        Fix: Flight Bearing

    commit 505c2012ef37d315628a8ca494fec071055cf33e
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Nov 17 21:13:52 2022 +0100

        TEST: prevent from numerical errors

    commit 00302e73cbb310b0c1dda0d7aaae9e5b2d880e29
    Author: Gui-FernandesBR <[email protected]>
    Date:   Thu Nov 17 21:12:34 2022 +0100

        MAINT: refactor bearing calculation

    commit a279e4e5a23ae7a42b164c6336287e5bdd76bfc4
    Merge: 3b09de6 634d9e6
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Tue Nov 15 11:34:02 2022 -0300

        Merge pull request #291 from RocketPy-Team/enh/funcify-and-set-discrete-based-on

        ENH: Function class - Funcify Decorator & setDiscreteBasedOnModel

    commit 634d9e68c2e8af3515d58df11eb545ec903b3705
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Tue Nov 15 11:26:09 2022 -0300

        DOC: improvements to setDiscreteBasedOnModel docstring as suggest by @MateusStano

    commit 0e253a5c1cb1935f5831904125c57a432cbc61f8
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:55:40 2022 -0300

        TST: add pytest doctest modules to GH actions

    commit df6cc36a083a3a01c48f34f962cf9ccb5e3b1206
    Merge: 68625b2 71ca519
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:50:15 2022 -0300

        Merge branch 'enh/funcify-and-set-discrete-based-on' of https://github.com/rocketpy-team/rocketpy into enh/funcify-and-set-discrete-based-on

    commit 68625b2ce9a049c11acfc95c56edc6859a619d15
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:50:05 2022 -0300

        DOC: minor typo fix

    commit 71ca519f6486db19116b1dd7f4bafa9adf67170b
    Author: Lint Action <[email protected]>
    Date:   Mon Nov 14 04:44:56 2022 +0000

        Fix code style issues with Black

    commit d6159fd89d99ebad220a91ef0b1bd28019727cf6
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:44:11 2022 -0300

        TST: add doctest to Function module

    commit b1f5e37f9dba8b522b2bf8ad3912ac199055f2a0
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:43:28 2022 -0300

        DOC: add more complete examples to docs for funcify_method

    commit 0f848e9f5ce76fc77eaf9334c680f594e4c1b48e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Mon Nov 14 01:42:54 2022 -0300

        ENH: add support for methods with arguments in funcify decorator

    commit 24178686ed578e06ffc3c500fbfed47b1d66dc5c
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 23:46:15 2022 -0300

        MAINT: replace same domain check with np.array_equal

    commit f8ed237d7717d3a2d096cd80eae74a3803a0deb1
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 23:45:13 2022 -0300

        DOC: improve Function.setDiscreteBasedOnModel doc strings with notes and example

    commit 42fb8b19666158b85bea9ce8c51b652706678d98
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 23:17:12 2022 -0300

        DOC: improve doc strings for Function.reset method

    commit 61a5a12765c3e8459bdb4ee647ba717730685b34
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 14:42:11 2022 -0300

        MAINT: avoid NaNs in Function.__truediv__

    commit 8bfd7973b6b846461309d7b334351dcfe560e195
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 14:40:31 2022 -0300

        MAINT: fix except blocks without defined exceptions

    commit a7b94a7c2e9f6e36f0489446f712381ef78d0d57
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 14:39:35 2022 -0300

        ENH: create funcify_method decorator factory

    commit 64079637172171df397fc3a3389173243c80ec5e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 14:38:50 2022 -0300

        ENH: implement Function.reset method

    commit 69ffc01cc0612f4203ed7c1a2ae84afef8d54181
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sun Nov 13 14:38:24 2022 -0300

        ENH: implement setDiscreteBasedOnModel

    commit 3b09de6cd76273111cd07aab308354b06680f8c9
    Merge: ce5a730 a46aa2e
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:34:53 2022 -0300

        Merge pull request #283 from RocketPy-Team/fix/cached_property_py37

        Fix: Cached Property support for Python 3.6 and 3.7

    commit a46aa2efca8294357ec16e7274e466062c08eab2
    Author: Lint Action <[email protected]>
    Date:   Sun Nov 13 02:09:36 2022 +0000

        Fix code style issues with Black

    commit b81e30f8d9c22b7f66ea5c544b6f27364525ffbe
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 23:09:03 2022 -0300

        ENH: Prevents cached_property decorator from being used before `__set_name__`

    commit d7a8e604530285d3f6d1c7c87ed949785829be22
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:48 2022 -0300

        FIX: import local cached_property if standard does not exist

    commit d24fce726ff77b0d00e653a651c7045f728ce4ff
    Author: Giovani Hidalgo Ceotto <[email protected]>
    Date:   Sat Nov 12 00:43:09 2022 -0300

        ENH: created a cached_property decorator

commit a6b0ed1365ab88dd65de35341e0334b473a86085
Author: Lint Action <[email protected]>
Date:   Sat Nov 19 03:49:02 2022 +0000

    Fix code style issues with Black

commit 6990d64ff7bc8b102e5d38be07dfc6f25cde04d1
Author: ompro07 <[email protected]>
Date:   Sat Nov 19 00:47:20 2022 -0300

    ENH: Moved Rocket prints to rocket_prints.py

commit 1fdefd2443ee4fd9e592c34f3d79b1529694f7fd
Author: Lint Action <[email protected]>
Date:   Sat Nov 19 02:32:53 2022 +0000

    Fix code style issues with Black

commit a9c62c237e9726d55ccb912a6a7961db56f258e3
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 23:32:10 2022 -0300

    enh: new methods added to rocket_plots.py

commit 773903228456223d715241e36bdcbca7552554bd
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:43:58 2022 -0300

    fix attribute reference

commit b1b380619a3044abfea4497b33627edfbbeb433d
Merge: 2d49f97 72499cc
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:30:14 2022 -0300

    Merge branch 'enh/rocket_plots' of https://github.com/RocketPy-Team/RocketPy into enh/rocket_plots

commit 2d49f97c52ce791d6c605283f055090e57fbc4c4
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:30:03 2022 -0300

    Fix typo

commit 72499cce2b3519cf1942d666cd979a99539a4cc8
Author: Lint Action <[email protected]>
Date:   Fri Nov 18 03:16:02 2022 +0000

    Fix code style issues with Black

commit 0fe4da6a688627fdec28b71da9c4c06ce07e3145
Author: ompro07 <[email protected]>
Date:   Fri Nov 18 00:11:35 2022 -0300

    ENH: Moved Rocket plots to rocket_plots.py

commit 3f8c938b7de67718e7cd47a2e9e94d6e83ada9c1
Merge: 351b985 99d8f6c
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Fri Nov 18 00:07:45 2022 -0300

    Merge branch 'develop' into maint/flight-class-post-methods

commit 351b9854e6a8ae61f28352667300108285c461de
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Thu Nov 17 23:52:03 2022 -0300

    TST: delete temp test files after testing is done

commit ba8b91d34830a647939a674ed411883d3d3f80b5
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Thu Nov 17 23:50:49 2022 -0300

    MAINT: replace _frequency_analysis with toFrequencyDomain

commit 23f75609cd31cab1c0d54d7aae6f9743a9468ecc
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Thu Nov 17 23:50:04 2022 -0300

    ENH: implement toFrequencyDomain

commit 99d8f6ca861a6ce5a0bb391f5397db3839b03932
Merge: a279e4e 505c201
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Thu Nov 17 23:01:52 2022 -0300

    Merge pull request #300 from RocketPy-Team/fix/flight_bearing

    Fix: Flight Bearing

commit 7a371eba907ba9a7b9f5ac8c1ad966ea4d3e4af6
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Mon Oct 17 00:41:54 2022 -0300

    ENH: implement retrieval of atmospheric data from Windy API

commit 505c2012ef37d315628a8ca494fec071055cf33e
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Nov 17 21:13:52 2022 +0100

    TEST: prevent from numerical errors

commit 00302e73cbb310b0c1dda0d7aaae9e5b2d880e29
Author: Gui-FernandesBR <[email protected]>
Date:   Thu Nov 17 21:12:34 2022 +0100

    MAINT: refactor bearing calculation

commit 412ea15c125c6d03944618b9bb9b5d09f1142b20
Author: MateusStano <[email protected]>
Date:   Thu Nov 17 03:36:42 2022 -0300

    bug: fixed missing cpPosition initialization

commit 3f0c7df3a6a9a5e06cb0c5084f6bf09e73fddaa0
Author: MateusStano <[email protected]>
Date:   Wed Nov 16 21:30:09 2022 -0300

    initial changes to parachute

commit cf5028ae36c362bb4df711852072502c6b8deefd
Author: Lint Action <[email protected]>
Date:   Thu Nov 17 00:23:15 2022 +0000

    Fix code style issues with Black

commit f112a3b77e651f33367ebc56e1753b8e6ec24f70
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 21:22:25 2022 -0300

    MAINT: minor improvements to frequency analysis

commit 3543ec806650ce773e5f4014f9e6a063fe4514d8
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 20:33:57 2022 -0300

    ENH: improve extrapolation option for each funcified method

commit da024b60e89adcab2027a4ba5467e68796b4d6cd
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:28:40 2022 -0300

    DOC: first update to Getting Started Notebook with new coordinate systems

commit 3feeb3b44fec9d89741c948a9e7e5654628068e4
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:28:14 2022 -0300

    ENH: update Flight class to deal with new Rocket coordinate system

commit 967120d0d15926705b9adc7c19d7f7441b50ceba
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:27:46 2022 -0300

    ENH: implement addMotor and coordinate system orientation

commit de215c5108e07aec05dce0d6b0bde0aa7854c1f5
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:25:10 2022 -0300

    ENH: create AeroSurfaces class to hold aerodynamic surfaces and their positions

commit c366b569833b3de66258bef0680a3a19084aae1e
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:23:26 2022 -0300

    MAINT: Better define aerodynamic surfaces local coordinate systems

commit 2a99467ea2475ec1e10fea5f312c9e253836814d
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:22:26 2022 -0300

    MAINT: Better define motor's coordinate systems

commit e5a91c76ca44713b8ffcf742c1b7a3cd23e6a271
Author: Giovani Hidalgo Ceotto <[email protected]>
Date:   Wed Nov 16 02:22:05 2022 -0300

    ENH: Create EmptyMotor class

commit 4203d82eea2badb4b27861b61ef70a9161138a52
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:41:23 2022 +0100

    ADD: new compare flights notebook

commit 7b81c0e55facd2d348c6b4d04e732bb9a32d0313
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:39:08 2022 +0100

    MAINT: refactor max_time variable

commit 291d479124bba13599040cd7a673d41cf3f8f721
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:35:12 2022 +0100

    BUG: starting with null values of retrieved accel

commit a73f2d48f3a56612f6c89602f560b5b3f06399ea
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:34:33 2022 +0100

    GIT: giving up of frequency comparison

commit d8c7b89b1cdebab06316df8744599ebf1e937cbb
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:34:05 2022 +0100

    FIX: debugging grids and legends

commit 8760bb1cfea07eec664a7a5aed80ac82f6095510
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 04:32:45 2022 +0100

    ENH: add temporary time and solutionArray propert

commit 4eef4fc71a4d27ada38d9d27572c84e2c734af29
Author: Gui-FernandesBR <[email protected]>
Date:   Wed Nov 16 03:40:09 2022 +0100

    Squashed commit of the following:

    commit 540be8c4ea9b153cac35e10cd8d68209341668a4
    Merge: 6faef4c 14ee975
    Author: MateusStano <[email protected]>
    Date:   Mon Nov 14 14:50:33 2022 -0300

        Merge pull request #296 from RocketPy-Team/enh/environment_plots

        ENH: Moved Environment pl…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement New feature or request, including adjustments in current codes Flight Flight Class related features Refactor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

What if we rearrange postProcess method?
2 participants