Rocourt-Saint-Martin
Rocourt-Saint-Martin is a commune in the Aisne department in Hauts-de-France in northern France.
Rocourt-Saint-Martin | |
---|---|
A general view of Rocourt-Saint-Martin | |
Location of Rocourt-Saint-Martin | |
Rocourt-Saint-Martin Rocourt-Saint-Martin | |
Coordinates: 49°09′09″N 3°23′17″E | |
Country | France |
Region | Hauts-de-France |
Department | Aisne |
Arrondissement | Château-Thierry |
Canton | Château-Thierry |
Intercommunality | Région de Château Thierry |
Government | |
• Mayor (2008–2014) | Yves Leveque |
Area 1 | 5.76 km2 (2.22 sq mi) |
Population (2017-01-01)[1] | 289 |
• Density | 50/km2 (130/sq mi) |
Time zone | UTC+01:00 (CET) |
• Summer (DST) | UTC+02:00 (CEST) |
INSEE/Postal code | 02649 /02210 |
Elevation | 109–212 m (358–696 ft) (avg. 135 m or 443 ft) |
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries. |
Population
Year | Pop. | ±% |
---|---|---|
1962 | 213 | — |
1968 | 228 | +7.0% |
1975 | 190 | −16.7% |
1982 | 175 | −7.9% |
1990 | 284 | +62.3% |
1999 | 295 | +3.9% |
2008 | 314 | +6.4% |
gollark: Okay, "quite fast" may be an overstatement.
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
See also
References
- "Populations légales 2017". INSEE. Retrieved 6 January 2020.
Wikimedia Commons has media related to Rocourt-Saint-Martin. |
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.