Store Heddinge

Store Heddinge is a Danish town in Region Sjælland. It is the administrative seat of Stevns Municipality, and has a population of 3,430 (1 January 2020).[1]

Store Heddinge
Seal
Coat of arms
Store Heddinge
Location in Denmark
Coordinates: 55.30893°N 12.38726°E / 55.30893; 12.38726
CountryDenmark
RegionZealand (Sjælland)
MunicipalityStevns
Government
  MayorPoul Arne Nielsen
Area
  Urban
2.25 km2 (0.87 sq mi)
  Municipality250.19 km2 (96.60 sq mi)
Population
 (2020)
  Urban
3,430
  Urban density1,500/km2 (3,900/sq mi)
Time zoneUTC+1 (Central Europe Time)
  Summer (DST)UTC+2

Geography

The town is situated in the eastern side of Denmark, on the Stevns Peninsula.

History

The town came into existence during the 13th century, and Saint Katharina Church (Sct. Katharina kirke) is also from that time. The town received privileged status as a merchant town in 1441. A Latin preparatory school was founded in the town in 1620, but was closed down in 1739.

The assembly house (Danish, tinghuset) in Store Heddinge was built around 1838 on the newly built Nytorv plaza as a combination town hall, assembly hall, and jail. It was built by architect Jørgen Hansen Koch, who was Director for the Royal Danish Academy of Art (Det Kongelige Danske Kunstakademi).

The water tower is from 1912 and is made of limestone, from nearby Stevns Klint, and red brick.

Photogallery

Notable people

Jutta Bojsen-Møller
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

Media related to Store Heddinge at Wikimedia Commons

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