I am trying to extract the following information:
On the page
http://epl.squawka.com/stoke-city-vs-arsenal/01-03-2014/english-barclays-premier-league/matches
pressing the red "full stats" button opens a menu that includes (on the left hand side) the button "Crosses". This opens, on the right side of the screen, an image of a soccer pitch with 19 arrows on it, these are the cross passes by Stoke in the Stoke-Arsenal match. They are color coded, red=not completed, green = completed, yellow = key passes. When you click on an arrow, it will tell you who gave the pass and in what minute of the game. Also, the arrows show where the player was standing when he gave the pass and where the player was who was being passed to.
I would like to be able to scrape this page such that I get a table with the columns:
team; name-of-sender; location-of-sender; location-of-receiver; minute; color-of-arrow
This is the set of cross passes made by Stoke, I also would like to automatically repeat this for Arsenal (hence, the column "club" in the table above).
Although I have scraped webpages in the past, these have all been static fairly straighforward pages, and I am totally dumbfounded as to how to scrape the info from this page. I would really appreciate help as to how to scrape the data I just described. I am well-versed in R, so I would especially appreciate code that would help me achieve this in R, but I am also quite appreciative of help that uses other language or software.
Thank you, Peter