Skip to content

bharxhav/relatable-impact

Repository files navigation

Relatable Impact!

Watch this 5min YouTube video for the premise of the project. bk2899


Case Studies

I hope you found the video helpful. It can seem daunting to visualize so many datapoints, or to even find the landcover for your required population count. I went an extra mile, and created two libraries which you can call to optimally find desired region-of-interest.

The added advantage of using this library is that you can play around with the widget in your jupyter notebook, all you have to do is grant Google Earth Engine permissions to your google cloud platform so that it can render your desired results.

SPACE

What if the Australian BushFires of 2019-20 happened in NYC.

bands = [3]
nyc = (-73.968285, 40.785091)
aus_cover = 59000

USLandCover().simulate(bands, aus_cover, nyc)

NYC Bushfire

Extra MILE: Showing the number of trees the Team Trees planted.

bands = [3]
nyc = (-73.968285, 40.785091)
tt_cover = 244.95

USLandCover('008b00').simulate(bands, tt_cover, nyc)

NYC TT

TIME

What if the Spanish Plague reappeared.

USPopulations().sim_plague()

US Spanish Plague

REALITY

What if Genghis Khan sailed to US instead of Columbus.

nyc = (-73.968285, 40.785091)
gg_dt = 40000000

USPopulations().simulate(gg_dt, nyc)

NYC Genghis Khan

GOOD STUFF

This is how it would look if DIWALI is celebrated in the USA.

up = USPopulations('FFFF00')
up.mep.add_basemap('CartoDB.DarkMatter')
up.sim_plague()

US DIWALI


Credits

All the data are as latest as possible. The population data was released on Jul 2023, corresponding to 2022 closing populations.

Population Data: US Gov

Geemap Library: geemap