Devolver la celda padre temporal en la resolución dada. La forma sin argumento desciende a la siguiente resolución más gruesa.
th3CellToParent(th3index,integer) → th3index th3CellToParent(th3index) → th3index
SELECT th3GetResolution( th3CellToParent(th3index '8a2a1072b59ffff@2001-01-01', 5)); -- 5@2001-01-01
Devolver la celda hijo central temporal en la resolución dada. La forma sin argumento desciende a la siguiente resolución más fina.
th3CellToCenterChild(th3index,integer) → th3index th3CellToCenterChild(th3index) → th3index
SELECT th3CellToCenterChild(th3index '871fa44a8ffffff@2001-01-01', 8); -- 881fa44a81fffff@2001-01-01 -- Without a resolution the child is one level finer. SELECT th3CellToCenterChild(th3index '871fa44a8ffffff@2001-01-01'); -- 881fa44a81fffff@2001-01-01
Devolver la posición ordinal (basada en 0) de cada celda entre los hijos de su padre en la resolución dada
th3CellToChildPos(th3index,integer) → tbigint
SELECT th3CellToChildPos(th3index '871fa44a8ffffff@2001-01-01', 6); -- 0@2001-01-01
Devolver la celda hijo temporal en una posición ordinal dada del padre dado, en la resolución de hijo dada. Los dos operandos temporales se sincronizan sobre su eje de tiempo compartido.
th3ChildPosToCell(tbigint,th3index,integer) → th3index
SELECT th3ChildPosToCell(tbigint '0@2001-01-01', th3index '871fa44a8ffffff@2001-01-01', 8); -- 881fa44a81fffff@2001-01-01