Ian Borchard

Ian Alfred Borchard (born 5 August 1957) is a former Australian rules footballer who played with Richmond in the Victorian Football League (VFL) during the 1970s. He also played for West Adelaide in the South Australian National Football League (SANFL).

Ian Borchard
Personal information
Full name Ian Alfred Borchard
Date of birth (1957-08-05) 5 August 1957
Place of birth Swan Hill, Victoria
Original team(s) Swan Hill
Height 177 cm (5 ft 10 in)
Weight 76 kg (168 lb)
Position(s) Ruck-rover
Playing career1
Years Club Games (Goals)
1976, 1978 Richmond (VFL) 5 (2)
1978 South Fremantle (WAFL) 1 (0)
1979–86 West Adelaide (SANFL) 145 (80)
Coaching career
Years Club Games (W–L–D)
2001–02 West Adelaide (SANFL) 42 (21–21–0)
1 Playing statistics correct to the end of 1986.
Career highlights
Sources: AFL Tables, AustralianFootball.com

Playing career

VFL

Borchard, originally from Swan Hill in Victoria, spent three seasons at Richmond. In the last of those years, 1978, Borchard was cleared to play for South Fremantle in the Western Australian Football League (WAFL) midway through the season, but only lasted one week before he returned to Richmond on 29 June.[1]

SANFL

He joined West Adelaide in 1979 and the following season won the first of his two Best & Fairest awards, the other coming in 1982. In 1981, Wests coach Neil Kerley appointed Borchard as captain West Adelaide, with the highlight being the 1983 premiership where he won the Jack Oatey Medal as the player of the match in the Grand Final win over Sturt at Football Park in front of 47,129 fans. Borchard remained captain of The Bloods until the end of the 1985 season when they finished in third place, beaten in the Preliminary final by North Adelaide.

After the premiership win in 1983, Borchard began to be plagued by injury, only playing in 14 games in 1984, 17 in 1985 when West reached the preliminary final. In 1986, Bloods coach John Cahill replaced Borchard as club captain with Mark Mickan, with injury restricting him to just 3 games for the year. Following the 1986 season, Borchard retired from league football.

Coaching

In late 2000 Ian Borchard was appointed coach of West Adelaide. He coached the Bloods to fifth place and the SANFL finals in both 2001 and 2002. After laying the groundwork for a good side, Borchard was replaced as coach of West Adelaide from the 2003 season by former Adelaide Crows and West Adelaide player Shaun Rehn, who in his first season coached the Bloods to their first SANFL Grand Final appearance since 1991.

gollark: Yes.
gollark: More great "WHY WOULD YOU DO THIS":```go// A Context carries a deadline, cancelation signal, and request-scoped values// across API boundaries. Its methods are safe for simultaneous use by multiple// goroutines.type Context interface { // Done returns a channel that is closed when this Context is canceled // or times out. Done() <-chan struct{} // Err indicates why this context was canceled, after the Done channel // is closed. Err() error // Deadline returns the time when this Context will be canceled, if any. Deadline() (deadline time.Time, ok bool) // Value returns the value associated with key or nil if none. Value(key interface{}) interface{}}```
gollark: Basically, modems/rednet but more flexible, cross-server, and without actual modems.
gollark: It's a websocket-based inter-computer cross-server message relay.
gollark: ```rust#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}#[derive(Serialize, Deserialize, Debug)]#[serde(tag = "type")]enum MessageFromClient { #[serde(rename = "open")] Open { channel: skynet::Channel }, #[serde(rename = "close")] Close { channel: skynet::Channel }, #[serde(rename = "message")] Message(skynet::RawMsg)}#[derive(Serialize)]#[serde(tag = "type")]enum MessageToClient<'a> { #[serde(rename = "message")] Message(skynet::Msg), #[serde(rename = "channels")] OpenChannels { channels: &'a HashSet<skynet::Channel> }}```WIP Rust notreallyconversion of the Skynet protocol.

References

  1. Poat, Peter (1978). 1978 Football Register. Westralian Publishers and Associates. p. 149.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.