Table of contents


@Gabriele Ghisleni, Data Science.


  0. Environment set up

Install the required dependecies on google colab and mount the drive.

  1. OSM OverPass API Turbo for Alpine huts

First we will extract all the nodes marked as 'alpine_hut' from OSM for having a available more data about Veneto, Trentino-Alto Adige and Friuli-Venezia Giulia.

Thanks to Overpass api we could query from geocodeArea, this is the reason why we manually download them as GeoJson.

@https://overpass-turbo.eu/

[out:json][timeout:25];
{{geocodeArea:Veneto}}->.searchArea;
(
  node["tourism"="alpine_hut"](area.searchArea);
  way["tourism"="alpine_hut"](area.searchArea);
);

out body;

Doing this we will be able to retrieve more alpine huts rather than rely only on the CAI resources.

  1.1 Load the alpine huts data

  1.2 Alpine huts provinces

First explorations to understand where the majority of the huts are located.

Since they are many we will try to create an interactive map with MarkerCluster for better visualize them.

  1.3 Alpine huts elevation

Explore the elevation of the huts.

  1.4 SAT huts prices

  2. Dolomities huts

Select only the huts that are nearby the dolomites

  2.1 Dolomities huts elevation

  3. OSM OverPass API for Peaks

Similar to before we are now able to retrieve the peaks in the selected regions.

query:

[out:json][timeout:25];
{{geocodeArea:Trento}}->.searchArea;
(
  // query part for: “peak”
  node["natural"="peak"](area.searchArea);
);
out body;
>;
out skel qt;

  3.1 Load the peaks data

  3.2 Dolomities Peaks

  3.3 Peaks' 3000m

Let's inspect the most intersting peaks, the over 3000 meters peaks.

  4. Dolomities Huts and Peaks

Let's try to understand the Hut that are very close to some peaks

  4.1 Huts close to Peaks

  4.2 Absolute distances

compute the absolute distance between the peaks and its closests hut. Moreover we define the shortest absolute path between the peak and the hut (straight line from one point to the other).

We will perform this operation better in the next notebook where we will take in count all trails as a network.

in the next notebook we will consider the SAT trail of the Trentino area.