Horní Dvořiště

Horní Dvořiště (German: Oberhaid) is a village in the South Bohemian Region of the Czech Republic. It has around 500 inhabitants.

Horní Dvořiště
Village
Church of Saint Michael
Flag
Coat of arms
Horní Dvořiště
Coordinates: 48°36′N 14°25′E
Country Czech Republic
RegionSouth Bohemian
DistrictČeský Krumlov

Village Český Heršlák is administrative part of Horní Dvořiště. There is big raiway station for "Horní Dvořiště" there.

TGM welcome

At the local railway station there were inaugurated (welcomed) first Czechoslovak president T. G. Masaryk by The National Assembly and representatives of the South Bohemian districts on his triumphant return to his homeland on Friday 20. December 1918, with music, anthems and speeches by representatives of allied states (Italy, USA, Great Britain and France). Masaryk answered briefly and greeted those present, including the Governor of Kaplice, who also gave a welcome speech. There he, and his daughter Olga, met his son Jan Masaryk again after four years. [1]

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.
gollark: As I said, this is not very good code.]

References

  1. (cs) PRECLÍK, Vratislav. Masaryk a legie (TGM and legions), váz. kniha, 219 p., first issue vydalo nakladatelství Paris Karviná, Žižkova 2379 (734 01 Karviná-Mizerov, Czech Republic) ve spolupráci s Masarykovým demokratickým hnutím (In association with the Masaryk democratic movement in Prague), 2019, ISBN 978-80-87173-47-3, pages 169, 186 - 187



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