def _LL3_to_mpoly()

in src/h3/_h3shape.py [0:0]


def _LL3_to_mpoly(ll3):
    polys = [
        _LL2_to_polygon(ll2)
        for ll2 in ll3
    ]

    mpoly = LatLngMultiPoly(*polys)

    return mpoly