def approximate_convex_hull_area(lons, lats):
lon_meters, lat_meters = _get_lon_lat_meters(lons, lats)
lon_lat_meters = list(zip(lon_meters, lat_meters))
return MultiPoint(lon_lat_meters).convex_hull.area / 1000 ** 2
文章目录