For Example I created a MultiPoint with shapely and the Zip Codes and added a Buffer of 0.01 to get an Area, but how do I find out how to set the Buffer appropriate for the Points or perhaps for each single Point?
from shapely.geometry import MultiPoint
from geopy.geocoders import GoogleV3
geocoder = GoogleV3()
zipCodes = [12043, 12045, 12047, 12049, 12051, 12053, 12055, 12057, 12059]
country = 'Germany'
coordinates = list(map(lambda x: geocoder.geocode(str(x) + country), zipCodes))
coordinates = list(map(lambda x: (x.latitude, x.longitude), coordinates))
region = MultiPoint(coordinates)
region.buffer(0.01)
That's how the region looks at the moment: