33 #include <utils/lsyscache.h> 34 #include <utils/array.h> 35 #include <catalog/pg_type.h> 36 #include <utils/builtins.h> 38 #include "../../postgis_config.h" 40 #if POSTGIS_PGSQL_VERSION > 92 41 #include "access/htup_details.h" 44 #include "lwgeom_pg.h" 86 PG_FREE_IF_COPY(pgraster, 0);
87 elog(ERROR,
"RASTER_envelope: Could not deserialize raster");
94 PG_FREE_IF_COPY(pgraster, 0);
97 elog(ERROR,
"RASTER_envelope: Could not get raster's envelope");
100 else if (geom == NULL) {
101 elog(NOTICE,
"Raster's envelope is NULL");
108 SET_VARSIZE(gser, gser_size);
109 PG_RETURN_POINTER(gser);
128 bool minhull =
FALSE;
142 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
147 PG_FREE_IF_COPY(pgraster, 0);
148 elog(ERROR,
"RASTER_convex_hull: Could not deserialize raster");
158 if (!PG_ARGISNULL(1)) {
159 nband = PG_GETARG_INT32(1);
161 elog(NOTICE,
"Invalid band index (must use 1-based). Returning NULL");
163 PG_FREE_IF_COPY(pgraster, 0);
173 PG_FREE_IF_COPY(pgraster, 0);
176 elog(ERROR,
"RASTER_convex_hull: Could not get raster's convex hull");
179 else if (geom == NULL) {
180 elog(NOTICE,
"Raster's convex hull is NULL");
187 SET_VARSIZE(gser, gser_size);
188 PG_RETURN_POINTER(gser);
191 #define VALUES_LENGTH 2 195 FuncCallContext *funcctx;
203 if (SRF_IS_FIRSTCALL()) {
204 MemoryContext oldcontext;
209 bool exclude_nodata_value =
TRUE;
215 funcctx = SRF_FIRSTCALL_INIT();
218 oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
221 if (PG_ARGISNULL(0)) {
222 MemoryContextSwitchTo(oldcontext);
223 SRF_RETURN_DONE(funcctx);
225 pgraster = (
rt_pgraster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
228 PG_FREE_IF_COPY(pgraster, 0);
230 errcode(ERRCODE_OUT_OF_MEMORY),
231 errmsg(
"Could not deserialize raster")
233 MemoryContextSwitchTo(oldcontext);
234 SRF_RETURN_DONE(funcctx);
237 if (!PG_ARGISNULL(1))
238 nband = PG_GETARG_UINT32(1);
245 if (nband < 1 || nband > numbands) {
246 elog(NOTICE,
"Invalid band index (must use 1-based). Returning NULL");
248 PG_FREE_IF_COPY(pgraster, 0);
249 MemoryContextSwitchTo(oldcontext);
250 SRF_RETURN_DONE(funcctx);
253 if (!PG_ARGISNULL(2))
254 exclude_nodata_value = PG_GETARG_BOOL(2);
260 PG_FREE_IF_COPY(pgraster, 0);
261 MemoryContextSwitchTo(oldcontext);
262 SRF_RETURN_DONE(funcctx);
272 PG_FREE_IF_COPY(pgraster, 0);
273 if (NULL == geomval) {
275 errcode(ERRCODE_NO_DATA_FOUND),
276 errmsg(
"Could not polygonize raster")
278 MemoryContextSwitchTo(oldcontext);
279 SRF_RETURN_DONE(funcctx);
285 funcctx->user_fctx = geomval;
288 funcctx->max_calls = nElements;
291 if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE) {
293 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
294 errmsg(
"function returning record called in context that cannot accept type record")
298 BlessTupleDesc(tupdesc);
299 funcctx->tuple_desc = tupdesc;
301 MemoryContextSwitchTo(oldcontext);
305 funcctx = SRF_PERCALL_SETUP();
307 call_cntr = funcctx->call_cntr;
308 max_calls = funcctx->max_calls;
309 tupdesc = funcctx->tuple_desc;
310 geomval2 = funcctx->user_fctx;
313 if (call_cntr < max_calls) {
320 size_t gser_size = 0;
330 values[0] = PointerGetDatum(gser);
331 values[1] = Float8GetDatum(geomval2[call_cntr].val);
334 tuple = heap_form_tuple(tupdesc, values, nulls);
337 result = HeapTupleGetDatum(tuple);
339 SRF_RETURN_NEXT(funcctx, result);
344 SRF_RETURN_DONE(funcctx);
349 #define VALUES_LENGTH 4 357 FuncCallContext *funcctx;
366 if (SRF_IS_FIRSTCALL()) {
367 MemoryContext oldcontext;
374 bool exclude_nodata_value =
TRUE;
375 bool nocolumnx =
FALSE;
389 funcctx = SRF_FIRSTCALL_INIT();
392 oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
394 if (PG_ARGISNULL(0)) {
395 MemoryContextSwitchTo(oldcontext);
396 SRF_RETURN_DONE(funcctx);
398 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
404 nband = PG_GETARG_INT32(1);
412 bounds[0] = PG_GETARG_INT32(2);
413 bounds[1] = bounds[0];
420 bounds[2] = PG_GETARG_INT32(3);
421 bounds[3] = bounds[2];
425 if (!PG_ARGISNULL(4))
426 exclude_nodata_value = PG_GETARG_BOOL(4);
430 PG_FREE_IF_COPY(pgraster, 0);
432 errcode(ERRCODE_OUT_OF_MEMORY),
433 errmsg(
"Could not deserialize raster")
435 MemoryContextSwitchTo(oldcontext);
436 SRF_RETURN_DONE(funcctx);
441 elog(NOTICE,
"Raster is empty. Returning NULL");
443 PG_FREE_IF_COPY(pgraster, 0);
444 MemoryContextSwitchTo(oldcontext);
445 SRF_RETURN_DONE(funcctx);
454 if (nband < 1 || nband > numbands) {
455 elog(NOTICE,
"Invalid band index (must use 1-based). Returning NULL");
457 PG_FREE_IF_COPY(pgraster, 0);
458 MemoryContextSwitchTo(oldcontext);
459 SRF_RETURN_DONE(funcctx);
464 elog(NOTICE,
"Could not find band at index %d. Returning NULL", nband);
466 PG_FREE_IF_COPY(pgraster, 0);
467 MemoryContextSwitchTo(oldcontext);
468 SRF_RETURN_DONE(funcctx);
472 exclude_nodata_value =
FALSE;
485 bounds[0], bounds[1], bounds[2], bounds[3]);
489 for (y = bounds[2]; y <= bounds[3]; y++) {
491 for (x = bounds[0]; x <= bounds[1]; x++) {
499 for (i = 0; i < pixcount; i++)
501 if (pixcount) pfree(pix);
505 PG_FREE_IF_COPY(pgraster, 0);
507 MemoryContextSwitchTo(oldcontext);
508 elog(ERROR,
"RASTER_getPixelPolygons: Could not get pixel value");
509 SRF_RETURN_DONE(funcctx);
513 if (isnodata && exclude_nodata_value) {
514 POSTGIS_RT_DEBUG(5,
"pixel value is NODATA and exclude_nodata_value = TRUE");
522 for (i = 0; i < pixcount; i++)
524 if (pixcount) pfree(pix);
528 PG_FREE_IF_COPY(pgraster, 0);
530 MemoryContextSwitchTo(oldcontext);
531 elog(ERROR,
"RASTER_getPixelPolygons: Could not get pixel polygon");
532 SRF_RETURN_DONE(funcctx);
536 pix = palloc(
sizeof(
struct rt_pixel_t) * (pixcount + 1));
538 pix = repalloc(pix,
sizeof(
struct rt_pixel_t) * (pixcount + 1));
544 PG_FREE_IF_COPY(pgraster, 0);
546 MemoryContextSwitchTo(oldcontext);
547 elog(ERROR,
"RASTER_getPixelPolygons: Could not allocate memory for storing pixel polygons");
548 SRF_RETURN_DONE(funcctx);
563 if (exclude_nodata_value)
564 pix[pixcount].
nodata = isnodata;
569 pix[pixcount].
nodata = isnodata;
578 PG_FREE_IF_COPY(pgraster, 0);
582 elog(NOTICE,
"No pixels found for band %d", nband);
583 MemoryContextSwitchTo(oldcontext);
584 SRF_RETURN_DONE(funcctx);
588 funcctx->user_fctx = pix;
591 funcctx->max_calls = pixcount;
595 if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE) {
597 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
598 errmsg(
"function returning record called in context that cannot accept type record")
602 BlessTupleDesc(tupdesc);
603 funcctx->tuple_desc = tupdesc;
605 MemoryContextSwitchTo(oldcontext);
609 funcctx = SRF_PERCALL_SETUP();
611 call_cntr = funcctx->call_cntr;
612 max_calls = funcctx->max_calls;
613 tupdesc = funcctx->tuple_desc;
614 pix2 = funcctx->user_fctx;
617 if (call_cntr < max_calls) {
624 size_t gser_size = 0;
634 values[0] = PointerGetDatum(gser);
635 if (pix2[call_cntr].nodata)
638 values[1] = Float8GetDatum(pix2[call_cntr].
value);
639 values[2] = Int32GetDatum(pix2[call_cntr].
x);
640 values[3] = Int32GetDatum(pix2[call_cntr].
y);
643 tuple = heap_form_tuple(tupdesc, values, nulls);
646 result = HeapTupleGetDatum(tuple);
648 SRF_RETURN_NEXT(funcctx, result);
653 SRF_RETURN_DONE(funcctx);
674 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
678 PG_FREE_IF_COPY(pgraster, 0);
679 elog(ERROR,
"RASTER_getPolygon: Could not deserialize raster");
686 elog(NOTICE,
"Raster provided has no bands");
688 PG_FREE_IF_COPY(pgraster, 0);
693 if (!PG_ARGISNULL(1))
694 nband = PG_GETARG_INT32(1);
695 if (nband < 1 || nband > num_bands) {
696 elog(NOTICE,
"Invalid band index (must use 1-based). Returning NULL");
698 PG_FREE_IF_COPY(pgraster, 0);
705 PG_FREE_IF_COPY(pgraster, 0);
708 elog(ERROR,
"RASTER_getPolygon: Could not get raster band's surface");
711 else if (surface == NULL) {
712 elog(NOTICE,
"Raster is empty or all pixels of band are NODATA. Returning NULL");
719 PG_RETURN_POINTER(rtn);
738 double scale[2] = {0};
739 double *scale_x = NULL;
740 double *scale_y = NULL;
758 text *pixeltypetext = NULL;
759 char *pixeltype = NULL;
762 int pixtypes_len = 0;
764 double *values = NULL;
768 double *nodatavals = NULL;
769 int nodatavals_len = 0;
772 double *ul_xw = NULL;
773 double *ul_yw = NULL;
775 double gridw[2] = {0};
776 double *grid_xw = NULL;
777 double *grid_yw = NULL;
779 double skew[2] = {0};
780 double *skew_x = NULL;
781 double *skew_y = NULL;
783 char **options = NULL;
799 gser = PG_GETARG_GSERIALIZED_P(0);
813 PG_FREE_IF_COPY(gser, 0);
825 SET_VARSIZE(pgrast, pgrast->
size);
826 PG_RETURN_POINTER(pgrast);
830 if (!PG_ARGISNULL(1)) {
831 scale[0] = PG_GETARG_FLOAT8(1);
832 if (
FLT_NEQ(scale[0], 0)) scale_x = &scale[0];
836 if (!PG_ARGISNULL(2)) {
837 scale[1] = PG_GETARG_FLOAT8(2);
838 if (
FLT_NEQ(scale[1], 0)) scale_y = &scale[1];
840 POSTGIS_RT_DEBUGF(3,
"RASTER_asRaster: scale (x, y) = %f, %f", scale[0], scale[1]);
843 if (!PG_ARGISNULL(3)) {
844 dim[0] = PG_GETARG_INT32(3);
845 if (dim[0] < 0) dim[0] = 0;
846 if (dim[0] != 0) dim_x = &dim[0];
850 if (!PG_ARGISNULL(4)) {
851 dim[1] = PG_GETARG_INT32(4);
852 if (dim[1] < 0) dim[1] = 0;
853 if (dim[1] != 0) dim_y = &dim[1];
858 if (!PG_ARGISNULL(5)) {
859 array = PG_GETARG_ARRAYTYPE_P(5);
860 etype = ARR_ELEMTYPE(array);
861 get_typlenbyvalalign(etype, &typlen, &typbyval, &typalign);
869 PG_FREE_IF_COPY(gser, 0);
871 elog(ERROR,
"RASTER_asRaster: Invalid data type for pixeltype");
876 deconstruct_array(array, etype, typlen, typbyval, typalign, &e,
882 for (i = 0, j = 0; i < n; i++) {
891 pixeltypetext = (text *) DatumGetPointer(e[i]);
892 if (NULL == pixeltypetext)
break;
893 pixeltype = text_to_cstring(pixeltypetext);
901 if (strlen(pixeltype)) {
908 PG_FREE_IF_COPY(gser, 0);
910 elog(ERROR,
"RASTER_asRaster: Invalid pixel type provided: %s", pixeltype);
914 pixtypes[j] = pixtype;
921 pixtypes = repalloc(pixtypes, j *
sizeof(
rt_pixtype));
931 #if POSTGIS_DEBUG_LEVEL > 0 932 for (i = 0; i < pixtypes_len; i++)
933 POSTGIS_RT_DEBUGF(3,
"RASTER_asRaster: pixtypes[%d] = %d", i, (
int) pixtypes[i]);
937 if (!PG_ARGISNULL(6)) {
938 array = PG_GETARG_ARRAYTYPE_P(6);
939 etype = ARR_ELEMTYPE(array);
940 get_typlenbyvalalign(etype, &typlen, &typbyval, &typalign);
948 if (pixtypes_len) pfree(pixtypes);
951 PG_FREE_IF_COPY(gser, 0);
953 elog(ERROR,
"RASTER_asRaster: Invalid data type for value");
958 deconstruct_array(array, etype, typlen, typbyval, typalign, &e,
962 values = (
double *) palloc(
sizeof(
double) * n);
963 for (i = 0, j = 0; i < n; i++) {
971 values[j] = (double) DatumGetFloat4(e[i]);
974 values[j] = (double) DatumGetFloat8(e[i]);
984 values = repalloc(values, j *
sizeof(
double));
994 #if POSTGIS_DEBUG_LEVEL > 0 995 for (i = 0; i < values_len; i++)
1000 if (!PG_ARGISNULL(7)) {
1001 array = PG_GETARG_ARRAYTYPE_P(7);
1002 etype = ARR_ELEMTYPE(array);
1003 get_typlenbyvalalign(etype, &typlen, &typbyval, &typalign);
1011 if (pixtypes_len) pfree(pixtypes);
1012 if (values_len) pfree(values);
1015 PG_FREE_IF_COPY(gser, 0);
1017 elog(ERROR,
"RASTER_asRaster: Invalid data type for nodataval");
1022 deconstruct_array(array, etype, typlen, typbyval, typalign, &e,
1026 nodatavals = (
double *) palloc(
sizeof(
double) * n);
1028 for (i = 0, j = 0; i < n; i++) {
1039 nodatavals[j] = (double) DatumGetFloat4(e[i]);
1042 nodatavals[j] = (double) DatumGetFloat8(e[i]);
1053 nodatavals = repalloc(nodatavals, j *
sizeof(
double));
1054 hasnodatas = repalloc(hasnodatas, j *
sizeof(
uint8_t));
1066 #if POSTGIS_DEBUG_LEVEL > 0 1067 for (i = 0; i < nodatavals_len; i++) {
1074 if (!PG_ARGISNULL(8)) {
1075 ulw[0] = PG_GETARG_FLOAT8(8);
1080 if (!PG_ARGISNULL(9)) {
1081 ulw[1] = PG_GETARG_FLOAT8(9);
1084 POSTGIS_RT_DEBUGF(3,
"RASTER_asRaster: upperleft (x, y) = %f, %f", ulw[0], ulw[1]);
1087 if (!PG_ARGISNULL(10)) {
1088 gridw[0] = PG_GETARG_FLOAT8(10);
1089 grid_xw = &gridw[0];
1093 if (!PG_ARGISNULL(11)) {
1094 gridw[1] = PG_GETARG_FLOAT8(11);
1095 grid_yw = &gridw[1];
1097 POSTGIS_RT_DEBUGF(3,
"RASTER_asRaster: grid (x, y) = %f, %f", gridw[0], gridw[1]);
1104 (scale_x == NULL && scale_y != NULL) ||
1105 (scale_x != NULL && scale_y == NULL)
1107 elog(NOTICE,
"Values must be provided for both X and Y of scale if one is specified");
1114 (dim_x == NULL && dim_y != NULL) ||
1115 (dim_x != NULL && dim_y == NULL)
1117 elog(NOTICE,
"Values must be provided for both width and height if one is specified");
1124 (scale_x != NULL && scale_y != NULL) &&
1125 (dim_x != NULL && dim_y != NULL)
1127 elog(NOTICE,
"Values provided for X and Y of scale and width and height. Using the width and height");
1135 (scale_x == NULL && scale_y == NULL) &&
1136 (dim_x == NULL && dim_y == NULL)
1138 elog(NOTICE,
"Values must be provided for X and Y of scale or width and height");
1145 (ul_xw == NULL && ul_yw != NULL) ||
1146 (ul_xw != NULL && ul_yw == NULL)
1148 elog(NOTICE,
"Values must be provided for both X and Y when specifying the upper-left corner");
1155 (grid_xw == NULL && grid_yw != NULL) ||
1156 (grid_xw != NULL && grid_yw == NULL)
1158 elog(NOTICE,
"Values must be provided for both X and Y when specifying the alignment");
1165 (ul_xw != NULL && ul_yw != NULL) &&
1166 (grid_xw != NULL && grid_yw != NULL)
1168 elog(NOTICE,
"Values provided for both X and Y of upper-left corner and alignment. Using the values of upper-left corner");
1177 if (pixtypes_len) pfree(pixtypes);
1178 if (values_len) pfree(values);
1179 if (nodatavals_len) {
1185 PG_FREE_IF_COPY(gser, 0);
1191 if (!PG_ARGISNULL(12)) {
1192 skew[0] = PG_GETARG_FLOAT8(12);
1193 if (
FLT_NEQ(skew[0], 0)) skew_x = &skew[0];
1197 if (!PG_ARGISNULL(13)) {
1198 skew[1] = PG_GETARG_FLOAT8(13);
1199 if (
FLT_NEQ(skew[1], 0)) skew_y = &skew[1];
1201 POSTGIS_RT_DEBUGF(3,
"RASTER_asRaster: skew (x, y) = %f, %f", skew[0], skew[1]);
1204 if (!PG_ARGISNULL(14) && PG_GETARG_BOOL(14) ==
TRUE) {
1205 if (options_len < 1) {
1207 options = (
char **) palloc(
sizeof(
char *) * options_len);
1211 options = (
char **) repalloc(options,
sizeof(
char *) * options_len);
1214 options[options_len - 1] = palloc(
sizeof(
char*) * (strlen(
"ALL_TOUCHED=TRUE") + 1));
1215 options[options_len - 1] =
"ALL_TOUCHED=TRUE";
1220 options = (
char **) repalloc(options,
sizeof(
char *) * options_len);
1221 options[options_len - 1] = NULL;
1232 if (pixtypes_len) pfree(pixtypes);
1233 if (values_len) pfree(values);
1234 if (nodatavals_len) {
1238 if (options_len) pfree(options);
1241 PG_FREE_IF_COPY(gser, 0);
1243 elog(ERROR,
"RASTER_asRaster: Could not find srtext for SRID (%d)", srid);
1253 num_bands =
MIN(pixtypes_len, values_len);
1254 num_bands =
MIN(num_bands, nodatavals_len);
1262 (pixtypes_len == values_len) &&
1263 (values_len == nodatavals_len)
1267 "Imbalanced number of values provided for pixeltype (%d), value (%d) and nodataval (%d). Using the first %d values of each parameter",
1279 PG_FREE_IF_COPY(gser, 0);
1286 num_bands, pixtypes,
1288 nodatavals, hasnodatas,
1297 if (pixtypes_len) pfree(pixtypes);
1298 if (values_len) pfree(values);
1299 if (nodatavals_len) {
1303 if (options_len) pfree(options);
1306 elog(ERROR,
"RASTER_asRaster: Could not rasterize geometry");
1316 if (NULL == pgrast) PG_RETURN_NULL();
1320 SET_VARSIZE(pgrast, pgrast->
size);
1321 PG_RETURN_POINTER(pgrast);
int clamp_srid(int srid)
Return a valid SRID from an arbitrary integer Raises a notice if what comes out is different from wha...
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
int rt_raster_get_num_bands(rt_raster raster)
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Datum RASTER_getPolygon(PG_FUNCTION_ARGS)
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
rt_geomval rt_raster_gdal_polygonize(rt_raster raster, int nband, int exclude_nodata_value, int *pnElements)
Returns a set of "geomval" value, one for each group of pixel sharing the same value for the provided...
void lwgeom_free(LWGEOM *geom)
rt_raster rt_raster_gdal_rasterize(const unsigned char *wkb, uint32_t wkb_len, const char *srs, uint32_t num_bands, rt_pixtype *pixtype, double *init, double *value, double *nodata, uint8_t *hasnodata, int *width, int *height, double *scale_x, double *scale_y, double *ul_xw, double *ul_yw, double *grid_xw, double *grid_yw, double *skew_x, double *skew_y, char **options)
Return a raster of the provided geometry.
PG_FUNCTION_INFO_V1(RASTER_envelope)
void rt_band_destroy(rt_band band)
Destroy a raster band.
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Datum RASTER_envelope(PG_FUNCTION_ARGS)
int lwgeom_ndims(const LWGEOM *geom)
Return the number of dimensions (2, 3, 4) in a geometry.
int rt_raster_is_empty(rt_raster raster)
Return TRUE if the raster is empty.
#define POSTGIS_RT_DEBUGF(level, msg,...)
rt_errorstate rt_raster_get_convex_hull(rt_raster raster, LWGEOM **hull)
Get raster's convex hull.
rt_errorstate rt_raster_surface(rt_raster raster, int nband, LWMPOLY **surface)
Get a raster as a surface (multipolygon).
void lwmpoly_free(LWMPOLY *mpoly)
uint8_t * lwgeom_to_wkb(const LWGEOM *geom, uint8_t variant, size_t *size_out)
Convert LWGEOM to a char* in WKB format.
void lwpoly_free(LWPOLY *poly)
rt_errorstate rt_band_get_pixel(rt_band band, int x, int y, double *value, int *nodata)
Get pixel value.
rt_pixtype rt_pixtype_index_from_name(const char *pixname)
#define SRID_UNKNOWN
Unknown SRID value.
LWGEOM * lwgeom_force_2d(const LWGEOM *geom)
Strip out the Z/M components of an LWGEOM.
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
Datum RASTER_asRaster(PG_FUNCTION_ARGS)
int rt_band_get_hasnodata_flag(rt_band band)
Get hasnodata flag value.
LWPOLY * rt_raster_pixel_as_polygon(rt_raster raster, int x, int y)
Get a raster pixel as a polygon.
char * rtpg_trim(const char *input)
int rt_raster_has_band(rt_raster raster, int nband)
Return TRUE if the raster has a band of this number.
rt_errorstate rt_raster_get_envelope_geom(rt_raster raster, LWGEOM **env)
Get raster's envelope as a geometry.
void rt_raster_set_srid(rt_raster raster, int32_t srid)
Set raster's SRID.
Datum RASTER_convex_hull(PG_FUNCTION_ARGS)
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
rt_raster rt_raster_new(uint32_t width, uint32_t height)
Construct a raster with given dimensions.
Datum RASTER_dumpAsPolygons(PG_FUNCTION_ARGS)
uint16_t rt_raster_get_width(rt_raster raster)
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
Datum RASTER_getPixelPolygons(PG_FUNCTION_ARGS)
int rt_band_get_isnodata_flag(rt_band band)
Get isnodata flag value.
char * rtpg_getSR(int srid)
rt_errorstate rt_raster_get_perimeter(rt_raster raster, int nband, LWGEOM **perimeter)
Get raster perimeter.
uint16_t rt_raster_get_height(rt_raster raster)
#define POSTGIS_RT_DEBUG(level, msg)
int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members) ...
GSERIALIZED * gserialized_from_lwgeom(LWGEOM *geom, size_t *size)
Allocate a new GSERIALIZED from an LWGEOM.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
LWGEOM * lwmpoly_as_lwgeom(const LWMPOLY *obj)
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...