800{
805 double nodata;
806 int32_t bandindex;
807 bool forcechecking =
FALSE;
808 bool skipset =
FALSE;
809
810
811 if (PG_ARGISNULL(0))
812 PG_RETURN_NULL();
813 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
814
815
816 if (PG_ARGISNULL(1))
817 bandindex = -1;
818 else
819 bandindex = PG_GETARG_INT32(1);
820 if (bandindex < 1) {
821 elog(NOTICE, "Invalid band index (must use 1-based). Nodata value not set. Returning original raster");
823 }
824
826 if (!raster) {
827 PG_FREE_IF_COPY(pgraster, 0);
828 elog(ERROR, "RASTER_setBandNoDataValue: Could not deserialize raster");
829 PG_RETURN_NULL();
830 }
831
832 if (!skipset) {
833
835 if (!band) {
836 elog(NOTICE, "Could not find raster band of index %d when setting pixel value. Nodata value not set. Returning original raster", bandindex);
837 }
838 else {
839 if (!PG_ARGISNULL(3))
840 forcechecking = PG_GETARG_BOOL(3);
841
842 if (PG_ARGISNULL(2)) {
843
846 }
847 else {
848
849 nodata = PG_GETARG_FLOAT8(2);
850
851
853
854
855 if (forcechecking)
857 }
858 }
859 }
860
863 PG_FREE_IF_COPY(pgraster, 0);
864 if (!pgrtn)
865 PG_RETURN_NULL();
866
867 SET_VARSIZE(pgrtn, pgrtn->
size);
868 PG_RETURN_POINTER(pgrtn);
869}
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,...)