Skyview - customize data presentation

I’ve added a horizon marker for 40,000 feet and an extra range ring. See this post for generating the panorama (but use the URL HeyWhatsThat and enter 0.25 for the refraction) and this post for how to get the JSON data.

In the file script.js search for “terrain” and you can edit the colour and thickness of the terrain rings. I use blue and 2 pixels which you can see in the screenshot on that second link.

    var ringStyle = new ol.style.Style({
            fill: null,
            stroke: new ol.style.Stroke({
                    color: '#0000ff',
                    width: 2
            })
    });

In the file config.js I added a 250 range ring.

    SiteCircles = true; // true to show circles (only shown if the center marker is shown)
    // In miles, nautical miles, or km (depending settings value 'DisplayUnits')
    SiteCirclesDistances = new Array(100,150,200,250);