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

Documentation Plotly #423

Closed
xoolive opened this issue Apr 23, 2024 · 0 comments
Closed

Documentation Plotly #423

xoolive opened this issue Apr 23, 2024 · 0 comments
Assignees

Comments

@xoolive
Copy link
Owner

xoolive commented Apr 23, 2024

Salut @figuetbe

J'ai des petits soucis avec la doc Plotly, quand on ajoute deux objets pour les mêmes données dans la même vue.

D'abord ici:

Capture d’écran 2024-04-23 à 23 02 42

et aussi même genre de problème avec cet exemple où j'aimerais avoir les points par callsign de la même couleur que la trajectoire (et avec un alpha différent avant et après le timestamp du point ce serait encore mieux).

Est-ce que tu peux voir ce que tu peux faire?

from traffic.data import airports
from traffic.data.samples import quickstart

subset = quickstart[["TVF22LK", "EJU53MF", "TVF51HP", "TVF78YY", "VLG8030"]]
subset = subset.resample("10s").eval()
assert subset is not None


fig = subset.scatter_mapbox(
    color="callsign",
    hover_data="altitude",
    animation_frame="timestamp",
    center=airports["LFPO"].latlon_dict,
)
fig.add_trace(subset.Scattermapbox(mode="lines"))

fig.update_layout(margin=dict(l=0, r=0, t=0, b=0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants