parser.add_argument("--dt",type=str,default=None,help="Timestep")#TODO output time? for now I stay strict to model timestep and assume mean aircraft location ...
parser.add_argument("--source_component",type=str,default="atmo_output",help="component name of the source component")
parser.add_argument("--source_grid",type=str,default="icon_atmos_grid",help="grid name of the source grid")
lons=np.deg2rad(track.lon.values)# TODO knowing the model timesteps I can in principle calculate the mean locations in advance and form a reduced grid, maybe pass as an argument?
# Also, knowing the model domain I can exclude the track points outside the domain in advance?? probably not worth the complication
# alts = track.alt.values # need to think about this