Group Abstract Group Abstract

Message Boards Message Boards

Plotting multiple FlightData items on one map

Posted 1 year ago

How do I get this:

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

onto a SINGLE GeoGraphics map?

POSTED BY: Steven Buehler
2 Replies

Simpler

paths = DeleteMissing@flightpaths;
POSTED BY: Rohit Namjoshi

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}]
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard