Skip to content
Pavel Zbytovský edited this page Sep 10, 2023 · 2 revisions
// https://wiki.openstreetmap.org/wiki/Climbing

// https://wiki.openstreetmap.org/wiki/DE:Tag:sport%3Dclimbing

// https://wiki.openstreetmap.org/wiki/Proposal:OpenBeta_Initiative_workflow
// https://openbeta.io/climbs/17dab909-5906-5f8f-a221-1fe895aa43c3
// https://overpass-turbo.eu/s/1zUA
// http://www.lezec.cz/cestaf.php


// https://commons.wikimedia.org/wiki/Special:UploadWizard
// upload name must be: name of the crag / route
// description can link back to ClimbAPP

// http://openclimbingmap.bstegmaier.de/#12/46.1235/7.0498


// can be recursive
const crag = {
  tags: {
    name: "Ovčí stěna",
    description: "Pěkná skalka",
    climbing: "crag",
    wikimedia_commons: "Klettersteig_B.jpg"
    "climbing:routes": "10",
  },
  members: [
    "node123"
  ]
}


const node_route = {
  id: "123",
  location: [42, 12],
  tags: {
    ref: "6 var.",
    name: "Za meloun",
    description: "Libovolně na balvan a stěnou přes kruh na vrchol.", // https://www.skalnioblasti.cz/5_index.asp?cmd=6&cesta_id=73996
    author: "Pepa",
    start_date: "2016-08-28",

    sport: "climbing",
    climbing: "route_bottom", // https://taginfo.openstreetmap.org/tags/climbing%3Droute_bottom#map
    "climbing:bolts": 3,
    "climbing:length": "30m",
    "climbing:pitches": 2,
    "climbing:grade:saxon": "IV",

    // Climbing styles https://wiki.openstreetmap.org/wiki/Climbing#Climbing_styles
    "climbing:sport": "rock",


    // Additional information
    "climbing:rock": "sandstone",
    "climbing:bolted": "2m", // average distance from bolt to bolt
    "climbing:orientation": "N",
    "climbing:quality": "fragile",
    "climbing:summit_log": "yes",

    wikimedia_commons: "Klettersteig_B.jpg",
    "climbing:photoPath": [
      { x: 0.2342, y: 0.5333 },
      { x: 0.2342, y: 0.5333 },
      { x: 0.2342, y: 0.5333, type: "slanak", note: "knížka" }
    ]
  }
};

Clone this wiki locally