Crézancy-en-Sancerre

Crézancy-en-Sancerre is a commune in the Cher department in the Centre-Val de Loire region of France.

Crézancy-en-Sancerre
Coat of arms
Location of Crézancy-en-Sancerre
Crézancy-en-Sancerre
Crézancy-en-Sancerre
Coordinates: 47°18′21″N 2°44′41″E
CountryFrance
RegionCentre-Val de Loire
DepartmentCher
ArrondissementBourges
CantonSancerre
IntercommunalityCC Pays Fort Sancerrois Val de Loire
Government
  Mayor (20082014) Josette Davril
Area
1
18.92 km2 (7.31 sq mi)
Population
 (2017-01-01)[1]
486
  Density26/km2 (67/sq mi)
Time zoneUTC+01:00 (CET)
  Summer (DST)UTC+02:00 (CEST)
INSEE/Postal code
18079 /18300
Elevation208–377 m (682–1,237 ft)
(avg. 284 m or 932 ft)
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries.

Geography

A farming and winegrowing village situated some 22 miles (35 km) northeast of Bourges at the junction of the D22 with the D86 roads. The commune is one of only a few that grow grapes for Sancerre AOC wines.

Population

Historical population
YearPop.±%
1962489    
1968562+14.9%
1975540−3.9%
1982511−5.4%
1990510−0.2%
1999500−2.0%
2008497−0.6%

Sights

  • The church of St. Pierre, dating from the twelfth century.
  • The feudal motte in Chaume woods.
  • Medieval manorhouses at Reugny, Champtin and Vauvredon.
  • A windmill.
gollark: Now with optimization settings!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: ^
gollark: 937 bytes.
gollark: The WHY compiler is *very* small.

See also

References

  1. "Populations légales 2017". INSEE. Retrieved 6 January 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.