Hertford Castle Weir is a weir located in Hertford near to Hertford Castle and next to Hertford Theatre.
Its function is to connect the upper River Lea to the canalised section that runs through Hertfordshire, North London into the River Thames. The section of the river above Castle Weir is not deep enough to support barges or narrow boats, but is navigable by row boats, canoes and kayaks.
The weir marks the start of the River Lee Navigation. It is overlooked by a function room at the Hertford Theater (previously called Castle Hall).
Contents
1Access
2Angling
3Weir setup
4Whitewater use
5See also
Access
Just off Mill Bridge (B158 road) in the centre of Hertford town, beside the Castle Hall.
A small bridge runs from Mill Bridge over the secondary drop to a car park. A step upstream from this bridge allows access to the top of the weir.
Angling
Angling in the weir pool is possible, but tricky due to pontoon access at the weir pool. Anglers often stand on the stepped weir drops, but this is discouraged due to the damage that is sustained to the weir itself.
Weir setup
Castle Weir has 3 sections:
A vertical 70 cm drop onto a second 30 cm concrete block, situated in a stilling pool. The stilling pool overflows into a tunnel which leads under the road. The 70 cm drop has two electric gates which move vertically in high flows.
5 padlocked sluice gates. Rarely used, as these are manually controlled by British Waterways.
Stepped drop for high flows.
Whitewater use
Kayakers and canoeists regularly use the weir for practicing whitewater skills and playboating.
Main drop - Can be run straight or sideways.
Main drop sluice - Creates a jet which can tail squirts can be performed on. At high flows it makes the weir harder to paddle in, and can cause pinning in the stopper, river right.
Stilling pool drop - Side-surfing is possible at most flows. Cartwheeling is possible when the pool level raises. Normally about 70 cm deep.
Side sluice - A wave and stopper forms here, depending on weir pool levels and amount of water coming through the sluice. This water has been constricted by kayakers using concrete blocks to form different features. It can vary from 30–50 cm high wave which can be carved in front-surf, to a shallow retentive pour-over, which is side-surf able.
Stepped drop - Can be run when river is in spate, very likely to do damage to the weir or your boat when the water flowing over it is less than 3 cm in depth. A small wave and stopper forms at the bottom which can be played on, however, it is very shallow.
See also
Weirs on the River Lea
River Lea
River Lee Navigation
v
t
e
Locks and Weirs on the River Lea, England
Counties
Bedfordshire
Hertfordshire
Essex
Greater London
Locks
Hertford Lock
Ware Lock
Hardmead Lock
Stanstead Lock
Feildes Weir Lock
Dobbs Weir Lock
Carthagena Lock
Aqueduct Lock
Cheshunt Lock
Waltham Common Lock
Waltham Town Lock
Rammey Marsh Lock
Enfield Lock
Ponder's End Lock
Pickett's Lock
Stonebridge Lock
Tottenham Lock
Pond Lane Flood Gates
Old Ford Lock
Bow Locks
Weirs
Horns Mill Weir
Hertford Castle Weir
Hartham Weir
Ware Weir
Feildes Weir
Dobbs Weir
Carthagena Weir
Kings Weir
Newmans Weir
Middlesex Filter Beds Weir
Hertford Union Canal (branch from Hackney Cut)
Hertford Union Bottom Lock No. 3
Hertford Union Middle Lock No. 2
Hertford Union Top Lock No. 1
Regent's Canal
Limehouse Cut (branch, at Bow Locks)
Bromley Stop Lock
Britannia Stop Lock
Limehouse Basin
Bow Back Rivers (branches of the Old River Lea)
Three Mills Lock
City Mill Lock
Carpenter's Road Lock (Under restoration, est. completion March 2017)
Marshgate Lane Lock (defunct)
Three Mills Wall River Weir (These rivers form the waterways within the 2012 Olympic Park - they flow into Bow Creek)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm trying to build a Chat app UI, the idea of the Layout was pretty simple: When the input bar is focused, keyboard show up and "push" up the chat bar, as it's a grid, the ListView will resize to fit the screen: I update the input bar's margin to "push" it up: NSValue result = (NSValue)args.Notification.UserInfo.ObjectForKey(new NSString(UIKeyboard.FrameEndUserInfoKey)); CGSize keyboardSize = result.RectangleFValue.Size; if (Element != null){ Element.Margin = new Thickness(0, 0, 0,keyboardSize.Height); //push the entry up to keyboard height when keyboard is activated } And this is ...
MGP Nordic Also known as Melodi Grand Prix Nordic Genre Song contest Created by DR Country of origin Denmark No. of episodes 5 contests Production Production location(s) Scandinavia Running time Various Distributor Nordvision Release Original network DR, NRK, SVT (2002–09) Yle Fem (2007–09) Original release 27 April 2002 ( 2002-04-27 ) – 28 November 2009 ( 2009-11-28 ) Chronology Preceded by De unges Melodi Grand Prix Related shows Dansk Melodi Grand Prix Junior Eurovision Song Contest MGP Nordic ( Melodi Grand Prix Nordic ) was a Scandinavian song contest for children aged 8 to 15, organized by DR, NRK, SVT and Yle through Yle Fem. It originated as a 2000 spin-off of Denmark's Eurovision Song Contest national final known as De unges Melodi Grand Prix , but expanded to become MGP Nordic in 2002 with the addition of Norway and Sweden. Contents 1 History 2 National selections 3 List of contests 4 ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
2
Can someone explain to me how to implement the post-redirect-get pattern in Spring WebFlux and Thymeleaf? What subscribes on the database save method? @GetMapping("/register") public String showRegisterForm(Model model) { model.addAttribute("user", new User()); return "register"; } @PostMapping public String processRegisterForm(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "register"; } else { userRepository.save(user); //what subscribes on this? //how to redirect on e.g. "/login"? ...