2019 Wuhan International Tournament

The 2019 Wuhan International Tournament (Chinese: 2019年武汉国际女足锦标赛) was an invitational women's football tournament held in Wuhan, Hubei, China.

2019 Wuhan International Tournament
Tournament details
Host countryChina
CityWuhan, Hubei
Dates4–7 April 2019
Teams4 (from 3 confederations)
Venue(s)1 (in 1 host city)
Final positions
Champions China PR (1st title)
Runners-up Cameroon
Third place Russia
Fourth place Croatia
Tournament statistics
Matches played4
Goals scored12 (3 per match)
Top scorer(s) Wang Shanshan (3 goals)

Teams

In March 2019, the participants were announced.[1]

Team FIFA Rankings[2]
(December 2018)
 China PR (host)
15
 Russia
25
 Cameroon
46
 Croatia
51

Venues

Matches

All times are local (UTC+08:00).

Bracket

 
Semi-finalsFinal
 
      
 
4 April - Wuhan
 
 
 Cameroon2
 
7 April - Wuhan
 
 Croatia1
 
 Cameroon0
 
4 April - Wuhan
 
 China PR1
 
 China PR4
 
 
 Russia1
 
Third-place playoff
 
 
7 April - Wuhan
 
 
 Croatia0
 
 
 Russia3

Semi-finals

Cameroon 2–1 Croatia
Report
China PR 4–1 Russia
Report

Third-place playoff

Croatia 0–3 Russia
Report
Referee: Chang Xinxin (China)

Final

Cameroon 0–1 China PR
Report

Goalscorers

There have been 12 goals scored in 4 matches, for an average of 3 goals per match.

3 goals

2 goals

1 goal

gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.