Choč Mountains

The Choč Mountains (in Slovak, Chočské vrchy) are a range of mountains in north-central Slovakia, a portion of the Fatra-Tatra Area of the Inner Western Carpathians. The range is 24 kilometers long and on average only 4 kilometers wide. Highest peak is Veľký Choč at 1 611 metres above sea level.

Veľký Choč, highest peak of the Choč Mountains

Location

Choč Mountains are bordered:

  • in the northwest by the Oravská Highlands,
  • in the northeast by the valley of the Podtatranská Brázda,
  • in the east by the Western Tatras,
  • the south by the basin of the Podtatranská kotlina,
  • in the southwest by Greater Fatra

Highest Peaks

  • Veľký Choč, 1611 metres
  • Malý Choč, 1465 metres
  • Prosečné, 1371 metres
  • Holica, 1340 metres
  • Lomná, 1278 metres
gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```
gollark: Suspicious timing.
gollark: potatOS privacy policy, first 4000 characters.

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.