-
Notifications
You must be signed in to change notification settings - Fork 50
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: Rework visualization module #513
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #513 +/- ##
==========================================
+ Coverage 92.88% 93.05% +0.17%
==========================================
Files 40 34 -6
Lines 2136 2074 -62
Branches 395 388 -7
==========================================
- Hits 1984 1930 -54
+ Misses 133 130 -3
+ Partials 19 14 -5
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look fine to me; thanks for the cleanup and change!
I would request another reviewer for this large PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great effort! I think this cleanup makes the plotting a lot nicer!
This one turned out to be bigger than expected.
closes #506
My first motivation was to remove the
positionfixes.plot
override.But I realized that with all these plot functions cascading calls to each other, it would be much easier to put them into one function that does everything in one go. So I created
ti.plot
.With only one function to remember, it is also easier to use trackintel.
The rest of the module was so small that I decided to put them in one file. The resulting file is still quite small at 465 LOC.
So a big part of this PR is just collecting and cleaning things up.
But I know I did a lot in one go, so if you want me to split up some changes or decide to do something else, let me know :)