Needham Township, Johnson County, Indiana

Needham Township is one of nine townships in Johnson County, Indiana. As of the 2010 census, its population was 6,511 and it contained 2,613 housing units.[3]

Needham Township
Coordinates: 39°29′14″N 85°59′58″W
CountryUnited States
StateIndiana
CountyJohnson
Government
  TypeIndiana township
Area
  Total35.03 sq mi (90.7 km2)
  Land35.01 sq mi (90.7 km2)
  Water0.02 sq mi (0.05 km2)
Elevation722 ft (220 m)
Population
 (2010)
  Total6,511
  Density186/sq mi (72/km2)
FIPS code18-52164[2]
GNIS feature ID453658

Needham Township was formed in 1881.[4]

Geography

According to the 2010 census, the township has a total area of 35.03 square miles (90.7 km2), of which 35.01 square miles (90.7 km2) (or 99.94%) is land and 0.02 square miles (0.052 km2) (or 0.06%) is water.[3]

gollark: <@!341618941317349376> Observe, a compiler which produces slow code.
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.

References

  1. "US Board on Geographic Names". United States Geological Survey. 2007-10-25. Retrieved 2008-01-31.
  2. "U.S. Census website". United States Census Bureau. Retrieved 2008-01-31.
  3. "Population, Housing Units, Area, and Density: 2010 - County -- County Subdivision and Place -- 2010 Census Summary File 1". United States Census. Archived from the original on 2020-02-12. Retrieved 2013-05-10.
  4. Branigin, Elba L. (1913). History of Johnson County, Indiana. B. F. Bowen & Company. p. 62.



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