Support threshold coordinate projection via compute_xy() interface#326
Support threshold coordinate projection via compute_xy() interface#326sfo wants to merge 1 commit intoxoolive:masterfrom
Conversation
… coordinates via .compute_xy()
|
Thank you for the update. Indeed, that structure is not great now 😢 It's not very natural to model the whole list of runways with a dataframe because the thresholds come by two (and you need the two thresholds to plot the whole runway for instance) The This is obviously not great, but I never took time to think about how to improve it.
Honestly I don't know... So I am not really enthusiast about merging this as is, because even if "of course it wouldn't really hurt", it would be just a "band-aid on a wooden leg" (French colloquialism 🤷) I would be more than happy to convert that into an issue and think about how to improve that part of the library though! What do you think? |
This PR intends to add support for projecting threshold coordinates using the common
compute_xy()interface.However, currently the
RunwayAirport()constructor just swallows the enriched DataFrame passed to it at the end ofcompute_xy().Consequently, the following code returns
None:The DataFrame containing the projection can be accessed via
I am currently not sure how to propagate the results of the projection back up the runway/threshold data stream.