Castle Hall Academy

Castle Hall Academy (formerly Castle Hall School) is a mixed 1116 Academy in Mirfield, West Yorkshire, England. The school has been awarded specialist Language College status. 174 pupils at age 11 are taken in annually. Preference is given to those who live within the catchment area.

Castle Hall Academy
Address
Richard Thorpe Avenue

, ,
WF14 9PH

Coordinates53.68005°N 1.68870°W / 53.68005; -1.68870
Information
TypeAcademy
MottoFortunae via virtus
Established1903
Local authorityKirklees
SpecialistLanguage College
Head teacherPaul Brook
Age11 to 16
Houses4 Alric (Red), Gascoigne (Green), Ismay (Blue), and Neville (Yellow)
Colour(s)Navy blue, grey, white, black, yellow, green and red
Websitehttp://www.castlehall.com/

Possible school closure plans overturned in January 2010

In September 2008, the local authority decided on a plan to overhaul education in North Kirklees.[1] This plan would see the permanent closure of the school and the remainder of its pupils merging with pupils at the Mirfield Free Grammar.

An action group made up of parents and local residents calling itself R.E.A.C.H. (Retain Education at Castle Hall) was quickly formed to campaign against the controversial proposal. Groups dedicated to saving the school also exist on the social networking sites Facebook and Twitter. At a meeting in Dewsbury Town Hall on 1 April 2009, the decision to close was delayed and referred back to Kirklees Council's Cabinet for review.[2]

On 19 June 2009 Kirklees Council are expected to publish the statutory notice of closure for Castle Hall and the statutory notice of proposal (planning) for the expansion of Mirfield Free Grammar School. Protesters have planned a large public demonstration to take place around the school on that date.[3][4]

These plans were overturned on 12 January 2010 by Schools Adjudicator, Canon Richard Lindley. The school is no longer due to close.

The GCSE results of 2009 were the best in the school's recent history with 73% of pupils achieving at least 5 A*-C. This ranked Castle Hall as the best non-selective state school in Kirklees.

The school is a popular and oversubscribed academy.

gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.

References

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