t1 = Polygon([(4.338074,50.848677), (4.344961,50.833264), (4.366227,50.840809), (4.367945,50.852455), (4.346693,50.858306)])
t = geopandas.GeoSeries(t1)
t.crs = {'init':'espg:4326'}
t2 = geopandas.GeoSeries([Point(4.382617,50.811948)])
t2.crs = {'init':'espg:4326'}
¿Cómo puedo calcular la distancia de un punto al polígono o encontrar el punto más cercano entre el polígono y el punto?