-
Notifications
You must be signed in to change notification settings - Fork 79
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
Notebook Crashes When running some cells #260
Comments
Thank you for the report, Would you mind trying what's here: Section “Python crashes when I try to reproduce plots in the documentation” Please report here whether it solves your issue. |
Little addition wrt to the documentation, it seems that, for maps only, I need to explicitly ask for the fig now, as follows: from cartes.crs import Lambert93
from traffic.data import airports
with plt.style.context("traffic"):
fig, ax = plt.subplots(subplot_kw=dict(projection=Lambert93()))
airports["LFPO"].plot(ax, footprint=False, runways=dict(linewidth=1))
for flight in subset:
flight.plot(ax, linewidth=2)
ax.set_title("Landing trajectories at Paris–Orly airport")
fig I will edit the documentation accordingly |
Thank you for the help. Furthermore, adding the |
@herozero777 About item 2, I opened an issue: ipython/matplotlib-inline#22 |
I was following the "Getting Started" page on traffic documentation website. I downloaded the quickstart.ipynb to experiment with the library as well. When I get to the cell with the code:
The notebook crashes. Also the visualization on the Getting started page: https://traffic-viz.github.io/quickstart.html#declarative-trajectory-processing is missing well.
To reproduce the issue
Follow the quickstart.ipynb which can be downloaded from Getting Started page.
Versions I'm using
Python==3.10.6
traffic==2.8.0
The text was updated successfully, but these errors were encountered: