779{
784 double nodata;
785 int32_t bandindex;
786 bool forcechecking =
FALSE;
787 bool skipset =
FALSE;
788
789
790 if (PG_ARGISNULL(0))
791 PG_RETURN_NULL();
792 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
793
794
795 if (PG_ARGISNULL(1))
796 bandindex = -1;
797 else
798 bandindex = PG_GETARG_INT32(1);
799 if (bandindex < 1) {
800 elog(NOTICE, "Invalid band index (must use 1-based). Nodata value not set. Returning original raster");
802 }
803
805 if (!raster) {
806 PG_FREE_IF_COPY(pgraster, 0);
807 elog(ERROR, "RASTER_setBandNoDataValue: Could not deserialize raster");
808 PG_RETURN_NULL();
809 }
810
811 if (!skipset) {
812
814 if (!band) {
815 elog(NOTICE, "Could not find raster band of index %d when setting pixel value. Nodata value not set. Returning original raster", bandindex);
816 }
817 else {
818 if (!PG_ARGISNULL(3))
819 forcechecking = PG_GETARG_BOOL(3);
820
821 if (PG_ARGISNULL(2)) {
822
825 }
826 else {
827
828 nodata = PG_GETARG_FLOAT8(2);
829
830
832
833
834 if (forcechecking)
836 }
837 }
838 }
839
842 PG_FREE_IF_COPY(pgraster, 0);
843 if (!pgrtn)
844 PG_RETURN_NULL();
845
846 SET_VARSIZE(pgrtn, pgrtn->
size);
847 PG_RETURN_POINTER(pgrtn);
848}
void rt_band_set_hasnodata_flag(rt_band band, int flag)
Set hasnodata flag value.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
int rt_band_check_is_nodata(rt_band band)
Returns TRUE if the band is only nodata values.
rt_errorstate rt_band_set_nodata(rt_band band, double val, int *converted)
Set nodata value.
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
#define POSTGIS_RT_DEBUGF(level, msg,...)