Message Boards Message Boards

Plotting multiple FlightData items on one map

Posted 8 months ago

How do I get this:

FlightData[Entity["Airport", "KMCO"] -> All, "FlightPath", Today]

onto a SINGLE GeoGraphics map?

POSTED BY: Steven Buehler
2 Replies

GeoGraphics can handle multiples of clean GeoPosition

flightpaths = 
    FlightData[Entity["Airport", "KMCO"] -> All, "FlightPath", Today];
paths = DeleteCases[Values[flightpaths], _Missing];
GeoGraphics[{Red, Arrowheads[{{.02, 0.99}}], Arrow /@ paths}]
Posted 7 months ago

Simpler

paths = DeleteMissing@flightpaths;
POSTED BY: Rohit Namjoshi
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract