ISFR biennial forest cover maps at district level using satellite interpretation for Maharashtra
# Download from https://fsi.nic.in/
import pandas as pd
df = pd.read_csv('fsi_forest_cover.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Districts: {mh["District"].nunique()}')
print(mh.groupby('Forest_Type')['Forest_Cover_SqKm'].sum())| Field | Type | Description |
|---|---|---|
| state | string | State name |
| district | string | District name |
| forest_cover_sqkm | float | Forest cover area in sq km |
| forest_type | string | Forest type (very dense, moderately dense, open) |
| year | int | Assessment year |