455 text *algtext = NULL;
456 char *algchar = NULL;
457 GDALResampleAlg alg = GRA_NearestNeighbour;
458 double max_err = 0.125;
461 char *src_srs = NULL;
463 char *dst_srs = NULL;
466 double scale[2] = {0};
467 double *scale_x = NULL;
468 double *scale_y = NULL;
470 double gridw[2] = {0};
471 double *grid_xw = NULL;
472 double *grid_yw = NULL;
474 double skew[2] = {0};
475 double *skew_x = NULL;
476 double *skew_y = NULL;
487 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
492 PG_FREE_IF_COPY(pgraster, 0);
493 elog(ERROR,
"RASTER_GDALWarp: Could not deserialize raster");
498 if (!PG_ARGISNULL(1)) {
499 algtext = PG_GETARG_TEXT_P(1);
506 if (!PG_ARGISNULL(2)) {
507 max_err = PG_GETARG_FLOAT8(2);
508 if (max_err < 0.) max_err = 0.;
517 if (!PG_ARGISNULL(3)) {
521 PG_FREE_IF_COPY(pgraster, 0);
522 elog(ERROR,
"RASTER_GDALWarp: %d is an invalid target SRID", dst_srid);
533 PG_FREE_IF_COPY(pgraster, 0);
534 elog(ERROR,
"RASTER_GDALWarp: Input raster has unknown (%d) SRID", src_srid);
538 else if (dst_srid == src_srid) {
543 if (!PG_ARGISNULL(4)) {
544 scale[0] = PG_GETARG_FLOAT8(4);
545 if (
FLT_NEQ(scale[0], 0)) scale_x = &scale[0];
549 if (!PG_ARGISNULL(5)) {
550 scale[1] = PG_GETARG_FLOAT8(5);
551 if (
FLT_NEQ(scale[1], 0)) scale_y = &scale[1];
555 if (!PG_ARGISNULL(6)) {
556 gridw[0] = PG_GETARG_FLOAT8(6);
561 if (!PG_ARGISNULL(7)) {
562 gridw[1] = PG_GETARG_FLOAT8(7);
567 if (!PG_ARGISNULL(8)) {
568 skew[0] = PG_GETARG_FLOAT8(8);
569 if (
FLT_NEQ(skew[0], 0)) skew_x = &skew[0];
573 if (!PG_ARGISNULL(9)) {
574 skew[1] = PG_GETARG_FLOAT8(9);
575 if (
FLT_NEQ(skew[1], 0)) skew_y = &skew[1];
579 if (!PG_ARGISNULL(10)) {
580 dim[0] = PG_GETARG_INT32(10);
581 if (dim[0] < 0) dim[0] = 0;
582 if (dim[0] > 0) dim_x = &dim[0];
586 if (!PG_ARGISNULL(11)) {
587 dim[1] = PG_GETARG_INT32(11);
588 if (dim[1] < 0) dim[1] = 0;
589 if (dim[1] > 0) dim_y = &dim[1];
595 (scale_x == NULL) && (scale_y == NULL) &&
596 (grid_xw == NULL) && (grid_yw == NULL) &&
597 (skew_x == NULL) && (skew_y == NULL) &&
598 (dim_x == NULL) && (dim_y == NULL)
600 elog(NOTICE,
"No resampling parameters provided. Returning original raster");
602 PG_RETURN_POINTER(pgraster);
606 (grid_xw != NULL && grid_yw == NULL) ||
607 (grid_xw == NULL && grid_yw != NULL)
609 elog(NOTICE,
"Values must be provided for both X and Y when specifying the alignment. Returning original raster");
611 PG_RETURN_POINTER(pgraster);
615 (scale_x != NULL && scale_y == NULL) ||
616 (scale_x == NULL && scale_y != NULL)
618 elog(NOTICE,
"Values must be provided for both X and Y when specifying the scale. Returning original raster");
620 PG_RETURN_POINTER(pgraster);
624 (scale_x != NULL || scale_y != NULL) &&
625 (dim_x != NULL || dim_y != NULL)
627 elog(NOTICE,
"Scale X/Y and width/height are mutually exclusive. Only provide one. Returning original raster");
629 PG_RETURN_POINTER(pgraster);
636 if (NULL == src_srs) {
638 PG_FREE_IF_COPY(pgraster, 0);
639 elog(ERROR,
"RASTER_GDALWarp: Input raster has unknown SRID (%d)", src_srid);
645 if (NULL == dst_srs) {
648 PG_FREE_IF_COPY(pgraster, 0);
649 elog(ERROR,
"RASTER_GDALWarp: Target SRID (%d) is unknown", dst_srid);
665 PG_FREE_IF_COPY(pgraster, 0);
671 elog(ERROR,
"RASTER_band: Could not create transformed raster");
681 if (NULL == pgrast) PG_RETURN_NULL();
685 SET_VARSIZE(pgrast, pgrast->
size);
686 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...
#define SRID_UNKNOWN
Unknown SRID value.
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
GDALResampleAlg rt_util_gdal_resample_alg(const char *algname)
Convert cstring name to GDAL Resample Algorithm.
void rt_raster_set_srid(rt_raster raster, int32_t srid)
Set raster's SRID.
rt_raster rt_raster_gdal_warp(rt_raster raster, const char *src_srs, const char *dst_srs, double *scale_x, double *scale_y, int *width, int *height, double *ul_xw, double *ul_yw, double *grid_xw, double *grid_yw, double *skew_x, double *skew_y, GDALResampleAlg resample_alg, double max_err)
Return a warped raster using GDAL Warp API.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
char * text_to_cstring(const text *textptr)
char * rtpg_getSR(int srid)
char * rtpg_strtoupper(char *str)
char * rtpg_trim(const char *input)
#define POSTGIS_RT_DEBUG(level, msg)
#define POSTGIS_RT_DEBUGF(level, msg,...)