Un valor temporal se puede transformar en otro subtipo. Se genera un error si los subtipos son incompatibles.
Transformar un tipo temporal a otro subtipo
ttypeInst(ttype) → ttypeInst
ttypeSeq(ttype) → ttypeSeq
ttypeSeqSet(ttype) → ttypeSeqSet
SELECT tboolInst(tbool '{[true@2001-01-01]}'); -- t@2001-01-01 SELECT tboolInst(tbool '{[true@2001-01-01, true@2001-01-02]}'); -- ERROR: Cannot transform input value to a temporal instant SELECT tintSeq(tint '1@2001-01-01'); -- [1@2001-01-01] SELECT tfloatSeqSet(tfloat '2.5@2001-01-01'); -- {[2.5@2001-01-01]} SELECT tfloatSeqSet(tfloat '{2.5@2001-01-01, 1.5@2001-01-02, 3.5@2001-01-03}'); -- {[2.5@2001-01-01],[1.5@2001-01-02],[3.5@2001-01-03]}
Transformar un valor temporal a otra interpolación
setInterp(ttype, interp) → ttype
SELECT setInterp(tbool 'true@2001-01-01','discrete'); -- {t@2001-01-01} SELECT setInterp(tfloat '{[1@2001-01-01], [2@2001-01-02], [1@2001-01-03]}', 'discrete'); -- {1@2001-01-01, 2@2001-01-02, 1@2001-01-03} SELECT setInterp(tfloat 'Interp=Step;[1@2001-01-01, 2@2001-01-02, 1@2001-01-03, 2@2001-01-04]', 'linear'); /* {[1@2001-01-01, 1@2001-01-02), [2@2001-01-02, 2@2001-01-03), [1@2001-01-03, 1@2001-01-04), [2@2001-01-04]} */ SELECT asText(setInterp(tgeompoint 'Interp=Step;{[Point(1 1)@2001-01-01, Point(2 2)@2001-01-02], [Point(3 3)@2001-01-05, Point(4 4)@2001-01-06]}', 'linear')); /* {[POINT(1 1)@2001-01-01, POINT(1 1)@2001-01-02), [POINT(2 2)@2001-01-02], [POINT(3 3)@2001-01-05, POINT(3 3)@2001-01-06), [POINT(4 4)@2001-01-06]} */ SELECT setInterp(tgeometry '[Point(1 1)@2001-01-01, Linestring(1 1,2 2)@2001-01-02]', 'linear'); -- ERROR: The temporal type cannot have linear interpolation
Desplazar y/o escalear el intervalo de tiempo de un valor temporal a uno o dos intervalos
shiftTime(ttype,interval) → ttype
scaleTime(ttype,interval) → ttype
shiftScaleTime(ttype,interval,interval) → ttype
Cuando se escalea, si el rango de valores o el intervalo de tiempo del valor temporal es cero (por ejemplo, para un instante temporal), el resultado es el valor temporal. Igualmente, el ancho o intervalo dado debe ser estrictamente mayor que cero.
SELECT shiftTime(tint '{1@2001-01-01, 2@2001-01-03, 1@2001-01-05}', '1 day'); -- {1@2001-01-02, 2@2001-01-04, 1@2001-01-06} SELECT shiftTime(tfloat '[1@2001-01-01, 2@2001-01-03]', '1 day'); -- [1@2001-01-02, 2@2001-01-04] SELECT asText(shiftTime(tgeompoint '{[Point(1 1)@2001-01-01, Point(2 2)@2001-01-03], [Point(2 2)@2001-01-04, Point(1 1)@2001-01-05]}', '1 day')); /* {[POINT(1 1)@2001-01-02, POINT(2 2)@2001-01-04], [POINT(2 2)@2001-01-05, POINT(1 1)@2001-01-06]} */ SELECT scaleTime(tint '1@2001-01-01', '1 day'); -- 1@2001-01-01 SELECT scaleTime(tint '{1@2001-01-01, 2@2001-01-03, 1@2001-01-05}', '1 day'); -- {1@2001-01-01 00:00:00+01, 2@2001-01-01 12:00:00+01, 1@2001-01-02 00:00:00+01} SELECT scaleTime(tfloat '[1@2001-01-01, 2@2001-01-03]', '1 day'); -- [1@2001-01-01, 2@2001-01-02] SELECT asText(scaleTime(tgeompoint '{[Point(1 1)@2001-01-01, Point(2 2)@2001-01-02, Point(1 1)@2001-01-03], [Point(2 2)@2001-01-04, Point(1 1)@2001-01-05]}', '1 day')); /* {[POINT(1 1)@2001-01-01 00:00:00+01, POINT(2 2)@2001-01-01 06:00:00+01, POINT(1 1)@2001-01-01 12:00:00+01], [POINT(2 2) @2001-01-01 18:00:00+01, POINT(1 1)@2001-01-02 00:00:00+01]} */ SELECT scaleTime(tint '1@2001-01-01', '-1 day'); -- ERROR: The interval must be positive: -1 days SELECT shiftScaleTime(tint '1@2001-01-01', '1 day', '1 day'); -- 1@2001-01-02 SELECT shiftScaleTime(tint '{1@2001-01-01, 2@2001-01-03, 1@2001-01-05}', '1 day','1 day'); -- {1@2001-01-02 00:00:00+01, 2@2001-01-02 12:00:00+01, 1@2001-01-03 00:00:00+01} SELECT shiftScaleTime(tfloat '[1@2001-01-01, 2@2001-01-03]', '1 day', '1 day'); -- [1@2001-01-02, 2@2001-01-03] SELECT asText(shiftScaleTime(tgeometry '{[Point(1 1)@2001-01-01, Linestring(1 1,2 2)@2001-01-02, Point(1 1)@2001-01-03], [Point(2 2)@2001-01-04, Polygon((1 1,2 2,3 1,1 1))@2001-01-05]}', '1 day', '1 day')); /* {[POINT(1 1)@2001-01-02 00:00:00, LINESTRING(1 1,2 2)@2001-01-02 06:00:00, POINT(1 1)@2001-01-02 12:00:00], [POINT(2 2)@2001-01-02 18:00:00, POLYGON((1 1,2 2,3 1,1 1))@2001-01-03 00:00:00]} */
Transformar un valor temporal no lineal en un conjunto de filas, cada una es una pareja compuesta de un valor de base y un conjunto de períodos durante el cual el valor temporal tiene el valor de base
unnest(ttype) → {(value,time)}
SELECT (un).value, (un).time FROM (SELECT unnest(tfloat '{1@2001-01-01, 2@2001-01-02, 1@2001-01-03}') AS un) t; -- 1 | {[2001-01-01, 2001-01-01], [2001-01-03, 2001-01-03]} -- 2 | {[2001-01-02, 2001-01-02]} SELECT (un).value, (un).time FROM (SELECT unnest(tint '[1@2001-01-01, 2@2001-01-02, 1@2001-01-03]') AS un) t; -- 1 | {[2001-01-01, 2001-01-02), [2001-01-03, 2001-01-03]} -- 2 | {[2001-01-02, 2001-01-03)} SELECT (un).value, (un).time FROM (SELECT unnest(tfloat '[1@2001-01-01, 2@2001-01-02, 1@2001-01-03]') AS un) t; -- ERROR: The temporal value cannot have linear interpolation SELECT ST_AsText((un).value), (un).time FROM (SELECT unnest(tgeompoint 'Interp=Step;[Point(1 1)@2001-01-01, Point(2 2)@2001-01-02, Point(1 1)@2001-01-03]') AS un) t; -- POINT(1 1) | {[2001-01-01, 2001-01-02), [2001-01-03, 2001-01-03]} -- POINT(2 2) | {[2001-01-02, 2001-01-03)} SELECT ST_AsText((un).value), (un).time FROM (SELECT unnest(tgeometry '[Point(1 1)@2001-01-01, Linestring(1 1,2 2)@2001-01-02, Point(1 1)@2001-01-03]') AS un) t; -- POINT(1 1) | {[2001-01-01, 2001-01-02), [2001-01-03, 2001-01-03]} -- LINESTRING(1 1,2 2) | {[2001-01-02, 2001-01-03)}