Lignères

Lignères is a commune in the Orne department in north-western France.

Lignères
Location of Lignères
Lignères
Lignères
Coordinates: 48°44′09″N 0°18′40″E
CountryFrance
RegionNormandy
DepartmentOrne
ArrondissementMortagne-au-Perche
CantonRai
IntercommunalityVallées d'Auge et du Merlerault
Government
  Mayor (2014-2020) Daniel Cotrel-Lassaussaye
Area
1
5.37 km2 (2.07 sq mi)
Population
 (2017-01-01)[1]
28
  Density5.2/km2 (14/sq mi)
Demonym(s)Lignérois, Lignéroises
Time zoneUTC+01:00 (CET)
  Summer (DST)UTC+02:00 (CEST)
INSEE/Postal code
61225 /61240
Elevation203–285 m (666–935 ft)
(avg. 290 m or 950 ft)
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries.

Population

Historical population
YearPop.±%
200435    
200633−5.7%
200731−6.1%
200829−6.5%
200927−6.9%
201026−3.7%
201125−3.8%
201226+4.0%
201328+7.7%
201429+3.6%
201528−3.4%
201628+0.0%
201728+0.0%

Politics

Presidential Elections Second Round:[2]

ElectionWinning CandidateParty%
2017 Emmanuel Macron EM 80.65
2012 Nicolas Sarkozy UMP 84.38
2007 Nicolas Sarkozy UMP 77.78
2002 Jacques Chirac RPR 71.43
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


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