Gmina Latowicz

Gmina Latowicz is a rural gmina (administrative district) in Mińsk County, Masovian Voivodeship, in east-central Poland. Its seat is the village of Latowicz, which lies approximately 25 kilometres (16 mi) south-east of Mińsk Mazowiecki and 60 km (37 mi) east of Warsaw.

Gmina Latowicz

Latowicz Commune
Coat of arms
Coordinates (Latowicz): 52°1′36″N 21°48′39″E
Country Poland
VoivodeshipMasovian
CountyMińsk
SeatLatowicz
Area
  Total114.15 km2 (44.07 sq mi)
Population
 (2013[1])
  Total5,478
  Density48/km2 (120/sq mi)

The gmina covers an area of 114.15 square kilometres (44.1 sq mi), and as of 2006 its total population is 5,559 (5,478 in 2013).

Villages

Gmina Latowicz contains the villages and settlements of Borówek, Budy Wielgoleskie, Budziska, Chyżyny, Dąbrówka, Dębe Małe, Generałowo, Gołełąki, Kamionka, Latowicz, Oleksianka, Redzyńskie, Stawek, Strachomin, Transbór, Waliska, Wężyczyn and Wielgolas.

Neighbouring gminas

Gmina Latowicz is bordered by the gminas of Borowie, Cegłów, Mrozy, Parysów, Siennica and Wodynie.

gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```

References


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