solsticestudioai commited on
Commit
b885d46
·
verified ·
1 Parent(s): 85e041f

Add residential energy sample pack

Browse files
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ - time-series-forecasting
7
+ language:
8
+ - en
9
+ tags:
10
+ - synthetic
11
+ - energy
12
+ - solar
13
+ - battery
14
+ - residential-energy
15
+ - vpp
16
+ - virtual-power-plant
17
+ - distributed-energy
18
+ - tariff-modeling
19
+ - outage-resilience
20
+ - analytics
21
+ - tabular
22
+ pretty_name: Solstice Residential Energy Pack
23
+ size_categories:
24
+ - 100K<n<1M
25
+ configs:
26
+ - config_name: households
27
+ data_files:
28
+ - split: train
29
+ path: households.csv
30
+ - config_name: daily_generation_consumption
31
+ data_files:
32
+ - split: train
33
+ path: daily_generation_consumption.csv
34
+ - config_name: dispatch_events
35
+ data_files:
36
+ - split: train
37
+ path: dispatch_events.csv
38
+ - config_name: billing_and_savings
39
+ data_files:
40
+ - split: train
41
+ path: billing_and_savings.csv
42
+ - config_name: metric_definitions
43
+ data_files:
44
+ - split: train
45
+ path: metric_definitions.csv
46
+ - config_name: dashboard_suggestions
47
+ data_files:
48
+ - split: train
49
+ path: dashboard_suggestions.csv
50
+ ---
51
+
52
+ # Solstice Residential Energy Pack (Sample)
53
+
54
+ **A synthetic residential solar-plus-storage operations dataset for VPP dispatch, tariff-aware savings, billing, and outage resilience.** This sample is designed for product demos, analytics workflows, dashboard prototyping, and AI model validation where real customer or utility data is unavailable or too sensitive to use.
55
+
56
+ Built by [SolsticeAI](https://solsticestudio.ai) as a free sample of a larger commercial pack. 100% synthetic. No real customer, meter, or utility records.
57
+
58
+ ## What is included
59
+
60
+ | File | Rows | Grain | Purpose |
61
+ |---|---:|---|---|
62
+ | `households.csv` | 500 | household | Household archetypes, geography, electrification, and outage risk |
63
+ | `daily_generation_consumption.csv` | 90,000 | date x household | Load, solar generation, import/export, battery usage, and daily savings |
64
+ | `dispatch_events.csv` | 5,819 | dispatch event | Requested vs delivered dispatch, participation, incentives, and grid value |
65
+ | `billing_and_savings.csv` | 3,000 | month x household | Counterfactual bills, subscription payments, credits, and net customer value |
66
+ | `metric_definitions.csv` | 3 | metric | Metric formulas and table-level documentation |
67
+ | `dashboard_suggestions.csv` | 3 | chart | Starter dashboard recipes for product and analytics teams |
68
+
69
+ **Coverage:** USA
70
+ **Period:** 6 months (`2025-01-01` to `2025-06-29`)
71
+ **Join key:** `household_id`
72
+ **Formats in this sample repo:** CSV
73
+
74
+ ## Why this dataset is useful
75
+
76
+ Most public solar or energy datasets are either too generic, too narrow, or detached from the operating model of a residential energy business. This sample is shaped around the questions a solar-plus-storage platform, VPP operator, DERMS vendor, or energy analytics team actually cares about:
77
+
78
+ - Which household profiles create the highest dispatch value?
79
+ - How much do tariff design and load shape affect savings?
80
+ - Which homes deliver the most outage resilience value?
81
+ - How reliable is dispatch participation across a residential fleet?
82
+ - How do billing, credits, and contract economics affect customer value?
83
+
84
+ ## What makes the sample credible
85
+
86
+ - Stable relational keys and business-readable tables
87
+ - Daily operational energy facts rather than flat summary rows
88
+ - Dispatch, billing, and savings data tied to the same household base
89
+ - Structured for dashboarding, workflow testing, demos, and model development
90
+ - Synthetic by design, so it can be shared safely across internal and external teams
91
+
92
+ ## Typical use cases
93
+
94
+ - Residential energy product demos
95
+ - VPP dispatch and participation analytics
96
+ - Tariff-aware savings analysis
97
+ - Billing workflow and customer-value testing
98
+ - Outage resilience reporting
99
+ - AI model validation on structured energy operations data
100
+ - Dashboard and BI template development
101
+
102
+ ## Quick start
103
+
104
+ ```python
105
+ import pandas as pd
106
+
107
+ households = pd.read_csv("households.csv")
108
+ daily = pd.read_csv("daily_generation_consumption.csv", parse_dates=["date"])
109
+ dispatch = pd.read_csv("dispatch_events.csv", parse_dates=["date"])
110
+ billing = pd.read_csv("billing_and_savings.csv")
111
+
112
+ # Example: average savings by state
113
+ savings_by_state = (
114
+ daily.merge(households[["household_id", "state"]], on="household_id", how="left")
115
+ .groupby("state")["customer_savings_usd"]
116
+ .mean()
117
+ .reset_index()
118
+ )
119
+ ```
120
+
121
+ ## Schema
122
+
123
+ See [SCHEMA.md](./SCHEMA.md) for the full field definitions and pack design.
124
+ See `manifest.json` for sample generation metadata and row counts.
125
+
126
+ ## License
127
+
128
+ Released under **CC BY 4.0**. Use freely for demos, internal tooling, research, education, and commercial prototyping with attribution.
129
+
130
+ Synthetic data only. No real customer, patient, meter, or utility information.
131
+
132
+ ## Full commercial pack
133
+
134
+ This Hugging Face repo is a **500-household, 6-month sample**. The production pack scales to:
135
+
136
+ - 5,000 to 25,000+ households
137
+ - 12 months or longer historical windows
138
+ - additional tables for tariffs, outage events, service tickets, contracts, installations, enrollment, and portfolio KPIs
139
+ - CSV and Parquet delivery
140
+ - custom generation and buyer-specific variants
141
+
142
+ Commercial licensing and storefront access:
143
+
144
+ - [SolsticeAI Data Storefront](https://solsticeai.mydatastorefront.com)
145
+ - [SolsticeAI](https://solsticestudio.ai)
146
+
147
+ ## Citation
148
+
149
+ ```bibtex
150
+ @dataset{solstice_residential_energy_pack_2026,
151
+ title = {Solstice Residential Energy Pack (Sample)},
152
+ author = {SolsticeAI},
153
+ year = {2026},
154
+ publisher = {Hugging Face},
155
+ url = {https://huggingface.co/datasets/justinsolstice/solstice-residential-energy-pack}
156
+ }
157
+ ```
SCHEMA.md ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SIMA Residential Energy Simulation Pack - Schema
2
+
3
+ This pack is a relational synthetic dataset for residential solar-plus-storage operations, VPP dispatch, outage resilience, and subscriber economics. It is designed for dashboarding, workflow testing, and predictive-model validation without customer-data exposure.
4
+
5
+ The schema is optimized around:
6
+
7
+ - household archetypes and contract structure
8
+ - solar and battery asset metadata
9
+ - utility tariff and savings logic
10
+ - dispatch participation and incentives
11
+ - outage resilience and backup performance
12
+ - billing, churn, and subscriber value
13
+ - fleet operations and portfolio KPIs
14
+
15
+ ## Top-level design
16
+
17
+ This is a multi-table pack with daily and monthly fact tables. The canonical release format should be Parquet, with CSV mirrors for easier import and demos.
18
+
19
+ ## Entity model
20
+
21
+ ### `households`
22
+
23
+ One row per synthetic customer home.
24
+
25
+ | Field | Type | Notes |
26
+ |---|---|---|
27
+ | `household_id` | string | Stable household key |
28
+ | `state` | string | Two-letter state code |
29
+ | `utility_territory` | string | Synthetic utility-territory name |
30
+ | `climate_zone` | enum | `coastal`, `desert`, `temperate`, `humid_subtropical`, `mountain`, `island` |
31
+ | `home_type` | enum | `single_family`, `townhome`, `small_multifamily` |
32
+ | `roof_profile` | enum | `ideal`, `good`, `constrained`, `shaded` |
33
+ | `income_band` | enum | `lower`, `middle`, `upper_middle`, `higher` |
34
+ | `ev_owner_flag` | bool | EV adoption proxy |
35
+ | `electrification_profile` | enum | `baseline`, `heat_pump`, `ev_ready`, `full_electrified` |
36
+ | `outage_risk_band` | enum | `low`, `moderate`, `high` |
37
+
38
+ ### `subscriber_contracts`
39
+
40
+ One row per active or historical contract.
41
+
42
+ | Field | Type | Notes |
43
+ |---|---|---|
44
+ | `contract_id` | string | Stable contract key |
45
+ | `household_id` | string | FK -> `households.household_id` |
46
+ | `subscription_type` | enum | `ppa`, `lease`, `subscription_flex`, `loan_like` |
47
+ | `term_years` | int | Contract term length |
48
+ | `contract_start_date` | date | Start date |
49
+ | `monthly_minimum_payment` | float | Minimum monthly payment |
50
+ | `flex_rate_per_kwh` | float | Usage-based overage or flex price |
51
+ | `escalator_pct` | float | Annual escalator |
52
+ | `battery_included_flag` | bool | Battery attachment |
53
+ | `vpp_eligible_flag` | bool | Program eligibility |
54
+ | `status` | enum | `active`, `renewed`, `churned` |
55
+ | `renewal_flag` | bool | Renewal signal |
56
+ | `churn_flag` | bool | Churn signal |
57
+
58
+ ### `installation_pipeline`
59
+
60
+ Sales-to-activation project timeline.
61
+
62
+ | Field | Type | Notes |
63
+ |---|---|---|
64
+ | `project_id` | string | Stable project key |
65
+ | `household_id` | string | FK -> `households.household_id` |
66
+ | `lead_source` | enum | `direct`, `partner`, `referral`, `digital`, `field_sales` |
67
+ | `signed_date` | date | Customer signature date |
68
+ | `permit_ready_date` | date | Permit-complete date |
69
+ | `install_date` | date | Install date |
70
+ | `pto_date` | date | Permission-to-operate date |
71
+ | `battery_attachment_flag` | bool | Attached battery |
72
+ | `project_cycle_days` | int | Signed-to-PTO duration |
73
+ | `cancellation_flag` | bool | Cancellation signal |
74
+ | `cancellation_reason` | enum/null | Cancellation category |
75
+
76
+ ### `solar_systems`
77
+
78
+ Installed solar metadata.
79
+
80
+ | Field | Type | Notes |
81
+ |---|---|---|
82
+ | `system_id` | string | Stable system key |
83
+ | `household_id` | string | FK -> `households.household_id` |
84
+ | `kw_dc` | float | Nameplate DC size |
85
+ | `module_count` | int | Module count |
86
+ | `inverter_type` | enum | `string`, `microinverter`, `hybrid` |
87
+ | `azimuth_band` | enum | `south`, `southwest`, `east_west`, `mixed` |
88
+ | `shading_band` | enum | `low`, `moderate`, `high` |
89
+ | `expected_annual_kwh` | float | Modeled annual generation |
90
+ | `commission_date` | date | System commission date |
91
+
92
+ ### `battery_systems`
93
+
94
+ Installed battery metadata.
95
+
96
+ | Field | Type | Notes |
97
+ |---|---|---|
98
+ | `battery_id` | string | Stable battery key |
99
+ | `household_id` | string | FK -> `households.household_id` |
100
+ | `usable_kwh` | float | Usable energy capacity |
101
+ | `power_kw` | float | Power rating |
102
+ | `chemistry` | enum | `lithium_iron_phosphate`, `lithium_nmc` |
103
+ | `reserve_setting_pct` | float | Customer reserve floor |
104
+ | `vpp_enabled_flag` | bool | Dispatch participation enabled |
105
+ | `install_date` | date | Install date |
106
+ | `replacement_due_year` | int | Expected replacement year |
107
+
108
+ ### `utility_tariffs`
109
+
110
+ Tariff metadata by territory and plan.
111
+
112
+ | Field | Type | Notes |
113
+ |---|---|---|
114
+ | `tariff_id` | string | Stable tariff key |
115
+ | `utility_territory` | string | Territory name |
116
+ | `state` | string | State code |
117
+ | `tariff_name` | string | Synthetic tariff plan |
118
+ | `tariff_type` | enum | `flat`, `tou`, `demand_like`, `export_sensitive` |
119
+ | `peak_start_hour` | int | Peak start hour |
120
+ | `peak_end_hour` | int | Peak end hour |
121
+ | `summer_peak_rate` | float | Peak import rate |
122
+ | `offpeak_rate` | float | Off-peak import rate |
123
+ | `fixed_monthly_charge` | float | Fixed charge |
124
+ | `net_billing_export_rate` | float | Export compensation |
125
+
126
+ ### `daily_generation_consumption`
127
+
128
+ Daily energy and savings fact table.
129
+
130
+ | Field | Type | Notes |
131
+ |---|---|---|
132
+ | `date` | date | Day grain |
133
+ | `household_id` | string | FK -> `households.household_id` |
134
+ | `solar_generation_kwh` | float | Daily generation |
135
+ | `home_load_kwh` | float | Daily load |
136
+ | `grid_import_kwh` | float | Net import |
137
+ | `grid_export_kwh` | float | Net export |
138
+ | `battery_charge_kwh` | float | Battery charging |
139
+ | `battery_discharge_kwh` | float | Battery discharging |
140
+ | `state_of_charge_end_pct` | float | End-of-day battery state |
141
+ | `bill_without_system_usd` | float | Counterfactual utility bill |
142
+ | `bill_with_system_usd` | float | Utility bill with DERs |
143
+ | `customer_savings_usd` | float | Daily customer savings |
144
+
145
+ ### `dispatch_events`
146
+
147
+ Program dispatch fact table.
148
+
149
+ | Field | Type | Notes |
150
+ |---|---|---|
151
+ | `dispatch_event_id` | string | Stable dispatch key |
152
+ | `date` | date | Event date |
153
+ | `household_id` | string | FK -> `households.household_id` |
154
+ | `program_id` | string | Program name/id |
155
+ | `dispatch_type` | enum | `peak_shave`, `capacity_event`, `emergency_event`, `market_dispatch` |
156
+ | `requested_kwh` | float | Requested delivery |
157
+ | `delivered_kwh` | float | Actual delivery |
158
+ | `duration_minutes` | int | Event length |
159
+ | `participated_flag` | bool | Participation signal |
160
+ | `non_participation_reason` | enum/null | Reason when not participating |
161
+ | `customer_incentive_usd` | float | Event incentive value |
162
+ | `grid_value_usd` | float | Program value estimate |
163
+
164
+ ### `vpp_program_enrollment`
165
+
166
+ Program enrollment metadata.
167
+
168
+ | Field | Type | Notes |
169
+ |---|---|---|
170
+ | `enrollment_id` | string | Stable enrollment key |
171
+ | `household_id` | string | FK -> `households.household_id` |
172
+ | `program_name` | string | Program label |
173
+ | `market_type` | enum | `utility`, `iso`, `aggregator`, `resilience` |
174
+ | `enrollment_date` | date | Enrollment date |
175
+ | `opt_out_flag` | bool | Customer opt-out |
176
+ | `participation_score` | float | Participation likelihood proxy |
177
+ | `seasonal_availability_band` | enum | `low`, `moderate`, `high` |
178
+
179
+ ### `outage_events`
180
+
181
+ Backup and resilience table.
182
+
183
+ | Field | Type | Notes |
184
+ |---|---|---|
185
+ | `outage_event_id` | string | Stable outage key |
186
+ | `date` | date | Outage date |
187
+ | `household_id` | string | FK -> `households.household_id` |
188
+ | `outage_duration_minutes` | int | Duration |
189
+ | `critical_load_served_kwh` | float | Critical load supported |
190
+ | `backup_duration_hours` | float | Backup runtime |
191
+ | `grid_down_flag` | bool | Grid-down event |
192
+ | `customer_outage_avoided_flag` | bool | Whether backup protected load |
193
+ | `unserved_load_kwh` | float | Unserved energy |
194
+
195
+ ### `billing_and_savings`
196
+
197
+ Monthly economics table.
198
+
199
+ | Field | Type | Notes |
200
+ |---|---|---|
201
+ | `billing_month` | string | `YYYY-MM` month |
202
+ | `household_id` | string | FK -> `households.household_id` |
203
+ | `contract_id` | string | FK -> `subscriber_contracts.contract_id` |
204
+ | `utility_bill_without_system_usd` | float | Counterfactual monthly bill |
205
+ | `utility_bill_with_system_usd` | float | Monthly utility bill with system |
206
+ | `subscription_payment_usd` | float | Subscription payment |
207
+ | `vpp_credits_usd` | float | Dispatch or participation credits |
208
+ | `net_customer_value_usd` | float | Net monthly customer value |
209
+ | `overage_kwh` | float | Usage overage proxy |
210
+
211
+ ### `service_tickets`
212
+
213
+ Fleet reliability and support.
214
+
215
+ | Field | Type | Notes |
216
+ |---|---|---|
217
+ | `ticket_id` | string | Stable ticket key |
218
+ | `household_id` | string | FK -> `households.household_id` |
219
+ | `open_date` | date | Ticket open date |
220
+ | `issue_category` | enum | `battery_alert`, `inverter_fault`, `connectivity`, `production_drop`, `customer_question` |
221
+ | `severity_band` | enum | `low`, `moderate`, `high` |
222
+ | `truck_roll_required_flag` | bool | Truck roll requirement |
223
+ | `resolution_days` | int | Resolution duration |
224
+ | `equipment_replaced_flag` | bool | Replacement event |
225
+
226
+ ### `channel_attribution`
227
+
228
+ Acquisition channel summary.
229
+
230
+ | Field | Type | Notes |
231
+ |---|---|---|
232
+ | `household_id` | string | FK -> `households.household_id` |
233
+ | `channel` | enum | `partner`, `digital`, `referral`, `direct`, `field_sales` |
234
+ | `campaign_type` | enum | Acquisition campaign type |
235
+ | `cac_usd` | float | Customer acquisition cost proxy |
236
+ | `conversion_days` | int | Lead-to-sign duration |
237
+ | `sales_motion` | enum | `inside_sales`, `field`, `partner_led`, `self_serve_assisted` |
238
+
239
+ ### `portfolio_kpis_daily`
240
+
241
+ Fleet-level KPI rollup.
242
+
243
+ | Field | Type | Notes |
244
+ |---|---|---|
245
+ | `date` | date | Day grain |
246
+ | `state` | string | State rollup |
247
+ | `active_households` | int | Active subscribed homes |
248
+ | `active_batteries` | int | Active batteries |
249
+ | `dispatch_events_count` | int | Daily dispatch events |
250
+ | `total_dispatched_kwh` | float | Total delivered dispatch |
251
+ | `participation_rate` | float | Daily participation rate |
252
+ | `avg_customer_savings_usd` | float | Daily average savings |
253
+ | `avg_bill_reduction_pct` | float | Average bill reduction |
254
+ | `outages_supported_count` | int | Outages supported |
255
+ | `service_ticket_rate` | float | Daily service ticket rate |
256
+ | `estimated_grid_value_usd` | float | Portfolio-level dispatch value |
257
+
258
+ ## Key relationships
259
+
260
+ - `households.household_id` joins to contracts, assets, timeseries, outage, service, and attribution tables
261
+ - `subscriber_contracts.contract_id` joins to `billing_and_savings`
262
+ - `utility_tariffs.utility_territory` joins to `households.utility_territory`
263
+ - `households.state` joins to `portfolio_kpis_daily.state`
264
+
265
+ ## Invariants
266
+
267
+ - `bill_without_system_usd >= bill_with_system_usd` for most rows, though some low-value days may be near zero savings
268
+ - `grid_import_kwh >= 0` and `grid_export_kwh >= 0`
269
+ - `delivered_kwh <= requested_kwh` on dispatch rows
270
+ - `customer_outage_avoided_flag == true` implies `critical_load_served_kwh > 0`
271
+ - `active_batteries <= active_households`
272
+
273
+ ## Causal realism targets
274
+
275
+ The generator should preserve:
276
+
277
+ - higher cooling load and EV ownership -> higher evening battery value
278
+ - high-rate tariffs -> higher apparent savings opportunity
279
+ - battery-equipped homes -> higher outage resilience and dispatch eligibility
280
+ - high participation score -> stronger dispatch response
281
+ - more service burden -> lower net customer value and higher churn likelihood
282
+ - outage-prone markets -> stronger resilience event value
283
+
284
+ ## MVP release recommendation
285
+
286
+ For the first production-ready pack:
287
+
288
+ - 5,000 households
289
+ - 12 months
290
+ - daily grain
291
+ - all tables included
292
+
293
+ ## Premium expansion
294
+
295
+ For the larger commercial pack:
296
+
297
+ - 25,000 to 100,000+ households
298
+ - 24 to 36 months
299
+ - optional sub-daily load and dispatch tables
300
+ - richer degradation and replacement logic
billing_and_savings.csv ADDED
The diff for this file is too large to render. See raw diff
 
daily_generation_consumption.csv ADDED
The diff for this file is too large to render. See raw diff
 
dashboard_suggestions.csv ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ dashboard_name,chart_name,chart_type,primary_table,x_axis,y_axis,filter_suggestion
2
+ VPP Overview,Dispatch Volume by State,line,portfolio_kpis_daily,date,total_dispatched_kwh,state
3
+ Customer Value,Monthly Net Customer Value,line,billing_and_savings,billing_month,net_customer_value_usd,"state,contract_type"
4
+ Outage Resilience,Outages Supported by Market,bar,portfolio_kpis_daily,state,outages_supported_count,date
dispatch_events.csv ADDED
The diff for this file is too large to render. See raw diff
 
households.csv ADDED
@@ -0,0 +1,501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ household_id,state,utility_territory,climate_zone,home_type,roof_profile,income_band,ev_owner_flag,electrification_profile,outage_risk_band
2
+ H000001,CA,Golden Coast Electric,coastal,single_family,ideal,lower,True,baseline,low
3
+ H000002,TX,Gulf Grid Electric,humid_subtropical,townhome,good,upper_middle,False,ev_ready,high
4
+ H000003,AZ,Copper State Power,desert,single_family,shaded,middle,True,baseline,moderate
5
+ H000004,FL,Peninsula Electric,humid_subtropical,single_family,shaded,higher,False,full_electrified,high
6
+ H000005,HI,Island Grid Company,island,single_family,ideal,upper_middle,False,baseline,high
7
+ H000006,NV,Silver State Electric,desert,small_multifamily,good,higher,True,baseline,high
8
+ H000007,CA,Pacific Valley Electric,coastal,single_family,constrained,upper_middle,False,heat_pump,high
9
+ H000008,TX,Gulf Grid Electric,humid_subtropical,townhome,constrained,higher,False,baseline,low
10
+ H000009,AZ,Copper State Power,desert,small_multifamily,constrained,higher,False,baseline,low
11
+ H000010,FL,Sunbelt Utility,humid_subtropical,townhome,constrained,upper_middle,False,baseline,moderate
12
+ H000011,HI,Island Grid Company,island,single_family,ideal,lower,False,ev_ready,low
13
+ H000012,NV,Silver State Electric,desert,single_family,shaded,upper_middle,False,baseline,low
14
+ H000013,CA,Pacific Valley Electric,coastal,single_family,ideal,middle,True,ev_ready,high
15
+ H000014,TX,Lone Star Power,humid_subtropical,small_multifamily,good,middle,False,baseline,moderate
16
+ H000015,AZ,Copper State Power,desert,single_family,ideal,upper_middle,True,heat_pump,moderate
17
+ H000016,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,upper_middle,False,heat_pump,low
18
+ H000017,HI,Island Grid Company,island,single_family,good,lower,False,heat_pump,moderate
19
+ H000018,NV,Silver State Electric,desert,single_family,good,lower,False,baseline,high
20
+ H000019,CA,Pacific Valley Electric,coastal,townhome,shaded,higher,False,baseline,moderate
21
+ H000020,TX,Lone Star Power,humid_subtropical,townhome,ideal,middle,False,baseline,moderate
22
+ H000021,AZ,Desert Horizon Electric,desert,single_family,good,middle,False,ev_ready,low
23
+ H000022,FL,Peninsula Electric,humid_subtropical,single_family,good,middle,False,ev_ready,moderate
24
+ H000023,HI,Island Grid Company,island,single_family,ideal,lower,False,heat_pump,moderate
25
+ H000024,NV,Silver State Electric,desert,single_family,good,middle,False,ev_ready,high
26
+ H000025,CA,Pacific Valley Electric,coastal,townhome,good,middle,False,ev_ready,moderate
27
+ H000026,TX,Gulf Grid Electric,humid_subtropical,townhome,good,higher,False,heat_pump,moderate
28
+ H000027,AZ,Desert Horizon Electric,desert,single_family,ideal,upper_middle,False,baseline,moderate
29
+ H000028,FL,Peninsula Electric,humid_subtropical,townhome,ideal,higher,False,heat_pump,high
30
+ H000029,HI,Island Grid Company,island,small_multifamily,ideal,middle,False,heat_pump,moderate
31
+ H000030,NV,Silver State Electric,desert,small_multifamily,constrained,higher,False,ev_ready,moderate
32
+ H000031,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,False,heat_pump,moderate
33
+ H000032,TX,Lone Star Power,humid_subtropical,single_family,good,higher,False,ev_ready,low
34
+ H000033,AZ,Copper State Power,desert,single_family,ideal,middle,False,baseline,low
35
+ H000034,FL,Peninsula Electric,humid_subtropical,townhome,constrained,upper_middle,False,baseline,low
36
+ H000035,HI,Island Grid Company,island,single_family,constrained,middle,False,ev_ready,high
37
+ H000036,NV,Silver State Electric,desert,single_family,ideal,lower,False,ev_ready,low
38
+ H000037,CA,Golden Coast Electric,coastal,small_multifamily,ideal,middle,False,baseline,high
39
+ H000038,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,middle,False,full_electrified,moderate
40
+ H000039,AZ,Desert Horizon Electric,desert,townhome,constrained,upper_middle,False,heat_pump,high
41
+ H000040,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,higher,False,ev_ready,moderate
42
+ H000041,HI,Island Grid Company,island,single_family,constrained,middle,False,ev_ready,moderate
43
+ H000042,NV,Silver State Electric,desert,single_family,good,higher,False,ev_ready,low
44
+ H000043,CA,Pacific Valley Electric,coastal,single_family,good,upper_middle,True,full_electrified,moderate
45
+ H000044,TX,Lone Star Power,humid_subtropical,single_family,ideal,higher,False,ev_ready,low
46
+ H000045,AZ,Copper State Power,desert,single_family,ideal,upper_middle,False,baseline,low
47
+ H000046,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,lower,False,full_electrified,high
48
+ H000047,HI,Island Grid Company,island,single_family,good,middle,False,heat_pump,low
49
+ H000048,NV,Silver State Electric,desert,single_family,good,higher,False,ev_ready,moderate
50
+ H000049,CA,Golden Coast Electric,coastal,single_family,ideal,lower,False,baseline,high
51
+ H000050,TX,Lone Star Power,humid_subtropical,single_family,ideal,upper_middle,False,full_electrified,low
52
+ H000051,AZ,Copper State Power,desert,single_family,ideal,lower,False,heat_pump,low
53
+ H000052,FL,Peninsula Electric,humid_subtropical,single_family,good,middle,True,full_electrified,moderate
54
+ H000053,HI,Island Grid Company,island,small_multifamily,good,upper_middle,False,heat_pump,high
55
+ H000054,NV,Silver State Electric,desert,townhome,good,higher,False,heat_pump,low
56
+ H000055,CA,Golden Coast Electric,coastal,single_family,good,middle,False,baseline,high
57
+ H000056,TX,Lone Star Power,humid_subtropical,single_family,good,upper_middle,False,heat_pump,moderate
58
+ H000057,AZ,Desert Horizon Electric,desert,single_family,shaded,upper_middle,False,ev_ready,moderate
59
+ H000058,FL,Peninsula Electric,humid_subtropical,townhome,ideal,middle,False,baseline,low
60
+ H000059,HI,Island Grid Company,island,single_family,ideal,middle,False,full_electrified,moderate
61
+ H000060,NV,Silver State Electric,desert,townhome,shaded,upper_middle,False,baseline,low
62
+ H000061,CA,Pacific Valley Electric,coastal,townhome,ideal,higher,True,full_electrified,moderate
63
+ H000062,TX,Lone Star Power,humid_subtropical,single_family,ideal,middle,False,heat_pump,moderate
64
+ H000063,AZ,Desert Horizon Electric,desert,single_family,ideal,higher,True,baseline,high
65
+ H000064,FL,Sunbelt Utility,humid_subtropical,single_family,good,higher,False,baseline,moderate
66
+ H000065,HI,Island Grid Company,island,single_family,ideal,lower,False,baseline,high
67
+ H000066,NV,Silver State Electric,desert,townhome,good,middle,False,baseline,high
68
+ H000067,CA,Golden Coast Electric,coastal,small_multifamily,good,middle,True,baseline,high
69
+ H000068,TX,Lone Star Power,humid_subtropical,single_family,constrained,lower,False,baseline,moderate
70
+ H000069,AZ,Copper State Power,desert,townhome,good,upper_middle,False,baseline,moderate
71
+ H000070,FL,Sunbelt Utility,humid_subtropical,small_multifamily,good,lower,True,baseline,low
72
+ H000071,HI,Island Grid Company,island,single_family,ideal,lower,False,ev_ready,moderate
73
+ H000072,NV,Silver State Electric,desert,single_family,good,upper_middle,False,full_electrified,low
74
+ H000073,CA,Golden Coast Electric,coastal,single_family,good,middle,False,baseline,moderate
75
+ H000074,TX,Lone Star Power,humid_subtropical,single_family,shaded,middle,False,ev_ready,high
76
+ H000075,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,False,baseline,moderate
77
+ H000076,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,higher,False,ev_ready,low
78
+ H000077,HI,Island Grid Company,island,single_family,good,lower,False,ev_ready,low
79
+ H000078,NV,Silver State Electric,desert,single_family,ideal,middle,False,ev_ready,high
80
+ H000079,CA,Golden Coast Electric,coastal,single_family,ideal,middle,True,full_electrified,high
81
+ H000080,TX,Gulf Grid Electric,humid_subtropical,single_family,shaded,lower,False,full_electrified,low
82
+ H000081,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,False,full_electrified,moderate
83
+ H000082,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,upper_middle,False,baseline,low
84
+ H000083,HI,Island Grid Company,island,single_family,good,middle,False,baseline,moderate
85
+ H000084,NV,Silver State Electric,desert,single_family,good,higher,False,full_electrified,low
86
+ H000085,CA,Golden Coast Electric,coastal,single_family,ideal,middle,False,baseline,low
87
+ H000086,TX,Gulf Grid Electric,humid_subtropical,small_multifamily,shaded,middle,False,baseline,moderate
88
+ H000087,AZ,Desert Horizon Electric,desert,single_family,shaded,higher,False,baseline,low
89
+ H000088,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,lower,False,ev_ready,low
90
+ H000089,HI,Island Grid Company,island,single_family,ideal,higher,False,ev_ready,low
91
+ H000090,NV,Silver State Electric,desert,townhome,good,higher,False,ev_ready,moderate
92
+ H000091,CA,Pacific Valley Electric,coastal,single_family,good,middle,False,heat_pump,moderate
93
+ H000092,TX,Lone Star Power,humid_subtropical,small_multifamily,ideal,higher,False,baseline,moderate
94
+ H000093,AZ,Copper State Power,desert,single_family,good,middle,False,baseline,low
95
+ H000094,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,middle,False,baseline,high
96
+ H000095,HI,Island Grid Company,island,single_family,ideal,upper_middle,False,ev_ready,moderate
97
+ H000096,NV,Silver State Electric,desert,single_family,good,lower,False,baseline,high
98
+ H000097,CA,Golden Coast Electric,coastal,single_family,ideal,higher,False,baseline,low
99
+ H000098,TX,Lone Star Power,humid_subtropical,single_family,ideal,lower,False,baseline,low
100
+ H000099,AZ,Copper State Power,desert,single_family,ideal,upper_middle,True,full_electrified,high
101
+ H000100,FL,Sunbelt Utility,humid_subtropical,single_family,good,lower,False,baseline,moderate
102
+ H000101,HI,Island Grid Company,island,single_family,good,middle,False,baseline,high
103
+ H000102,NV,Silver State Electric,desert,single_family,constrained,middle,False,heat_pump,low
104
+ H000103,CA,Golden Coast Electric,coastal,townhome,constrained,middle,False,ev_ready,low
105
+ H000104,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,lower,False,baseline,moderate
106
+ H000105,AZ,Desert Horizon Electric,desert,single_family,shaded,upper_middle,False,full_electrified,low
107
+ H000106,FL,Peninsula Electric,humid_subtropical,single_family,ideal,lower,False,ev_ready,high
108
+ H000107,HI,Island Grid Company,island,single_family,shaded,lower,False,ev_ready,low
109
+ H000108,NV,Silver State Electric,desert,single_family,good,upper_middle,False,heat_pump,low
110
+ H000109,CA,Golden Coast Electric,coastal,small_multifamily,ideal,higher,False,ev_ready,low
111
+ H000110,TX,Lone Star Power,humid_subtropical,single_family,ideal,higher,False,full_electrified,low
112
+ H000111,AZ,Desert Horizon Electric,desert,townhome,good,middle,True,full_electrified,moderate
113
+ H000112,FL,Sunbelt Utility,humid_subtropical,townhome,constrained,upper_middle,False,full_electrified,moderate
114
+ H000113,HI,Island Grid Company,island,small_multifamily,good,middle,False,heat_pump,low
115
+ H000114,NV,Silver State Electric,desert,single_family,good,middle,False,heat_pump,moderate
116
+ H000115,CA,Golden Coast Electric,coastal,single_family,good,middle,False,baseline,low
117
+ H000116,TX,Gulf Grid Electric,humid_subtropical,single_family,good,middle,False,full_electrified,low
118
+ H000117,AZ,Desert Horizon Electric,desert,single_family,shaded,higher,False,baseline,high
119
+ H000118,FL,Peninsula Electric,humid_subtropical,single_family,ideal,middle,False,ev_ready,moderate
120
+ H000119,HI,Island Grid Company,island,single_family,good,lower,False,ev_ready,low
121
+ H000120,NV,Silver State Electric,desert,small_multifamily,shaded,higher,False,baseline,low
122
+ H000121,CA,Pacific Valley Electric,coastal,single_family,ideal,higher,False,baseline,high
123
+ H000122,TX,Lone Star Power,humid_subtropical,single_family,constrained,higher,False,baseline,moderate
124
+ H000123,AZ,Copper State Power,desert,single_family,good,higher,True,baseline,low
125
+ H000124,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,middle,False,baseline,low
126
+ H000125,HI,Island Grid Company,island,single_family,constrained,upper_middle,True,heat_pump,moderate
127
+ H000126,NV,Silver State Electric,desert,single_family,good,upper_middle,False,heat_pump,low
128
+ H000127,CA,Pacific Valley Electric,coastal,single_family,shaded,upper_middle,True,heat_pump,low
129
+ H000128,TX,Gulf Grid Electric,humid_subtropical,single_family,good,higher,True,heat_pump,low
130
+ H000129,AZ,Desert Horizon Electric,desert,townhome,ideal,upper_middle,False,heat_pump,moderate
131
+ H000130,FL,Sunbelt Utility,humid_subtropical,townhome,ideal,middle,True,heat_pump,low
132
+ H000131,HI,Island Grid Company,island,townhome,good,lower,False,full_electrified,moderate
133
+ H000132,NV,Silver State Electric,desert,single_family,good,upper_middle,False,baseline,low
134
+ H000133,CA,Pacific Valley Electric,coastal,townhome,shaded,middle,False,baseline,moderate
135
+ H000134,TX,Gulf Grid Electric,humid_subtropical,townhome,good,upper_middle,False,baseline,moderate
136
+ H000135,AZ,Desert Horizon Electric,desert,single_family,good,higher,False,baseline,high
137
+ H000136,FL,Peninsula Electric,humid_subtropical,townhome,ideal,middle,False,full_electrified,low
138
+ H000137,HI,Island Grid Company,island,townhome,good,lower,False,full_electrified,high
139
+ H000138,NV,Silver State Electric,desert,townhome,ideal,upper_middle,False,baseline,high
140
+ H000139,CA,Golden Coast Electric,coastal,single_family,good,upper_middle,False,baseline,moderate
141
+ H000140,TX,Lone Star Power,humid_subtropical,townhome,ideal,lower,False,heat_pump,high
142
+ H000141,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,False,heat_pump,low
143
+ H000142,FL,Sunbelt Utility,humid_subtropical,townhome,ideal,higher,False,ev_ready,moderate
144
+ H000143,HI,Island Grid Company,island,single_family,constrained,upper_middle,False,baseline,high
145
+ H000144,NV,Silver State Electric,desert,single_family,shaded,middle,False,baseline,high
146
+ H000145,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,False,baseline,moderate
147
+ H000146,TX,Gulf Grid Electric,humid_subtropical,townhome,ideal,higher,False,baseline,low
148
+ H000147,AZ,Desert Horizon Electric,desert,single_family,shaded,upper_middle,False,ev_ready,moderate
149
+ H000148,FL,Sunbelt Utility,humid_subtropical,small_multifamily,constrained,middle,False,baseline,moderate
150
+ H000149,HI,Island Grid Company,island,townhome,ideal,middle,False,ev_ready,high
151
+ H000150,NV,Silver State Electric,desert,townhome,good,middle,False,baseline,high
152
+ H000151,CA,Golden Coast Electric,coastal,townhome,ideal,lower,True,full_electrified,low
153
+ H000152,TX,Lone Star Power,humid_subtropical,single_family,ideal,higher,False,full_electrified,low
154
+ H000153,AZ,Desert Horizon Electric,desert,townhome,ideal,upper_middle,False,baseline,low
155
+ H000154,FL,Sunbelt Utility,humid_subtropical,townhome,good,higher,False,ev_ready,low
156
+ H000155,HI,Island Grid Company,island,single_family,ideal,lower,False,heat_pump,high
157
+ H000156,NV,Silver State Electric,desert,single_family,constrained,upper_middle,False,heat_pump,low
158
+ H000157,CA,Golden Coast Electric,coastal,single_family,good,middle,False,full_electrified,low
159
+ H000158,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,middle,False,heat_pump,moderate
160
+ H000159,AZ,Copper State Power,desert,small_multifamily,ideal,upper_middle,True,baseline,low
161
+ H000160,FL,Sunbelt Utility,humid_subtropical,single_family,good,upper_middle,False,baseline,low
162
+ H000161,HI,Island Grid Company,island,townhome,ideal,middle,False,full_electrified,low
163
+ H000162,NV,Silver State Electric,desert,townhome,ideal,middle,False,baseline,low
164
+ H000163,CA,Golden Coast Electric,coastal,single_family,good,higher,True,heat_pump,low
165
+ H000164,TX,Lone Star Power,humid_subtropical,single_family,ideal,middle,False,heat_pump,moderate
166
+ H000165,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,True,full_electrified,high
167
+ H000166,FL,Peninsula Electric,humid_subtropical,single_family,good,middle,False,full_electrified,moderate
168
+ H000167,HI,Island Grid Company,island,single_family,good,middle,False,baseline,low
169
+ H000168,NV,Silver State Electric,desert,single_family,constrained,middle,False,heat_pump,low
170
+ H000169,CA,Pacific Valley Electric,coastal,townhome,ideal,middle,False,ev_ready,moderate
171
+ H000170,TX,Gulf Grid Electric,humid_subtropical,single_family,good,upper_middle,False,baseline,low
172
+ H000171,AZ,Desert Horizon Electric,desert,single_family,constrained,middle,False,heat_pump,low
173
+ H000172,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,upper_middle,False,full_electrified,low
174
+ H000173,HI,Island Grid Company,island,single_family,constrained,higher,False,ev_ready,low
175
+ H000174,NV,Silver State Electric,desert,single_family,good,higher,False,heat_pump,low
176
+ H000175,CA,Golden Coast Electric,coastal,small_multifamily,ideal,middle,False,full_electrified,high
177
+ H000176,TX,Gulf Grid Electric,humid_subtropical,townhome,constrained,higher,False,baseline,low
178
+ H000177,AZ,Desert Horizon Electric,desert,single_family,shaded,middle,False,heat_pump,low
179
+ H000178,FL,Peninsula Electric,humid_subtropical,single_family,ideal,middle,True,baseline,moderate
180
+ H000179,HI,Island Grid Company,island,single_family,ideal,upper_middle,False,ev_ready,moderate
181
+ H000180,NV,Silver State Electric,desert,single_family,good,higher,False,baseline,low
182
+ H000181,CA,Pacific Valley Electric,coastal,single_family,ideal,upper_middle,True,full_electrified,moderate
183
+ H000182,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,upper_middle,False,baseline,low
184
+ H000183,AZ,Copper State Power,desert,single_family,constrained,higher,False,baseline,high
185
+ H000184,FL,Sunbelt Utility,humid_subtropical,townhome,good,upper_middle,False,full_electrified,moderate
186
+ H000185,HI,Island Grid Company,island,single_family,ideal,middle,False,full_electrified,high
187
+ H000186,NV,Silver State Electric,desert,single_family,ideal,lower,False,baseline,high
188
+ H000187,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,False,baseline,low
189
+ H000188,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,middle,False,baseline,low
190
+ H000189,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,False,baseline,low
191
+ H000190,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,middle,False,ev_ready,moderate
192
+ H000191,HI,Island Grid Company,island,single_family,ideal,middle,False,baseline,high
193
+ H000192,NV,Silver State Electric,desert,single_family,ideal,higher,True,baseline,low
194
+ H000193,CA,Pacific Valley Electric,coastal,single_family,good,higher,True,baseline,low
195
+ H000194,TX,Lone Star Power,humid_subtropical,townhome,ideal,upper_middle,True,full_electrified,low
196
+ H000195,AZ,Desert Horizon Electric,desert,single_family,ideal,upper_middle,False,baseline,high
197
+ H000196,FL,Sunbelt Utility,humid_subtropical,single_family,good,upper_middle,False,full_electrified,low
198
+ H000197,HI,Island Grid Company,island,single_family,ideal,upper_middle,False,ev_ready,high
199
+ H000198,NV,Silver State Electric,desert,single_family,ideal,middle,False,baseline,low
200
+ H000199,CA,Golden Coast Electric,coastal,single_family,good,middle,False,heat_pump,moderate
201
+ H000200,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,upper_middle,True,baseline,moderate
202
+ H000201,AZ,Desert Horizon Electric,desert,small_multifamily,good,middle,False,baseline,high
203
+ H000202,FL,Sunbelt Utility,humid_subtropical,single_family,good,lower,False,baseline,moderate
204
+ H000203,HI,Island Grid Company,island,small_multifamily,constrained,lower,False,ev_ready,moderate
205
+ H000204,NV,Silver State Electric,desert,single_family,good,middle,False,heat_pump,high
206
+ H000205,CA,Golden Coast Electric,coastal,single_family,good,higher,False,heat_pump,high
207
+ H000206,TX,Lone Star Power,humid_subtropical,townhome,shaded,upper_middle,False,baseline,low
208
+ H000207,AZ,Copper State Power,desert,single_family,ideal,lower,False,baseline,high
209
+ H000208,FL,Peninsula Electric,humid_subtropical,single_family,ideal,higher,False,ev_ready,moderate
210
+ H000209,HI,Island Grid Company,island,single_family,good,upper_middle,False,full_electrified,low
211
+ H000210,NV,Silver State Electric,desert,townhome,good,middle,False,baseline,moderate
212
+ H000211,CA,Pacific Valley Electric,coastal,single_family,constrained,middle,False,baseline,low
213
+ H000212,TX,Gulf Grid Electric,humid_subtropical,single_family,good,upper_middle,False,baseline,moderate
214
+ H000213,AZ,Desert Horizon Electric,desert,single_family,shaded,middle,False,ev_ready,moderate
215
+ H000214,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,higher,False,ev_ready,low
216
+ H000215,HI,Island Grid Company,island,single_family,ideal,upper_middle,False,ev_ready,moderate
217
+ H000216,NV,Silver State Electric,desert,single_family,ideal,middle,False,heat_pump,moderate
218
+ H000217,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,True,heat_pump,moderate
219
+ H000218,TX,Gulf Grid Electric,humid_subtropical,townhome,shaded,lower,False,heat_pump,moderate
220
+ H000219,AZ,Desert Horizon Electric,desert,small_multifamily,shaded,middle,False,baseline,high
221
+ H000220,FL,Peninsula Electric,humid_subtropical,single_family,shaded,higher,True,baseline,high
222
+ H000221,HI,Island Grid Company,island,small_multifamily,constrained,middle,True,baseline,high
223
+ H000222,NV,Silver State Electric,desert,townhome,constrained,upper_middle,False,ev_ready,moderate
224
+ H000223,CA,Golden Coast Electric,coastal,single_family,ideal,lower,False,baseline,low
225
+ H000224,TX,Lone Star Power,humid_subtropical,single_family,ideal,upper_middle,False,full_electrified,high
226
+ H000225,AZ,Copper State Power,desert,small_multifamily,good,higher,False,baseline,low
227
+ H000226,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,lower,False,ev_ready,moderate
228
+ H000227,HI,Island Grid Company,island,single_family,constrained,upper_middle,False,ev_ready,low
229
+ H000228,NV,Silver State Electric,desert,single_family,shaded,upper_middle,False,full_electrified,high
230
+ H000229,CA,Pacific Valley Electric,coastal,small_multifamily,ideal,upper_middle,True,baseline,low
231
+ H000230,TX,Lone Star Power,humid_subtropical,townhome,good,upper_middle,True,full_electrified,moderate
232
+ H000231,AZ,Desert Horizon Electric,desert,townhome,shaded,upper_middle,False,baseline,moderate
233
+ H000232,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,higher,False,baseline,low
234
+ H000233,HI,Island Grid Company,island,single_family,good,higher,True,heat_pump,moderate
235
+ H000234,NV,Silver State Electric,desert,single_family,good,lower,False,baseline,high
236
+ H000235,CA,Pacific Valley Electric,coastal,single_family,good,higher,False,full_electrified,moderate
237
+ H000236,TX,Gulf Grid Electric,humid_subtropical,single_family,shaded,lower,False,heat_pump,low
238
+ H000237,AZ,Copper State Power,desert,townhome,good,higher,False,baseline,low
239
+ H000238,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,higher,False,baseline,low
240
+ H000239,HI,Island Grid Company,island,townhome,ideal,higher,False,baseline,moderate
241
+ H000240,NV,Silver State Electric,desert,single_family,ideal,upper_middle,False,full_electrified,low
242
+ H000241,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,False,heat_pump,low
243
+ H000242,TX,Gulf Grid Electric,humid_subtropical,townhome,shaded,lower,False,heat_pump,low
244
+ H000243,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,False,baseline,moderate
245
+ H000244,FL,Peninsula Electric,humid_subtropical,single_family,constrained,middle,False,baseline,low
246
+ H000245,HI,Island Grid Company,island,single_family,constrained,middle,False,baseline,low
247
+ H000246,NV,Silver State Electric,desert,single_family,constrained,middle,False,full_electrified,low
248
+ H000247,CA,Pacific Valley Electric,coastal,small_multifamily,shaded,middle,False,baseline,moderate
249
+ H000248,TX,Lone Star Power,humid_subtropical,single_family,constrained,upper_middle,False,baseline,low
250
+ H000249,AZ,Desert Horizon Electric,desert,single_family,good,middle,False,heat_pump,moderate
251
+ H000250,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,lower,True,heat_pump,moderate
252
+ H000251,HI,Island Grid Company,island,single_family,ideal,upper_middle,True,baseline,high
253
+ H000252,NV,Silver State Electric,desert,single_family,constrained,upper_middle,False,heat_pump,low
254
+ H000253,CA,Pacific Valley Electric,coastal,single_family,constrained,upper_middle,False,ev_ready,high
255
+ H000254,TX,Lone Star Power,humid_subtropical,single_family,shaded,higher,True,baseline,moderate
256
+ H000255,AZ,Desert Horizon Electric,desert,small_multifamily,ideal,middle,False,baseline,low
257
+ H000256,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,upper_middle,True,heat_pump,low
258
+ H000257,HI,Island Grid Company,island,single_family,ideal,middle,True,baseline,low
259
+ H000258,NV,Silver State Electric,desert,single_family,ideal,upper_middle,True,baseline,high
260
+ H000259,CA,Golden Coast Electric,coastal,single_family,good,higher,False,baseline,moderate
261
+ H000260,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,lower,False,baseline,moderate
262
+ H000261,AZ,Copper State Power,desert,townhome,ideal,middle,False,baseline,low
263
+ H000262,FL,Sunbelt Utility,humid_subtropical,single_family,good,upper_middle,False,baseline,low
264
+ H000263,HI,Island Grid Company,island,single_family,ideal,higher,True,heat_pump,moderate
265
+ H000264,NV,Silver State Electric,desert,single_family,ideal,middle,False,baseline,low
266
+ H000265,CA,Golden Coast Electric,coastal,single_family,ideal,middle,False,ev_ready,high
267
+ H000266,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,lower,False,ev_ready,moderate
268
+ H000267,AZ,Desert Horizon Electric,desert,small_multifamily,shaded,middle,False,baseline,moderate
269
+ H000268,FL,Peninsula Electric,humid_subtropical,single_family,ideal,upper_middle,True,full_electrified,low
270
+ H000269,HI,Island Grid Company,island,single_family,constrained,upper_middle,False,baseline,low
271
+ H000270,NV,Silver State Electric,desert,small_multifamily,good,middle,False,baseline,moderate
272
+ H000271,CA,Golden Coast Electric,coastal,single_family,constrained,higher,True,ev_ready,low
273
+ H000272,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,middle,False,full_electrified,low
274
+ H000273,AZ,Desert Horizon Electric,desert,small_multifamily,ideal,higher,False,ev_ready,moderate
275
+ H000274,FL,Peninsula Electric,humid_subtropical,single_family,good,higher,False,baseline,low
276
+ H000275,HI,Island Grid Company,island,single_family,ideal,upper_middle,True,baseline,low
277
+ H000276,NV,Silver State Electric,desert,single_family,ideal,higher,False,ev_ready,low
278
+ H000277,CA,Golden Coast Electric,coastal,townhome,constrained,middle,False,full_electrified,high
279
+ H000278,TX,Lone Star Power,humid_subtropical,single_family,good,lower,True,baseline,low
280
+ H000279,AZ,Copper State Power,desert,single_family,good,upper_middle,False,baseline,high
281
+ H000280,FL,Peninsula Electric,humid_subtropical,single_family,good,higher,True,baseline,moderate
282
+ H000281,HI,Island Grid Company,island,single_family,constrained,lower,False,full_electrified,high
283
+ H000282,NV,Silver State Electric,desert,single_family,good,upper_middle,False,full_electrified,high
284
+ H000283,CA,Pacific Valley Electric,coastal,single_family,ideal,middle,False,baseline,low
285
+ H000284,TX,Gulf Grid Electric,humid_subtropical,single_family,good,middle,False,full_electrified,moderate
286
+ H000285,AZ,Copper State Power,desert,single_family,ideal,upper_middle,True,full_electrified,low
287
+ H000286,FL,Peninsula Electric,humid_subtropical,single_family,shaded,middle,True,baseline,moderate
288
+ H000287,HI,Island Grid Company,island,single_family,ideal,middle,True,baseline,moderate
289
+ H000288,NV,Silver State Electric,desert,single_family,ideal,lower,False,baseline,moderate
290
+ H000289,CA,Pacific Valley Electric,coastal,single_family,ideal,middle,False,baseline,low
291
+ H000290,TX,Gulf Grid Electric,humid_subtropical,townhome,ideal,higher,False,baseline,low
292
+ H000291,AZ,Desert Horizon Electric,desert,single_family,shaded,upper_middle,False,ev_ready,low
293
+ H000292,FL,Peninsula Electric,humid_subtropical,single_family,good,upper_middle,False,baseline,high
294
+ H000293,HI,Island Grid Company,island,single_family,ideal,higher,False,full_electrified,high
295
+ H000294,NV,Silver State Electric,desert,single_family,constrained,middle,False,baseline,moderate
296
+ H000295,CA,Golden Coast Electric,coastal,townhome,good,upper_middle,False,full_electrified,low
297
+ H000296,TX,Gulf Grid Electric,humid_subtropical,single_family,good,lower,False,baseline,low
298
+ H000297,AZ,Desert Horizon Electric,desert,townhome,ideal,upper_middle,False,ev_ready,low
299
+ H000298,FL,Peninsula Electric,humid_subtropical,single_family,ideal,middle,False,full_electrified,high
300
+ H000299,HI,Island Grid Company,island,single_family,ideal,middle,True,ev_ready,moderate
301
+ H000300,NV,Silver State Electric,desert,townhome,good,lower,False,baseline,low
302
+ H000301,CA,Pacific Valley Electric,coastal,single_family,ideal,middle,True,heat_pump,low
303
+ H000302,TX,Lone Star Power,humid_subtropical,single_family,good,lower,True,full_electrified,low
304
+ H000303,AZ,Copper State Power,desert,townhome,good,upper_middle,False,ev_ready,low
305
+ H000304,FL,Sunbelt Utility,humid_subtropical,single_family,good,middle,False,ev_ready,moderate
306
+ H000305,HI,Island Grid Company,island,small_multifamily,good,middle,False,full_electrified,moderate
307
+ H000306,NV,Silver State Electric,desert,single_family,good,lower,False,baseline,high
308
+ H000307,CA,Golden Coast Electric,coastal,single_family,shaded,upper_middle,False,heat_pump,low
309
+ H000308,TX,Gulf Grid Electric,humid_subtropical,townhome,ideal,upper_middle,False,baseline,moderate
310
+ H000309,AZ,Copper State Power,desert,single_family,ideal,higher,False,ev_ready,high
311
+ H000310,FL,Sunbelt Utility,humid_subtropical,townhome,ideal,higher,False,full_electrified,high
312
+ H000311,HI,Island Grid Company,island,single_family,good,middle,False,baseline,low
313
+ H000312,NV,Silver State Electric,desert,single_family,ideal,middle,False,full_electrified,moderate
314
+ H000313,CA,Golden Coast Electric,coastal,townhome,ideal,higher,False,baseline,high
315
+ H000314,TX,Gulf Grid Electric,humid_subtropical,small_multifamily,ideal,upper_middle,True,baseline,moderate
316
+ H000315,AZ,Desert Horizon Electric,desert,single_family,shaded,higher,False,heat_pump,moderate
317
+ H000316,FL,Peninsula Electric,humid_subtropical,townhome,shaded,middle,False,heat_pump,low
318
+ H000317,HI,Island Grid Company,island,small_multifamily,good,middle,False,full_electrified,low
319
+ H000318,NV,Silver State Electric,desert,single_family,good,lower,False,full_electrified,moderate
320
+ H000319,CA,Golden Coast Electric,coastal,single_family,good,higher,True,heat_pump,low
321
+ H000320,TX,Gulf Grid Electric,humid_subtropical,townhome,ideal,middle,False,full_electrified,high
322
+ H000321,AZ,Desert Horizon Electric,desert,single_family,shaded,middle,False,ev_ready,high
323
+ H000322,FL,Peninsula Electric,humid_subtropical,small_multifamily,good,middle,False,baseline,moderate
324
+ H000323,HI,Island Grid Company,island,single_family,good,lower,False,heat_pump,moderate
325
+ H000324,NV,Silver State Electric,desert,single_family,ideal,middle,False,baseline,moderate
326
+ H000325,CA,Pacific Valley Electric,coastal,single_family,ideal,higher,True,heat_pump,high
327
+ H000326,TX,Lone Star Power,humid_subtropical,single_family,good,upper_middle,False,baseline,low
328
+ H000327,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,True,heat_pump,low
329
+ H000328,FL,Peninsula Electric,humid_subtropical,small_multifamily,ideal,middle,False,baseline,high
330
+ H000329,HI,Island Grid Company,island,single_family,good,upper_middle,False,ev_ready,low
331
+ H000330,NV,Silver State Electric,desert,single_family,good,middle,True,baseline,moderate
332
+ H000331,CA,Pacific Valley Electric,coastal,small_multifamily,ideal,upper_middle,False,full_electrified,high
333
+ H000332,TX,Lone Star Power,humid_subtropical,single_family,good,upper_middle,False,ev_ready,moderate
334
+ H000333,AZ,Copper State Power,desert,small_multifamily,ideal,upper_middle,False,ev_ready,low
335
+ H000334,FL,Sunbelt Utility,humid_subtropical,single_family,good,upper_middle,False,heat_pump,moderate
336
+ H000335,HI,Island Grid Company,island,single_family,constrained,middle,True,baseline,high
337
+ H000336,NV,Silver State Electric,desert,single_family,good,upper_middle,True,heat_pump,low
338
+ H000337,CA,Pacific Valley Electric,coastal,single_family,good,middle,True,baseline,high
339
+ H000338,TX,Lone Star Power,humid_subtropical,single_family,ideal,upper_middle,False,heat_pump,moderate
340
+ H000339,AZ,Desert Horizon Electric,desert,single_family,good,middle,False,ev_ready,moderate
341
+ H000340,FL,Peninsula Electric,humid_subtropical,single_family,ideal,upper_middle,False,baseline,low
342
+ H000341,HI,Island Grid Company,island,townhome,shaded,lower,False,heat_pump,moderate
343
+ H000342,NV,Silver State Electric,desert,single_family,constrained,lower,False,full_electrified,low
344
+ H000343,CA,Pacific Valley Electric,coastal,single_family,good,higher,False,full_electrified,moderate
345
+ H000344,TX,Gulf Grid Electric,humid_subtropical,single_family,good,middle,False,baseline,low
346
+ H000345,AZ,Copper State Power,desert,single_family,good,upper_middle,False,full_electrified,low
347
+ H000346,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,middle,False,ev_ready,moderate
348
+ H000347,HI,Island Grid Company,island,townhome,ideal,middle,False,full_electrified,low
349
+ H000348,NV,Silver State Electric,desert,single_family,constrained,higher,False,full_electrified,low
350
+ H000349,CA,Pacific Valley Electric,coastal,single_family,good,middle,False,ev_ready,high
351
+ H000350,TX,Lone Star Power,humid_subtropical,single_family,shaded,lower,False,ev_ready,low
352
+ H000351,AZ,Copper State Power,desert,single_family,ideal,higher,False,baseline,high
353
+ H000352,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,higher,False,heat_pump,low
354
+ H000353,HI,Island Grid Company,island,single_family,good,upper_middle,False,heat_pump,moderate
355
+ H000354,NV,Silver State Electric,desert,single_family,good,upper_middle,False,heat_pump,low
356
+ H000355,CA,Golden Coast Electric,coastal,single_family,shaded,middle,True,baseline,low
357
+ H000356,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,upper_middle,False,baseline,moderate
358
+ H000357,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,False,heat_pump,low
359
+ H000358,FL,Peninsula Electric,humid_subtropical,single_family,good,upper_middle,False,heat_pump,low
360
+ H000359,HI,Island Grid Company,island,single_family,constrained,middle,False,ev_ready,moderate
361
+ H000360,NV,Silver State Electric,desert,single_family,constrained,middle,False,full_electrified,high
362
+ H000361,CA,Golden Coast Electric,coastal,townhome,constrained,lower,False,ev_ready,low
363
+ H000362,TX,Lone Star Power,humid_subtropical,single_family,shaded,higher,True,baseline,high
364
+ H000363,AZ,Desert Horizon Electric,desert,single_family,constrained,middle,False,baseline,low
365
+ H000364,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,upper_middle,False,ev_ready,moderate
366
+ H000365,HI,Island Grid Company,island,townhome,ideal,higher,False,baseline,high
367
+ H000366,NV,Silver State Electric,desert,townhome,shaded,upper_middle,True,baseline,moderate
368
+ H000367,CA,Pacific Valley Electric,coastal,townhome,good,upper_middle,True,full_electrified,moderate
369
+ H000368,TX,Gulf Grid Electric,humid_subtropical,single_family,good,higher,False,baseline,moderate
370
+ H000369,AZ,Desert Horizon Electric,desert,single_family,shaded,middle,False,ev_ready,low
371
+ H000370,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,lower,False,baseline,low
372
+ H000371,HI,Island Grid Company,island,single_family,good,lower,False,baseline,low
373
+ H000372,NV,Silver State Electric,desert,single_family,good,higher,False,baseline,low
374
+ H000373,CA,Golden Coast Electric,coastal,townhome,good,upper_middle,False,heat_pump,high
375
+ H000374,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,middle,False,ev_ready,low
376
+ H000375,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,False,baseline,low
377
+ H000376,FL,Peninsula Electric,humid_subtropical,single_family,ideal,higher,False,baseline,low
378
+ H000377,HI,Island Grid Company,island,single_family,shaded,higher,False,ev_ready,moderate
379
+ H000378,NV,Silver State Electric,desert,single_family,good,middle,False,baseline,moderate
380
+ H000379,CA,Pacific Valley Electric,coastal,single_family,ideal,middle,False,baseline,high
381
+ H000380,TX,Lone Star Power,humid_subtropical,single_family,constrained,higher,False,heat_pump,low
382
+ H000381,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,False,baseline,moderate
383
+ H000382,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,upper_middle,False,full_electrified,high
384
+ H000383,HI,Island Grid Company,island,townhome,constrained,middle,False,ev_ready,moderate
385
+ H000384,NV,Silver State Electric,desert,single_family,ideal,higher,False,full_electrified,high
386
+ H000385,CA,Golden Coast Electric,coastal,townhome,shaded,higher,False,baseline,high
387
+ H000386,TX,Lone Star Power,humid_subtropical,townhome,ideal,higher,False,baseline,low
388
+ H000387,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,True,ev_ready,low
389
+ H000388,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,middle,False,ev_ready,low
390
+ H000389,HI,Island Grid Company,island,single_family,good,higher,False,baseline,moderate
391
+ H000390,NV,Silver State Electric,desert,single_family,ideal,upper_middle,False,baseline,high
392
+ H000391,CA,Pacific Valley Electric,coastal,single_family,good,upper_middle,True,heat_pump,moderate
393
+ H000392,TX,Gulf Grid Electric,humid_subtropical,small_multifamily,good,lower,False,ev_ready,low
394
+ H000393,AZ,Copper State Power,desert,single_family,good,lower,True,heat_pump,high
395
+ H000394,FL,Peninsula Electric,humid_subtropical,single_family,good,higher,False,baseline,low
396
+ H000395,HI,Island Grid Company,island,single_family,good,lower,False,ev_ready,moderate
397
+ H000396,NV,Silver State Electric,desert,single_family,good,lower,False,ev_ready,high
398
+ H000397,CA,Golden Coast Electric,coastal,townhome,shaded,lower,False,baseline,high
399
+ H000398,TX,Gulf Grid Electric,humid_subtropical,single_family,ideal,higher,False,heat_pump,moderate
400
+ H000399,AZ,Desert Horizon Electric,desert,single_family,good,upper_middle,False,baseline,moderate
401
+ H000400,FL,Peninsula Electric,humid_subtropical,single_family,ideal,higher,False,baseline,low
402
+ H000401,HI,Island Grid Company,island,single_family,constrained,middle,True,baseline,low
403
+ H000402,NV,Silver State Electric,desert,small_multifamily,shaded,middle,False,baseline,high
404
+ H000403,CA,Golden Coast Electric,coastal,single_family,good,middle,False,ev_ready,high
405
+ H000404,TX,Lone Star Power,humid_subtropical,single_family,good,upper_middle,False,ev_ready,moderate
406
+ H000405,AZ,Desert Horizon Electric,desert,single_family,good,middle,False,heat_pump,high
407
+ H000406,FL,Peninsula Electric,humid_subtropical,townhome,shaded,upper_middle,False,heat_pump,low
408
+ H000407,HI,Island Grid Company,island,single_family,good,higher,False,ev_ready,low
409
+ H000408,NV,Silver State Electric,desert,single_family,shaded,middle,False,baseline,high
410
+ H000409,CA,Pacific Valley Electric,coastal,single_family,ideal,upper_middle,False,baseline,high
411
+ H000410,TX,Lone Star Power,humid_subtropical,small_multifamily,good,middle,False,ev_ready,moderate
412
+ H000411,AZ,Desert Horizon Electric,desert,single_family,ideal,higher,False,heat_pump,low
413
+ H000412,FL,Peninsula Electric,humid_subtropical,single_family,good,higher,False,baseline,high
414
+ H000413,HI,Island Grid Company,island,single_family,constrained,upper_middle,True,full_electrified,moderate
415
+ H000414,NV,Silver State Electric,desert,single_family,ideal,middle,False,ev_ready,high
416
+ H000415,CA,Golden Coast Electric,coastal,single_family,good,upper_middle,False,ev_ready,moderate
417
+ H000416,TX,Gulf Grid Electric,humid_subtropical,single_family,good,middle,False,ev_ready,low
418
+ H000417,AZ,Desert Horizon Electric,desert,single_family,constrained,middle,False,baseline,moderate
419
+ H000418,FL,Sunbelt Utility,humid_subtropical,single_family,good,higher,False,ev_ready,moderate
420
+ H000419,HI,Island Grid Company,island,townhome,ideal,middle,True,full_electrified,moderate
421
+ H000420,NV,Silver State Electric,desert,townhome,constrained,lower,False,ev_ready,low
422
+ H000421,CA,Pacific Valley Electric,coastal,single_family,good,lower,True,baseline,moderate
423
+ H000422,TX,Gulf Grid Electric,humid_subtropical,single_family,constrained,middle,False,heat_pump,moderate
424
+ H000423,AZ,Copper State Power,desert,single_family,good,upper_middle,False,baseline,low
425
+ H000424,FL,Peninsula Electric,humid_subtropical,single_family,good,higher,False,baseline,low
426
+ H000425,HI,Island Grid Company,island,single_family,constrained,upper_middle,False,heat_pump,low
427
+ H000426,NV,Silver State Electric,desert,small_multifamily,constrained,middle,False,full_electrified,moderate
428
+ H000427,CA,Pacific Valley Electric,coastal,single_family,constrained,upper_middle,False,baseline,high
429
+ H000428,TX,Lone Star Power,humid_subtropical,townhome,constrained,higher,False,heat_pump,high
430
+ H000429,AZ,Desert Horizon Electric,desert,small_multifamily,ideal,upper_middle,False,baseline,moderate
431
+ H000430,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,higher,False,heat_pump,low
432
+ H000431,HI,Island Grid Company,island,townhome,ideal,upper_middle,False,baseline,moderate
433
+ H000432,NV,Silver State Electric,desert,single_family,ideal,middle,False,heat_pump,low
434
+ H000433,CA,Golden Coast Electric,coastal,single_family,constrained,higher,True,baseline,low
435
+ H000434,TX,Lone Star Power,humid_subtropical,single_family,ideal,middle,False,ev_ready,low
436
+ H000435,AZ,Copper State Power,desert,single_family,constrained,upper_middle,False,ev_ready,moderate
437
+ H000436,FL,Peninsula Electric,humid_subtropical,single_family,constrained,higher,False,ev_ready,low
438
+ H000437,HI,Island Grid Company,island,single_family,good,higher,False,baseline,low
439
+ H000438,NV,Silver State Electric,desert,small_multifamily,good,lower,True,baseline,low
440
+ H000439,CA,Golden Coast Electric,coastal,single_family,constrained,middle,True,heat_pump,moderate
441
+ H000440,TX,Lone Star Power,humid_subtropical,townhome,constrained,higher,False,baseline,low
442
+ H000441,AZ,Desert Horizon Electric,desert,townhome,good,upper_middle,False,heat_pump,low
443
+ H000442,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,upper_middle,True,heat_pump,low
444
+ H000443,HI,Island Grid Company,island,townhome,ideal,middle,True,heat_pump,low
445
+ H000444,NV,Silver State Electric,desert,single_family,ideal,middle,False,baseline,moderate
446
+ H000445,CA,Golden Coast Electric,coastal,single_family,ideal,upper_middle,False,heat_pump,high
447
+ H000446,TX,Gulf Grid Electric,humid_subtropical,townhome,good,upper_middle,False,baseline,moderate
448
+ H000447,AZ,Copper State Power,desert,single_family,good,higher,False,ev_ready,low
449
+ H000448,FL,Peninsula Electric,humid_subtropical,single_family,good,middle,True,baseline,high
450
+ H000449,HI,Island Grid Company,island,single_family,constrained,higher,False,ev_ready,low
451
+ H000450,NV,Silver State Electric,desert,single_family,good,upper_middle,False,full_electrified,high
452
+ H000451,CA,Golden Coast Electric,coastal,small_multifamily,good,lower,False,ev_ready,low
453
+ H000452,TX,Lone Star Power,humid_subtropical,small_multifamily,shaded,higher,False,ev_ready,low
454
+ H000453,AZ,Desert Horizon Electric,desert,townhome,ideal,upper_middle,False,baseline,low
455
+ H000454,FL,Peninsula Electric,humid_subtropical,single_family,constrained,middle,False,heat_pump,low
456
+ H000455,HI,Island Grid Company,island,single_family,good,middle,False,ev_ready,moderate
457
+ H000456,NV,Silver State Electric,desert,townhome,ideal,higher,False,baseline,low
458
+ H000457,CA,Golden Coast Electric,coastal,single_family,shaded,middle,True,full_electrified,low
459
+ H000458,TX,Lone Star Power,humid_subtropical,single_family,shaded,upper_middle,False,heat_pump,low
460
+ H000459,AZ,Copper State Power,desert,single_family,constrained,higher,False,ev_ready,moderate
461
+ H000460,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,higher,False,baseline,moderate
462
+ H000461,HI,Island Grid Company,island,townhome,ideal,lower,True,heat_pump,low
463
+ H000462,NV,Silver State Electric,desert,single_family,constrained,middle,False,baseline,moderate
464
+ H000463,CA,Pacific Valley Electric,coastal,single_family,shaded,middle,False,baseline,low
465
+ H000464,TX,Lone Star Power,humid_subtropical,townhome,good,upper_middle,False,heat_pump,low
466
+ H000465,AZ,Desert Horizon Electric,desert,single_family,shaded,middle,False,ev_ready,moderate
467
+ H000466,FL,Sunbelt Utility,humid_subtropical,single_family,ideal,middle,False,heat_pump,moderate
468
+ H000467,HI,Island Grid Company,island,single_family,good,lower,False,baseline,high
469
+ H000468,NV,Silver State Electric,desert,small_multifamily,good,middle,True,ev_ready,high
470
+ H000469,CA,Golden Coast Electric,coastal,single_family,ideal,lower,True,heat_pump,low
471
+ H000470,TX,Gulf Grid Electric,humid_subtropical,small_multifamily,good,higher,True,baseline,low
472
+ H000471,AZ,Desert Horizon Electric,desert,single_family,good,middle,False,baseline,moderate
473
+ H000472,FL,Sunbelt Utility,humid_subtropical,small_multifamily,good,upper_middle,False,heat_pump,moderate
474
+ H000473,HI,Island Grid Company,island,single_family,good,lower,False,heat_pump,moderate
475
+ H000474,NV,Silver State Electric,desert,single_family,constrained,middle,False,heat_pump,low
476
+ H000475,CA,Golden Coast Electric,coastal,single_family,good,upper_middle,False,baseline,low
477
+ H000476,TX,Lone Star Power,humid_subtropical,single_family,ideal,higher,False,baseline,low
478
+ H000477,AZ,Copper State Power,desert,single_family,ideal,higher,False,heat_pump,low
479
+ H000478,FL,Sunbelt Utility,humid_subtropical,single_family,constrained,lower,False,baseline,low
480
+ H000479,HI,Island Grid Company,island,townhome,shaded,higher,False,baseline,low
481
+ H000480,NV,Silver State Electric,desert,single_family,good,middle,False,baseline,low
482
+ H000481,CA,Golden Coast Electric,coastal,single_family,good,middle,True,full_electrified,high
483
+ H000482,TX,Lone Star Power,humid_subtropical,single_family,good,middle,False,full_electrified,moderate
484
+ H000483,AZ,Desert Horizon Electric,desert,townhome,shaded,middle,False,baseline,moderate
485
+ H000484,FL,Peninsula Electric,humid_subtropical,single_family,constrained,upper_middle,False,baseline,low
486
+ H000485,HI,Island Grid Company,island,single_family,shaded,upper_middle,True,ev_ready,moderate
487
+ H000486,NV,Silver State Electric,desert,single_family,ideal,upper_middle,False,baseline,low
488
+ H000487,CA,Pacific Valley Electric,coastal,single_family,good,upper_middle,False,full_electrified,low
489
+ H000488,TX,Lone Star Power,humid_subtropical,single_family,good,upper_middle,False,heat_pump,high
490
+ H000489,AZ,Desert Horizon Electric,desert,single_family,ideal,middle,False,full_electrified,low
491
+ H000490,FL,Peninsula Electric,humid_subtropical,townhome,ideal,higher,False,ev_ready,low
492
+ H000491,HI,Island Grid Company,island,single_family,constrained,upper_middle,False,baseline,moderate
493
+ H000492,NV,Silver State Electric,desert,single_family,ideal,upper_middle,False,heat_pump,low
494
+ H000493,CA,Pacific Valley Electric,coastal,small_multifamily,ideal,upper_middle,False,full_electrified,high
495
+ H000494,TX,Lone Star Power,humid_subtropical,townhome,ideal,higher,False,baseline,moderate
496
+ H000495,AZ,Copper State Power,desert,single_family,constrained,middle,False,baseline,moderate
497
+ H000496,FL,Sunbelt Utility,humid_subtropical,single_family,shaded,lower,False,ev_ready,low
498
+ H000497,HI,Island Grid Company,island,single_family,good,lower,True,ev_ready,low
499
+ H000498,NV,Silver State Electric,desert,single_family,constrained,middle,False,full_electrified,moderate
500
+ H000499,CA,Pacific Valley Electric,coastal,single_family,shaded,middle,True,full_electrified,low
501
+ H000500,TX,Gulf Grid Electric,humid_subtropical,single_family,good,upper_middle,False,baseline,low
manifest.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0.0-sima-residential-energy-fleet",
3
+ "generator": "generate_residential_energy_pack.py",
4
+ "seed": 42,
5
+ "start_date": "2025-01-01",
6
+ "end_date": "2025-06-29",
7
+ "households": 500,
8
+ "months": 6,
9
+ "parquet_export": true,
10
+ "output_dir": "sample_pack",
11
+ "row_counts": {
12
+ "households": 500,
13
+ "subscriber_contracts": 500,
14
+ "installation_pipeline": 500,
15
+ "solar_systems": 500,
16
+ "battery_systems": 327,
17
+ "utility_tariffs": 10,
18
+ "daily_generation_consumption": 90000,
19
+ "dispatch_events": 5819,
20
+ "vpp_program_enrollment": 229,
21
+ "outage_events": 839,
22
+ "billing_and_savings": 3000,
23
+ "service_tickets": 137,
24
+ "channel_attribution": 500,
25
+ "portfolio_kpis_daily": 1080,
26
+ "metric_definitions": 3,
27
+ "dashboard_suggestions": 3
28
+ }
29
+ }
metric_definitions.csv ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ metric_name,definition,formula,table_name,grain
2
+ participation_rate,Share of dispatch events with customer participation.,participated_events / dispatch_events_count,portfolio_kpis_daily,date x state
3
+ avg_bill_reduction_pct,Average bill reduction relative to counterfactual utility bill.,(bill_without - bill_with) / bill_without,portfolio_kpis_daily,date x state
4
+ estimated_grid_value_usd,Estimated total grid value from dispatch events.,sum(grid_value_usd),portfolio_kpis_daily,date x state