Watch this 5min
YouTube video for the premise of the project.
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.
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)
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)
What if the Spanish Plague reappeared.
USPopulations().sim_plague()
What if Genghis Khan sailed to US instead of Columbus.
nyc = (-73.968285, 40.785091)
gg_dt = 40000000
USPopulations().simulate(gg_dt, nyc)
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()
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