I am working on geographical data and want to divide an area of interest into grids of 4*4 each. How can I do the same in python ? I have the lat and long of the upper right corner and lower left corner of the bounding box ?
min_lon, min_lat = (76.8672,8.2720) # Lower-left corner
max_lon, max_lat = (77.17,8.54) # Upper-right corner
bbox = (min_lon, min_lat, max_lon, max_lat)

