Lakeside Village, Kansas

Lakeside Village is an unincorporated community in central Jefferson County, Kansas, United States.[1] It is located on the shores of Perry Lake.

Lakeside Village, Kansas
KDOT map of Jefferson County (legend)
Lakeside Village
Lakeside Village
Coordinates: 39°10′31″N 95°25′17″W[1]
CountryUnited States
StateKansas
CountyJefferson
Elevation1,086 ft (331 m)
Time zoneUTC-6 (CST)
  Summer (DST)UTC-5 (CDT)
Area code785
FIPS code20-38065 [1]
GNIS ID484910 [1]

The community has a "town hall" despite being unincorporated; it also has a community swimming pool. Lakeside Village uses Ozawkie as its mailing address, and Oskaloosa USD 341 serves area students.

History

Properties in the community were first sold in the 1960s while Perry Lake was under construction. The lake was completed in 1970, and Jefferson County designated Lakeside Village as an improvement district in 1972.[2]

gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.

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.