shahabsalehi commited on
Commit
e03fe72
·
verified ·
1 Parent(s): c1f2366

Add dataset card with schema docs and synthetic disclaimer

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ language:
7
+ - en
8
+ tags:
9
+ - building-energy
10
+ - benchmarking
11
+ - sustainability
12
+ - leed
13
+ - breeam
14
+ - synthetic
15
+ pretty_name: Building Energy Benchmarking
16
+ size_categories:
17
+ - n<1K
18
+ ---
19
+
20
+ # Building Energy Benchmarking Dataset
21
+
22
+ > ⚠️ **Synthetic Data Disclaimer**: This dataset contains **synthetically generated data** for demonstration and testing purposes. It does not represent real buildings or actual energy performance data.
23
+
24
+ ## Overview
25
+
26
+ Portfolio-level building energy benchmarking data with energy intensity metrics, CO2 emissions, and sustainability ratings. Useful for comparing building performance across different types and locations.
27
+
28
+ ## Schema
29
+
30
+ ```json
31
+ {
32
+ "pipeline": "sustainable_building_benchmarking",
33
+ "generated_at": "ISO 8601 timestamp",
34
+ "portfolio_summary": {
35
+ "total_buildings": 12,
36
+ "total_floor_area_m2": 45680,
37
+ "avg_energy_intensity_kwh_m2": 98.4,
38
+ "portfolio_co2_tons": 892.5,
39
+ "top_performer_pct": 25,
40
+ "needs_improvement_pct": 33
41
+ },
42
+ "benchmark_categories": {
43
+ "energy_intensity": {
44
+ "excellent": "< 70 kWh/m²",
45
+ "good": "70-90 kWh/m²",
46
+ "average": "90-110 kWh/m²",
47
+ "poor": "> 110 kWh/m²"
48
+ }
49
+ },
50
+ "buildings": [
51
+ {
52
+ "building_id": "BLD-001",
53
+ "name": "Main Office Tower",
54
+ "location": "Stockholm",
55
+ "floor_area_m2": 5200,
56
+ "building_type": "Office | Laboratory | Retail | Hotel | Residential",
57
+ "year_built": 2018,
58
+ "energy_intensity_kwh_m2": 72.5,
59
+ "co2_intensity_kg_m2": 16.2,
60
+ "energy_percentile": 15,
61
+ "rating": "Excellent | Good | Average | Poor",
62
+ "certifications": ["LEED Gold", "BREEAM Excellent"]
63
+ }
64
+ ]
65
+ }
66
+ ```
67
+
68
+ ## Rating Categories
69
+
70
+ | Rating | Energy Intensity | Description |
71
+ |--------|-----------------|-------------|
72
+ | Excellent | < 70 kWh/m² | Top 25% performers |
73
+ | Good | 70-90 kWh/m² | Above average |
74
+ | Average | 90-110 kWh/m² | Typical performance |
75
+ | Poor | > 110 kWh/m² | Needs improvement |
76
+
77
+ ## Certifications
78
+
79
+ - LEED (Leadership in Energy and Environmental Design)
80
+ - BREEAM (Building Research Establishment Environmental Assessment Method)
81
+ - Energy Star
82
+ - Green Building Council certifications
83
+
84
+ ## Use Cases
85
+
86
+ - Portfolio energy management dashboards
87
+ - Building performance comparisons
88
+ - Sustainability reporting
89
+ - Energy efficiency prioritization
90
+
91
+ ## Update Schedule
92
+
93
+ This dataset is automatically updated **daily at 00:00 UTC** via GitHub Actions.
94
+
95
+ ## Source
96
+
97
+ Generated by the [Sustainable-Building-Energy-Benchmarking-Pipeline](https://github.com/shahabsalehi/Sustainable-Building-Energy-Benchmarking-Pipeline) project.
98
+
99
+ ## License
100
+
101
+ MIT License