PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ RASTER_setGeotransform()

Datum RASTER_setGeotransform ( PG_FUNCTION_ARGS  )

Definition at line 1088 of file rtpg_raster_properties.c.

References PG_FUNCTION_INFO_V1(), rtrowdump::raster, RASTER_setRotation(), rt_raster_deserialize(), rt_raster_destroy(), rt_raster_serialize(), rt_raster_set_offsets(), rt_raster_set_phys_params(), rt_raster_serialized_t::size, and TRUE.

Referenced by RASTER_setUpperLeftXY().

1089 {
1090  rt_pgraster *pgraster = NULL;
1091  rt_pgraster *pgrtn = NULL;
1092  rt_raster raster;
1093  float8 imag, jmag, theta_i, theta_ij, xoffset, yoffset;
1094 
1095  if (
1096  PG_ARGISNULL(0) || PG_ARGISNULL(1) || PG_ARGISNULL(2) ||
1097  PG_ARGISNULL(3) || PG_ARGISNULL(4) ||
1098  PG_ARGISNULL(5) || PG_ARGISNULL(6)
1099  ) {
1100  PG_RETURN_NULL();
1101  }
1102 
1103  /* get the inputs */
1104  pgraster = (rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
1105  imag = PG_GETARG_FLOAT8(1);
1106  jmag = PG_GETARG_FLOAT8(2);
1107  theta_i = PG_GETARG_FLOAT8(3);
1108  theta_ij = PG_GETARG_FLOAT8(4);
1109  xoffset = PG_GETARG_FLOAT8(5);
1110  yoffset = PG_GETARG_FLOAT8(6);
1111 
1112  raster = rt_raster_deserialize(pgraster, TRUE);
1113  if (!raster) {
1114  PG_FREE_IF_COPY(pgraster, 0);
1115  elog(ERROR, "RASTER_setGeotransform: Could not deserialize raster");
1116  PG_RETURN_NULL();
1117  }
1118 
1119  /* store the new geotransform */
1120  rt_raster_set_phys_params(raster, imag,jmag,theta_i,theta_ij);
1121  rt_raster_set_offsets(raster, xoffset, yoffset);
1122 
1123  /* prep the return value */
1124  pgrtn = rt_raster_serialize(raster);
1125  rt_raster_destroy(raster);
1126  PG_FREE_IF_COPY(pgraster, 0);
1127  if (!pgrtn)
1128  PG_RETURN_NULL();
1129 
1130  SET_VARSIZE(pgrtn, pgrtn->size);
1131  PG_RETURN_POINTER(pgrtn);
1132 }
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
Definition: rt_serialize.c:521
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
Definition: rtrowdump.py:121
void rt_raster_set_offsets(rt_raster raster, double x, double y)
Set insertion points in projection units.
Definition: rt_raster.c:199
void rt_raster_set_phys_params(rt_raster rast, double i_mag, double j_mag, double theta_i, double theta_ij)
Calculates the geotransform coefficients and applies them to the supplied raster. ...
Definition: rt_raster.c:297
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
Definition: rt_raster.c:82
Struct definitions.
Definition: librtcore.h:2201
#define TRUE
Definition: dbfopen.c:169
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
Definition: rt_serialize.c:717
Here is the call graph for this function:
Here is the caller graph for this function: