This file is indexed.

/usr/share/games/flightgear/Phi/topics/Environment/Weather/LayerData.js is in flightgear-phi 2016.4.2+dfsg1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
define([
        'knockout',
], function(ko) {

    function LayerData() {
        var self = this;
        self.index = 0;
        self.altitude = ko.observable(0);
        self.windDir = ko.observable(0);
        self.windSpeed = ko.observable(0);
        self.visibility = ko.observable(0);
        self.temperature = ko.observable(0);
        self.dewpoint = ko.observable(0);
        self.turbulence = [
                {
                    id : 0,
                    text : 'none'
                }, {
                    id : 1,
                    text : 'light'
                }, {
                    id : 2,
                    text : 'moderate'
                }, {
                    id : 3,
                    text : 'severe'
                }
        ];
        self.turbulenceValue = ko.observable(0);
    }
    
    LayerData.prototype.PropertyMap = {
            "index": "index",
            "elevation-ft": "altitude",
            "wind-from-heading-deg": "windDir",
            "wind-speed-kt": "windSpeed",
            "visibility-m": "visibility",
            "temperature-degc": "temperature",
            "dewpoint-degc": "dewpoint",
        };

    return LayerData;
});