District-wise energy statistics from MahaSDB covering electricity generation, installed capacity, consumption by sector (domestic, commercial, industrial, agricultural), village electrification status, and renewable energy capacity. Tracks Maharashtra's power infrastructure and consumption patterns essential for energy transition planning and industrial growth analysis.
import pandas as pd
# Download from https://mahasdb.maharashtra.gov.in/
# Navigate to Energy sector for district-wise data
df = pd.read_csv('mahasdb_energy.csv')
print(f"Districts: {df['district'].nunique()}")
print(df.groupby('consumption_sector')['consumption_gwh'].sum())| Field | Type | Description |
|---|---|---|
| district | string | District name |
| installed_capacity_mw | float | Installed power capacity in megawatts |
| consumption_sector | string | Consumption sector (domestic, commercial, industrial, agricultural) |
| consumption_gwh | float | Electricity consumption in GWh |
| year | int | Data year |