Beech Creek Township, Greene County, Indiana

Beech Creek Township is one of fifteen townships in Greene County, Indiana, USA. As of the 2010 census, its population was 2,595.[1]

Historical population
CensusPop.
20002,365
20102,5959.7%
Source: US Census Bureau
Beech Creek Township
Greene County Chapel, located in the township's southeast
Location in Greene County
Coordinates: 39°07′22″N 86°45′10″W
CountryUnited States
StateIndiana
CountyGreene
Government
  TypeIndiana township
Area
  Total47.42 sq mi (122.8 km2)
  Land47.4 sq mi (123 km2)
  Water0.01 sq mi (0.03 km2)  0.02%
Elevation
630 ft (192 m)
Population
 (2010)
  Total2,595
  Density54.7/sq mi (21.1/km2)
GNIS feature ID0453104

Geography

According to the 2010 census, the township has a total area of 47.42 square miles (122.8 km2), of which 47.4 square miles (123 km2) (or 99.96%) is land and 0.01 square miles (0.026 km2) (or 0.02%) is water.[1] The stream of Dry Branch runs through this township.

Unincorporated towns

(This list is based on USGS data and may include former settlements.)

Adjacent townships

Cemeteries

The township contains ten cemeteries: Arthur, Edwards, Hudson, Liberty, Livingston, Minks, Newark, Philpot, Pryor, and Solsberry.

Major highways

gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.
gollark: The time parsing logic is kind of inconsistent.

References

  • "Beech Creek Township, Greene County, Indiana". Geographic Names Information System. United States Geological Survey. Retrieved 2009-09-24.
  • United States Census Bureau cartographic boundary files



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