Wil, Aargau
Wil was a municipality in the district of Laufenburg in the canton of Aargau in Switzerland. The municipality is located in the north-east of the Fricktal region, about 3 km from the border to Germany. On 1 January 2010 the municipalities of Hottwil, Etzgen, Mettau, Oberhofen and Wil merged into the municipality of Mettauertal.[1]
Wil | |
---|---|
Coat of arms | |
Location of Wil | |
Wil Wil | |
Coordinates: 47°34′N 8°9′E | |
Country | Switzerland |
Canton | Aargau |
District | Laufenburg |
Area | |
• Total | 7.71 km2 (2.98 sq mi) |
Elevation | 381 m (1,250 ft) |
Population (December 2006) | |
• Total | 669 |
• Density | 87/km2 (220/sq mi) |
Postal code | 5276 |
SFOS number | 4180 |
Surrounded by | Gansingen, Hottwil, Leibstadt, Leuggern, Mandach, Mettau, Oberhofen, Schwaderloch |
Website | www SFSO statistics |
Population
Current population is 669 inhabitants.
Year | Population |
---|---|
1850 | 739 |
1900 | 521 |
1930 | 522 |
1950 | 533 |
1960 | 558 |
1970 | 539 |
1980 | 530 |
1990 | 566 |
2000 | 666 |
2006 | 669 |
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.
gollark: As I said, this is not very good code.]
gollark: Every rendered tile.
gollark: I suppose baidicoot thought "hmm, how might I find whether a player is on a tile I'm rendering". Now, you might think "hmm yes, the solution to this is just to maintain a map of coordinates to entities, or something like that". But no! The game ITERATES OVER ALL PLAYERS FOR EVERY SINGLE TILE.
References
- Amtliches Gemeindeverzeichnis der Schweiz, Mutationsmeldungen 2009 / Répertoire officiel des communes de Suisse, Mutations 2009 / Elenco ufficiale dei Comuni della Svizzera, Mutazione 2009 (PDF) (Report). Federal Statistical Office. 2009. 3170. Retrieved 6 March 2010.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.