Village-level amenities data from Census 2011 covering educational facilities (pre-primary through degree colleges), medical facilities (PHC, CHC, hospitals), water sources (tap, well, hand pump), banking, post offices, and communication infrastructure for all Maharashtra villages.
# Download from https://censusindia.gov.in/
import pandas as pd
df = pd.read_csv('village_amenities_mh.csv')
print(f'Villages: {len(df)}')
no_school = df[~df['Has_Primary_School']]
print(f'Without primary school: {len(no_school)}')| Field | Type | Description |
|---|---|---|
| village_code | string | Census village code |
| village_name | string | Village name |
| has_primary_school | bool | Whether village has a primary school |
| has_medical_facility | bool | Whether village has medical facility |
| has_paved_road | bool | Whether village has paved approach road |