I have 2 different dataframes. One looks like this
arriv depart stop_id
12:35 12:40  a2b
23:00 01:00  a1e
Ther other looks like this:
stop_id  lon   lat   name
a1e      12.1  13.2  Old Church
a2b      12.2  13.1  Postal Service
now I would like to create a dataframe that looks like this with a subset of the data:
arriv depart stop_id  lon   lat   name
12:35 12:40  a2b      12.2  13.1  Postal Service
23:00 01:00  a1e      12.1  13.2  Old Church
basicly merging the two dataframes, but with loads of double entries for the list of stops. What would be a good way to do this?
 
     
    