I am relatively new to Python generally and GIS specifically and wondered if I could get some advice on the best package to use to calculate the overlap of two polygons I have calculated and stored in GeoJson format.
Basically, I have two lists, one is a few large polygons and the other is a lot of small polygons. I would like to know for each of the large polygons which of the smaller ones are wholly or partially within the large one, storing the percentage of the smaller polygon contained in each case.
From an Udemy course I have completed, I think that GeoPandas might be suitable but would it be better to just use Shapely, given I have the GeoJson of the two polygons I wish to check, or is there a better package?
Thanks in advance.