@golemio/energetics 1.2.3-dev.781407526 → 1.2.3-dev.782816106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db/migrations/postgresql/20230220063725-another_view_out_of_prague_.js +53 -0
- package/db/migrations/postgresql/sqls/20230220063725-another_view_out_of_prague_-down.sql +127 -0
- package/db/migrations/postgresql/sqls/20230220063725-another_view_out_of_prague_-up.sql +127 -0
- package/package.json +1 -1
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var dbm;
|
|
4
|
+
var type;
|
|
5
|
+
var seed;
|
|
6
|
+
var fs = require('fs');
|
|
7
|
+
var path = require('path');
|
|
8
|
+
var Promise;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* We receive the dbmigrate dependency from dbmigrate initially.
|
|
12
|
+
* This enables us to not have to rely on NODE_PATH.
|
|
13
|
+
*/
|
|
14
|
+
exports.setup = function(options, seedLink) {
|
|
15
|
+
dbm = options.dbmigrate;
|
|
16
|
+
type = dbm.dataType;
|
|
17
|
+
seed = seedLink;
|
|
18
|
+
Promise = options.Promise;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
exports.up = function(db) {
|
|
22
|
+
var filePath = path.join(__dirname, 'sqls', '20230220063725-another_view_out_of_prague_-up.sql');
|
|
23
|
+
return new Promise( function( resolve, reject ) {
|
|
24
|
+
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
25
|
+
if (err) return reject(err);
|
|
26
|
+
console.log('received data: ' + data);
|
|
27
|
+
|
|
28
|
+
resolve(data);
|
|
29
|
+
});
|
|
30
|
+
})
|
|
31
|
+
.then(function(data) {
|
|
32
|
+
return db.runSql(data);
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
exports.down = function(db) {
|
|
37
|
+
var filePath = path.join(__dirname, 'sqls', '20230220063725-another_view_out_of_prague_-down.sql');
|
|
38
|
+
return new Promise( function( resolve, reject ) {
|
|
39
|
+
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
40
|
+
if (err) return reject(err);
|
|
41
|
+
console.log('received data: ' + data);
|
|
42
|
+
|
|
43
|
+
resolve(data);
|
|
44
|
+
});
|
|
45
|
+
})
|
|
46
|
+
.then(function(data) {
|
|
47
|
+
return db.runSql(data);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
exports._meta = {
|
|
52
|
+
"version": 1
|
|
53
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
CREATE OR REPLACE VIEW v_consumption_energy_buildings_real_mc_nogeom
|
|
2
|
+
AS SELECT v_consumption_energy_buildings_real_mc.id,
|
|
3
|
+
v_consumption_energy_buildings_real_mc.building_name,
|
|
4
|
+
v_consumption_energy_buildings_real_mc.description,
|
|
5
|
+
v_consumption_energy_buildings_real_mc.building_address_code,
|
|
6
|
+
v_consumption_energy_buildings_real_mc.building_label,
|
|
7
|
+
v_consumption_energy_buildings_real_mc.current_note,
|
|
8
|
+
v_consumption_energy_buildings_real_mc.main_use,
|
|
9
|
+
v_consumption_energy_buildings_real_mc.secondary_use,
|
|
10
|
+
v_consumption_energy_buildings_real_mc.year_of_construction,
|
|
11
|
+
v_consumption_energy_buildings_real_mc.method_of_protection,
|
|
12
|
+
v_consumption_energy_buildings_real_mc.built_up_area,
|
|
13
|
+
v_consumption_energy_buildings_real_mc.heated_bulding_volume,
|
|
14
|
+
v_consumption_energy_buildings_real_mc.students_count,
|
|
15
|
+
v_consumption_energy_buildings_real_mc.employees_count,
|
|
16
|
+
v_consumption_energy_buildings_real_mc.classrooms_count,
|
|
17
|
+
v_consumption_energy_buildings_real_mc.beds_count,
|
|
18
|
+
v_consumption_energy_buildings_real_mc.eno_id,
|
|
19
|
+
v_consumption_energy_buildings_real_mc.csu_code,
|
|
20
|
+
v_consumption_energy_buildings_real_mc.ku_code,
|
|
21
|
+
v_consumption_energy_buildings_real_mc.allotment_number,
|
|
22
|
+
v_consumption_energy_buildings_real_mc.registration_unit,
|
|
23
|
+
v_consumption_energy_buildings_real_mc.gas_consumption_normatives,
|
|
24
|
+
v_consumption_energy_buildings_real_mc.heat_consumption_normatives,
|
|
25
|
+
v_consumption_energy_buildings_real_mc.water_consumption_normatives,
|
|
26
|
+
v_consumption_energy_buildings_real_mc.electricity_consumption_normatives_per_person,
|
|
27
|
+
v_consumption_energy_buildings_real_mc.electricity_consumption_normatives,
|
|
28
|
+
v_consumption_energy_buildings_real_mc.energetic_management,
|
|
29
|
+
v_consumption_energy_buildings_real_mc.opening_hours,
|
|
30
|
+
v_consumption_energy_buildings_real_mc.weekend_opening_hours,
|
|
31
|
+
v_consumption_energy_buildings_real_mc.latitude,
|
|
32
|
+
v_consumption_energy_buildings_real_mc.longitude,
|
|
33
|
+
v_consumption_energy_buildings_real_mc.address_street,
|
|
34
|
+
v_consumption_energy_buildings_real_mc.address_house_number,
|
|
35
|
+
v_consumption_energy_buildings_real_mc.address_city,
|
|
36
|
+
v_consumption_energy_buildings_real_mc.district_name,
|
|
37
|
+
v_consumption_energy_buildings_real_mc.address_country,
|
|
38
|
+
v_consumption_energy_buildings_real_mc.address_mail,
|
|
39
|
+
v_consumption_energy_buildings_real_mc.address_phone,
|
|
40
|
+
v_consumption_energy_buildings_real_mc.address_web_address,
|
|
41
|
+
v_consumption_energy_buildings_real_mc.penb_penbnumber,
|
|
42
|
+
v_consumption_energy_buildings_real_mc.penb_issue_date,
|
|
43
|
+
v_consumption_energy_buildings_real_mc.penb_total_building_envelope_area,
|
|
44
|
+
v_consumption_energy_buildings_real_mc.penb_volume_factor_of_avshape,
|
|
45
|
+
v_consumption_energy_buildings_real_mc.penb_total_energy_reference_area,
|
|
46
|
+
v_consumption_energy_buildings_real_mc.penb_total_provided_energy,
|
|
47
|
+
v_consumption_energy_buildings_real_mc.penb_total_provided_energy_category,
|
|
48
|
+
v_consumption_energy_buildings_real_mc.penb_primary_non_renewable_energy,
|
|
49
|
+
v_consumption_energy_buildings_real_mc.penb_primary_non_renewable_energy_category,
|
|
50
|
+
v_consumption_energy_buildings_real_mc.penb_building_envelope,
|
|
51
|
+
v_consumption_energy_buildings_real_mc.penb_building_envelope_category,
|
|
52
|
+
v_consumption_energy_buildings_real_mc.penb_heating,
|
|
53
|
+
v_consumption_energy_buildings_real_mc.penb_heating_category,
|
|
54
|
+
v_consumption_energy_buildings_real_mc.penb_cooling,
|
|
55
|
+
v_consumption_energy_buildings_real_mc.penb_cooling_category,
|
|
56
|
+
v_consumption_energy_buildings_real_mc.penb_ventilation,
|
|
57
|
+
v_consumption_energy_buildings_real_mc.penb_ventilation_category,
|
|
58
|
+
v_consumption_energy_buildings_real_mc.penb_humidity_adjustment,
|
|
59
|
+
v_consumption_energy_buildings_real_mc.penb_humidity_adjustment_category,
|
|
60
|
+
v_consumption_energy_buildings_real_mc.penb_warm_water,
|
|
61
|
+
v_consumption_energy_buildings_real_mc.penb_warm_water_category,
|
|
62
|
+
v_consumption_energy_buildings_real_mc.penb_lighting,
|
|
63
|
+
v_consumption_energy_buildings_real_mc.penb_lighting_category,
|
|
64
|
+
v_consumption_energy_buildings_real_mc.energy_audits_energy_audit,
|
|
65
|
+
v_consumption_energy_buildings_real_mc.energy_audits_earegistration_number,
|
|
66
|
+
v_consumption_energy_buildings_real_mc.energy_audits_created_at,
|
|
67
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_prevailing_construction,
|
|
68
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_area,
|
|
69
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_heat_insulation,
|
|
70
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_year_of_adjustment,
|
|
71
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_technical_condition,
|
|
72
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_construction,
|
|
73
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_area,
|
|
74
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_year_of_adjustment,
|
|
75
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_technical_condition,
|
|
76
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_construction,
|
|
77
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_area,
|
|
78
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_thermal_insulation,
|
|
79
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_year_of_adjustment,
|
|
80
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_technical_condition,
|
|
81
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_construction,
|
|
82
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_area,
|
|
83
|
+
v_consumption_energy_buildings_real_mc.floor_of_the_lowest_heated_floor_thermal_insulation,
|
|
84
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_year_of_adju,
|
|
85
|
+
v_consumption_energy_buildings_real_mc.floor_of_the_lowest_heated_floor_technical_condition,
|
|
86
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_coal,
|
|
87
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_gas,
|
|
88
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_electricity,
|
|
89
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_czt,
|
|
90
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_oze,
|
|
91
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_other,
|
|
92
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_main_source_of_heat,
|
|
93
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_heat_percentage,
|
|
94
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_secondary_source_of_heat,
|
|
95
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_heating_system,
|
|
96
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_year,
|
|
97
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_technical_condition,
|
|
98
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_cooling_system,
|
|
99
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_cooling_area_percentage,
|
|
100
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_year,
|
|
101
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_technical_condition,
|
|
102
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_ventilation,
|
|
103
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_year,
|
|
104
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_technical_condition,
|
|
105
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_humidity_adjustment,
|
|
106
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_year,
|
|
107
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_technical_condition,
|
|
108
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_predominant_way_of_heating_tv,
|
|
109
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_hot_water_source,
|
|
110
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_year,
|
|
111
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_technical_condition,
|
|
112
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_lighting,
|
|
113
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_year,
|
|
114
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_technical_condition,
|
|
115
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_other_technological_elements,
|
|
116
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_measurement_method,
|
|
117
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_solar_energy_photovoltaic,
|
|
118
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_solar_energy_photothermal,
|
|
119
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_integrated_turbines_wind_energy,
|
|
120
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_heat_pump,
|
|
121
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_solid_waste_production,
|
|
122
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_tied_co2_emissions,
|
|
123
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_sox_emissions,
|
|
124
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_operating_co_2emissions,
|
|
125
|
+
v_consumption_energy_buildings_real_mc.link
|
|
126
|
+
FROM v_consumption_energy_buildings_real_mc;
|
|
127
|
+
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
CREATE OR REPLACE VIEW v_consumption_energy_buildings_real_mc_nogeom
|
|
2
|
+
AS SELECT v_consumption_energy_buildings_real_mc.id,
|
|
3
|
+
v_consumption_energy_buildings_real_mc.building_name,
|
|
4
|
+
v_consumption_energy_buildings_real_mc.description,
|
|
5
|
+
v_consumption_energy_buildings_real_mc.building_address_code,
|
|
6
|
+
v_consumption_energy_buildings_real_mc.building_label,
|
|
7
|
+
v_consumption_energy_buildings_real_mc.current_note,
|
|
8
|
+
v_consumption_energy_buildings_real_mc.main_use,
|
|
9
|
+
v_consumption_energy_buildings_real_mc.secondary_use,
|
|
10
|
+
v_consumption_energy_buildings_real_mc.year_of_construction,
|
|
11
|
+
v_consumption_energy_buildings_real_mc.method_of_protection,
|
|
12
|
+
v_consumption_energy_buildings_real_mc.built_up_area,
|
|
13
|
+
v_consumption_energy_buildings_real_mc.heated_bulding_volume,
|
|
14
|
+
v_consumption_energy_buildings_real_mc.students_count,
|
|
15
|
+
v_consumption_energy_buildings_real_mc.employees_count,
|
|
16
|
+
v_consumption_energy_buildings_real_mc.classrooms_count,
|
|
17
|
+
v_consumption_energy_buildings_real_mc.beds_count,
|
|
18
|
+
v_consumption_energy_buildings_real_mc.eno_id,
|
|
19
|
+
v_consumption_energy_buildings_real_mc.csu_code,
|
|
20
|
+
v_consumption_energy_buildings_real_mc.ku_code,
|
|
21
|
+
v_consumption_energy_buildings_real_mc.allotment_number,
|
|
22
|
+
v_consumption_energy_buildings_real_mc.registration_unit,
|
|
23
|
+
v_consumption_energy_buildings_real_mc.gas_consumption_normatives,
|
|
24
|
+
v_consumption_energy_buildings_real_mc.heat_consumption_normatives,
|
|
25
|
+
v_consumption_energy_buildings_real_mc.water_consumption_normatives,
|
|
26
|
+
v_consumption_energy_buildings_real_mc.electricity_consumption_normatives_per_person,
|
|
27
|
+
v_consumption_energy_buildings_real_mc.electricity_consumption_normatives,
|
|
28
|
+
v_consumption_energy_buildings_real_mc.energetic_management,
|
|
29
|
+
v_consumption_energy_buildings_real_mc.opening_hours,
|
|
30
|
+
v_consumption_energy_buildings_real_mc.weekend_opening_hours,
|
|
31
|
+
v_consumption_energy_buildings_real_mc.latitude,
|
|
32
|
+
v_consumption_energy_buildings_real_mc.longitude,
|
|
33
|
+
v_consumption_energy_buildings_real_mc.address_street,
|
|
34
|
+
v_consumption_energy_buildings_real_mc.address_house_number,
|
|
35
|
+
v_consumption_energy_buildings_real_mc.address_city,
|
|
36
|
+
v_consumption_energy_buildings_real_mc.district_name,
|
|
37
|
+
v_consumption_energy_buildings_real_mc.address_country,
|
|
38
|
+
v_consumption_energy_buildings_real_mc.address_mail,
|
|
39
|
+
v_consumption_energy_buildings_real_mc.address_phone,
|
|
40
|
+
v_consumption_energy_buildings_real_mc.address_web_address,
|
|
41
|
+
v_consumption_energy_buildings_real_mc.penb_penbnumber,
|
|
42
|
+
v_consumption_energy_buildings_real_mc.penb_issue_date,
|
|
43
|
+
v_consumption_energy_buildings_real_mc.penb_total_building_envelope_area,
|
|
44
|
+
v_consumption_energy_buildings_real_mc.penb_volume_factor_of_avshape,
|
|
45
|
+
v_consumption_energy_buildings_real_mc.penb_total_energy_reference_area,
|
|
46
|
+
v_consumption_energy_buildings_real_mc.penb_total_provided_energy,
|
|
47
|
+
v_consumption_energy_buildings_real_mc.penb_total_provided_energy_category,
|
|
48
|
+
v_consumption_energy_buildings_real_mc.penb_primary_non_renewable_energy,
|
|
49
|
+
v_consumption_energy_buildings_real_mc.penb_primary_non_renewable_energy_category,
|
|
50
|
+
v_consumption_energy_buildings_real_mc.penb_building_envelope,
|
|
51
|
+
v_consumption_energy_buildings_real_mc.penb_building_envelope_category,
|
|
52
|
+
v_consumption_energy_buildings_real_mc.penb_heating,
|
|
53
|
+
v_consumption_energy_buildings_real_mc.penb_heating_category,
|
|
54
|
+
v_consumption_energy_buildings_real_mc.penb_cooling,
|
|
55
|
+
v_consumption_energy_buildings_real_mc.penb_cooling_category,
|
|
56
|
+
v_consumption_energy_buildings_real_mc.penb_ventilation,
|
|
57
|
+
v_consumption_energy_buildings_real_mc.penb_ventilation_category,
|
|
58
|
+
v_consumption_energy_buildings_real_mc.penb_humidity_adjustment,
|
|
59
|
+
v_consumption_energy_buildings_real_mc.penb_humidity_adjustment_category,
|
|
60
|
+
v_consumption_energy_buildings_real_mc.penb_warm_water,
|
|
61
|
+
v_consumption_energy_buildings_real_mc.penb_warm_water_category,
|
|
62
|
+
v_consumption_energy_buildings_real_mc.penb_lighting,
|
|
63
|
+
v_consumption_energy_buildings_real_mc.penb_lighting_category,
|
|
64
|
+
v_consumption_energy_buildings_real_mc.energy_audits_energy_audit,
|
|
65
|
+
v_consumption_energy_buildings_real_mc.energy_audits_earegistration_number,
|
|
66
|
+
v_consumption_energy_buildings_real_mc.energy_audits_created_at,
|
|
67
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_prevailing_construction,
|
|
68
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_area,
|
|
69
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_heat_insulation,
|
|
70
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_year_of_adjustment,
|
|
71
|
+
v_consumption_energy_buildings_real_mc.building_envelope_side_wall_technical_condition,
|
|
72
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_construction,
|
|
73
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_area,
|
|
74
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_year_of_adjustment,
|
|
75
|
+
v_consumption_energy_buildings_real_mc.building_envelope_filling_of_hole_technical_condition,
|
|
76
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_construction,
|
|
77
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_area,
|
|
78
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_thermal_insulation,
|
|
79
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_year_of_adjustment,
|
|
80
|
+
v_consumption_energy_buildings_real_mc.building_envelope_roof_technical_condition,
|
|
81
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_construction,
|
|
82
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_area,
|
|
83
|
+
v_consumption_energy_buildings_real_mc.floor_of_the_lowest_heated_floor_thermal_insulation,
|
|
84
|
+
v_consumption_energy_buildings_real_mc.building_envelope_floor_of_the_lowest_heated_floor_year_of_adju,
|
|
85
|
+
v_consumption_energy_buildings_real_mc.floor_of_the_lowest_heated_floor_technical_condition,
|
|
86
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_coal,
|
|
87
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_gas,
|
|
88
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_electricity,
|
|
89
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_czt,
|
|
90
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_oze,
|
|
91
|
+
v_consumption_energy_buildings_real_mc.fuel_and_energy_other,
|
|
92
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_main_source_of_heat,
|
|
93
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_heat_percentage,
|
|
94
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_secondary_source_of_heat,
|
|
95
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_heating_system,
|
|
96
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_year,
|
|
97
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_heating_technical_condition,
|
|
98
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_cooling_system,
|
|
99
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_cooling_area_percentage,
|
|
100
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_year,
|
|
101
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_cooling_technical_condition,
|
|
102
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_ventilation,
|
|
103
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_year,
|
|
104
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_ventilation_technical_condition,
|
|
105
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_humidity_adjustment,
|
|
106
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_year,
|
|
107
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_humidity_adjustment_technical_condition,
|
|
108
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_predominant_way_of_heating_tv,
|
|
109
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_hot_water_source,
|
|
110
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_year,
|
|
111
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_hot_water_technical_condition,
|
|
112
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_lighting,
|
|
113
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_year,
|
|
114
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_technical_condition,
|
|
115
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_other_technological_elements,
|
|
116
|
+
v_consumption_energy_buildings_real_mc.technical_equipment_lighting_measurement_method,
|
|
117
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_solar_energy_photovoltaic,
|
|
118
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_solar_energy_photothermal,
|
|
119
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_integrated_turbines_wind_energy,
|
|
120
|
+
v_consumption_energy_buildings_real_mc.oze_energy_production_heat_pump,
|
|
121
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_solid_waste_production,
|
|
122
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_tied_co2_emissions,
|
|
123
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_sox_emissions,
|
|
124
|
+
v_consumption_energy_buildings_real_mc.waste_and_emissions_operating_co_2emissions,
|
|
125
|
+
v_consumption_energy_buildings_real_mc.link
|
|
126
|
+
FROM v_consumption_energy_buildings_real_mc
|
|
127
|
+
WHERE v_consumption_energy_buildings_real_mc.building_address_code::text !~~ '10.%'::text;
|