def _LL2_to_geojson_dict()

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


def _LL2_to_geojson_dict(ll2):
    gj_dict = {
        'type': 'Polygon',
        'coordinates': ll2,
    }

    return gj_dict