mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-22 07:23:53 +08:00
7 lines
229 B
Cython
7 lines
229 B
Cython
from .h3lib cimport bool, H3int
|
|
|
|
cpdef H3int cell_to_vertex(H3int h, int vertex_num) except 1
|
|
cpdef H3int[:] cell_to_vertexes(H3int h)
|
|
cpdef (double, double) vertex_to_latlng(H3int v) except *
|
|
cpdef bool is_valid_vertex(H3int v)
|