PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ RASTER_mapAlgebraFctNgb()

Datum RASTER_mapAlgebraFctNgb ( PG_FUNCTION_ARGS  )

Create a new empty raster with having the same georeference as the provided raster

If this new raster is empty (width = 0 OR height = 0) then there is nothing to compute and we return it right now

Check if the raster has the required band. Otherwise, return a raster without band

We set the initial value of the future band to nodata value. If nodata value is null, then the raster will be initialized to rt_band_get_min_value but all the values should be recomputed anyway

Set the new pixeltype

Optimization: If the raster is only filled with nodata values return right now a raster filled with the nodatavalueexpr TODO: Call rt_band_check_isnodata instead?

Create the raster receiving all the computed values. Initialize it to the new initial value

We compute a value only for the withdata value neighborhood since the nodata value has already been set by the first optimization

Definition at line 5606 of file rtpg_mapalgebra.c.

5607{
5608 rt_pgraster *pgraster = NULL;
5609 rt_pgraster *pgrtn = NULL;
5610 rt_raster raster = NULL;
5611 rt_raster newrast = NULL;
5612 rt_band band = NULL;
5613 rt_band newband = NULL;
5614 int x, y, nband, width, height, ngbwidth, ngbheight, winwidth, winheight, u, v, nIndex, nNullItems;
5615 double r, rpix;
5616 double newnodatavalue = 0.0;
5617 double newinitialvalue = 0.0;
5618 double newval = 0.0;
5619 rt_pixtype newpixeltype;
5620 int ret = -1;
5621 Oid oid;
5622 FmgrInfo cbinfo;
5623#if POSTGIS_PGSQL_VERSION < 120
5624 FunctionCallInfoData cbdata;
5625#else
5626 LOCAL_FCINFO(cbdata, FUNC_MAX_ARGS); /* Could be optimized */
5627#endif
5628 Datum tmpnewval;
5629 ArrayType * neighborDatum;
5630 char * strFromText = NULL;
5631 text * txtNodataMode = NULL;
5632 text * txtCallbackParam = NULL;
5633 int intReplace = 0;
5634 float fltReplace = 0;
5635 bool valuereplace = false, pixelreplace, nNodataOnly = true, nNullSkip = false;
5636 Datum * neighborData = NULL;
5637 bool * neighborNulls = NULL;
5638 int neighborDims[2];
5639 int neighborLbs[2];
5640 int16 typlen;
5641 bool typbyval;
5642 char typalign;
5643
5644 POSTGIS_RT_DEBUG(2, "RASTER_mapAlgebraFctNgb: STARTING...");
5645
5646 /* Check raster */
5647 if (PG_ARGISNULL(0)) {
5648 elog(WARNING, "Raster is NULL. Returning NULL");
5649 PG_RETURN_NULL();
5650 }
5651
5652
5653 /* Deserialize raster */
5654 pgraster = (rt_pgraster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
5655 raster = rt_raster_deserialize(pgraster, FALSE);
5656 if (NULL == raster)
5657 {
5658 PG_FREE_IF_COPY(pgraster, 0);
5659 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not deserialize raster");
5660 PG_RETURN_NULL();
5661 }
5662
5663 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: Getting arguments...");
5664
5665 /* Get the rest of the arguments */
5666
5667 if (PG_ARGISNULL(1))
5668 nband = 1;
5669 else
5670 nband = PG_GETARG_INT32(1);
5671
5672 if (nband < 1)
5673 nband = 1;
5674
5675 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: Creating new empty raster...");
5676
5681 width = rt_raster_get_width(raster);
5682 height = rt_raster_get_height(raster);
5683
5684 newrast = rt_raster_new(width, height);
5685
5686 if ( NULL == newrast ) {
5687 rt_raster_destroy(raster);
5688 PG_FREE_IF_COPY(pgraster, 0);
5689 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not create a new raster");
5690 PG_RETURN_NULL();
5691 }
5692
5693 rt_raster_set_scale(newrast,
5694 rt_raster_get_x_scale(raster),
5695 rt_raster_get_y_scale(raster));
5696
5697 rt_raster_set_offsets(newrast,
5698 rt_raster_get_x_offset(raster),
5699 rt_raster_get_y_offset(raster));
5700
5701 rt_raster_set_skews(newrast,
5702 rt_raster_get_x_skew(raster),
5703 rt_raster_get_y_skew(raster));
5704
5705 rt_raster_set_srid(newrast, rt_raster_get_srid(raster));
5706
5707
5712 if (rt_raster_is_empty(newrast))
5713 {
5714 elog(NOTICE, "Raster is empty. Returning an empty raster");
5715 rt_raster_destroy(raster);
5716 PG_FREE_IF_COPY(pgraster, 0);
5717
5718 pgrtn = rt_raster_serialize(newrast);
5719 rt_raster_destroy(newrast);
5720 if (NULL == pgrtn) {
5721 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5722 PG_RETURN_NULL();
5723 }
5724
5725 SET_VARSIZE(pgrtn, pgrtn->size);
5726 PG_RETURN_POINTER(pgrtn);
5727 }
5728
5729 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: Getting raster band %d...", nband);
5730
5735 if (!rt_raster_has_band(raster, nband - 1)) {
5736 elog(NOTICE, "Raster does not have the required band. Returning a raster "
5737 "without a band");
5738 rt_raster_destroy(raster);
5739 PG_FREE_IF_COPY(pgraster, 0);
5740
5741 pgrtn = rt_raster_serialize(newrast);
5742 rt_raster_destroy(newrast);
5743 if (NULL == pgrtn) {
5744 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5745 PG_RETURN_NULL();
5746 }
5747
5748 SET_VARSIZE(pgrtn, pgrtn->size);
5749 PG_RETURN_POINTER(pgrtn);
5750 }
5751
5752 /* Get the raster band */
5753 band = rt_raster_get_band(raster, nband - 1);
5754 if ( NULL == band ) {
5755 elog(NOTICE, "Could not get the required band. Returning a raster "
5756 "without a band");
5757 rt_raster_destroy(raster);
5758 PG_FREE_IF_COPY(pgraster, 0);
5759
5760 pgrtn = rt_raster_serialize(newrast);
5761 rt_raster_destroy(newrast);
5762 if (NULL == pgrtn) {
5763 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5764 PG_RETURN_NULL();
5765 }
5766
5767 SET_VARSIZE(pgrtn, pgrtn->size);
5768 PG_RETURN_POINTER(pgrtn);
5769 }
5770
5771 /*
5772 * Get NODATA value
5773 */
5774 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: Getting NODATA value for band...");
5775
5776 if (rt_band_get_hasnodata_flag(band)) {
5777 rt_band_get_nodata(band, &newnodatavalue);
5778 }
5779
5780 else {
5781 newnodatavalue = rt_band_get_min_value(band);
5782 }
5783
5784 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: NODATA value for band: %f",
5785 newnodatavalue);
5791 newinitialvalue = newnodatavalue;
5792
5796 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: Setting pixeltype...");
5797
5798 if (PG_ARGISNULL(2)) {
5799 newpixeltype = rt_band_get_pixtype(band);
5800 }
5801
5802 else {
5803 strFromText = text_to_cstring(PG_GETARG_TEXT_P(2));
5804 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: Pixeltype parameter: %s", strFromText);
5805 newpixeltype = rt_pixtype_index_from_name(strFromText);
5806 pfree(strFromText);
5807 if (newpixeltype == PT_END)
5808 newpixeltype = rt_band_get_pixtype(band);
5809 }
5810
5811 if (newpixeltype == PT_END) {
5812
5813 rt_raster_destroy(raster);
5814 PG_FREE_IF_COPY(pgraster, 0);
5815 rt_raster_destroy(newrast);
5816
5817 elog(ERROR, "RASTER_mapAlgebraFctNgb: Invalid pixeltype");
5818 PG_RETURN_NULL();
5819 }
5820
5821 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: Pixeltype set to %s (%d)",
5822 rt_pixtype_name(newpixeltype), newpixeltype);
5823
5824 /* Get the name of the callback userfunction */
5825 if (PG_ARGISNULL(5)) {
5826
5827 rt_raster_destroy(raster);
5828 PG_FREE_IF_COPY(pgraster, 0);
5829 rt_raster_destroy(newrast);
5830
5831 elog(ERROR, "RASTER_mapAlgebraFctNgb: Required function is missing");
5832 PG_RETURN_NULL();
5833 }
5834
5835 oid = PG_GETARG_OID(5);
5836 if (oid == InvalidOid) {
5837
5838 rt_raster_destroy(raster);
5839 PG_FREE_IF_COPY(pgraster, 0);
5840 rt_raster_destroy(newrast);
5841
5842 elog(ERROR, "RASTER_mapAlgebraFctNgb: Got invalid function object id");
5843 PG_RETURN_NULL();
5844 }
5845
5846 fmgr_info(oid, &cbinfo);
5847
5848 /* function cannot return set */
5849 if (cbinfo.fn_retset) {
5850
5851 rt_raster_destroy(raster);
5852 PG_FREE_IF_COPY(pgraster, 0);
5853 rt_raster_destroy(newrast);
5854
5855 elog(ERROR, "RASTER_mapAlgebraFctNgb: Function provided must return double precision not resultset");
5856 PG_RETURN_NULL();
5857 }
5858 /* function should have correct # of args */
5859 else if (cbinfo.fn_nargs != 3) {
5860
5861 rt_raster_destroy(raster);
5862 PG_FREE_IF_COPY(pgraster, 0);
5863 rt_raster_destroy(newrast);
5864
5865 elog(ERROR, "RASTER_mapAlgebraFctNgb: Function does not have three input parameters");
5866 PG_RETURN_NULL();
5867 }
5868
5869 if (func_volatile(oid) == 'v') {
5870 elog(NOTICE, "Function provided is VOLATILE. Unless required and for best performance, function should be IMMUTABLE or STABLE");
5871 }
5872
5873 /* prep function call data */
5874#if POSTGIS_PGSQL_VERSION < 120
5875 InitFunctionCallInfoData(cbdata, &cbinfo, 3, InvalidOid, NULL, NULL);
5876 memset(cbdata.argnull, FALSE, sizeof(bool) * 3);
5877#else
5878 InitFunctionCallInfoData(*cbdata, &cbinfo, 3, InvalidOid, NULL, NULL);
5879 cbdata->args[0].isnull = FALSE;
5880 cbdata->args[1].isnull = FALSE;
5881 cbdata->args[2].isnull = FALSE;
5882#endif
5883
5884 /* check that the function isn't strict if the args are null. */
5885 if (PG_ARGISNULL(7)) {
5886 if (cbinfo.fn_strict) {
5887
5888 rt_raster_destroy(raster);
5889 PG_FREE_IF_COPY(pgraster, 0);
5890 rt_raster_destroy(newrast);
5891
5892 elog(ERROR, "RASTER_mapAlgebraFctNgb: Strict callback functions cannot have NULL parameters");
5893 PG_RETURN_NULL();
5894 }
5895
5896#if POSTGIS_PGSQL_VERSION < 120
5897 cbdata.arg[2] = (Datum)NULL;
5898 cbdata.argnull[2] = TRUE;
5899#else
5900 cbdata->args[2].value = (Datum)NULL;
5901 cbdata->args[2].isnull = TRUE;
5902#endif
5903 }
5904 else {
5905#if POSTGIS_PGSQL_VERSION < 120
5906 cbdata.arg[2] = PG_GETARG_DATUM(7);
5907#else
5908 cbdata->args[2].value = PG_GETARG_DATUM(7);
5909#endif
5910 }
5911
5917 if (rt_band_get_isnodata_flag(band)) {
5918
5919 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: Band is a nodata band, returning "
5920 "a raster filled with nodata");
5921
5922 rt_raster_generate_new_band(newrast, newpixeltype,
5923 newinitialvalue, TRUE, newnodatavalue, 0);
5924
5925 rt_raster_destroy(raster);
5926 PG_FREE_IF_COPY(pgraster, 0);
5927
5928 /* Serialize created raster */
5929 pgrtn = rt_raster_serialize(newrast);
5930 rt_raster_destroy(newrast);
5931 if (NULL == pgrtn) {
5932 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5933 PG_RETURN_NULL();
5934 }
5935
5936 SET_VARSIZE(pgrtn, pgrtn->size);
5937 PG_RETURN_POINTER(pgrtn);
5938 }
5939
5940
5945 rt_raster_generate_new_band(newrast, newpixeltype,
5946 newinitialvalue, TRUE, newnodatavalue, 0);
5947
5948 /* Get the new raster band */
5949 newband = rt_raster_get_band(newrast, 0);
5950 if ( NULL == newband ) {
5951 elog(NOTICE, "Could not modify band for new raster. Returning new "
5952 "raster with the original band");
5953
5954 rt_raster_destroy(raster);
5955 PG_FREE_IF_COPY(pgraster, 0);
5956
5957 /* Serialize created raster */
5958 pgrtn = rt_raster_serialize(newrast);
5959 rt_raster_destroy(newrast);
5960 if (NULL == pgrtn) {
5961 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5962 PG_RETURN_NULL();
5963 }
5964
5965 SET_VARSIZE(pgrtn, pgrtn->size);
5966 PG_RETURN_POINTER(pgrtn);
5967 }
5968
5969 /* Get the width of the neighborhood */
5970 if (PG_ARGISNULL(3) || PG_GETARG_INT32(3) <= 0) {
5971 elog(NOTICE, "Neighborhood width is NULL or <= 0. Returning new "
5972 "raster with the original band");
5973
5974 rt_raster_destroy(raster);
5975 PG_FREE_IF_COPY(pgraster, 0);
5976
5977 /* Serialize created raster */
5978 pgrtn = rt_raster_serialize(newrast);
5979 rt_raster_destroy(newrast);
5980 if (NULL == pgrtn) {
5981 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
5982 PG_RETURN_NULL();
5983 }
5984
5985 SET_VARSIZE(pgrtn, pgrtn->size);
5986 PG_RETURN_POINTER(pgrtn);
5987 }
5988
5989 ngbwidth = PG_GETARG_INT32(3);
5990 winwidth = ngbwidth * 2 + 1;
5991
5992 /* Get the height of the neighborhood */
5993 if (PG_ARGISNULL(4) || PG_GETARG_INT32(4) <= 0) {
5994 elog(NOTICE, "Neighborhood height is NULL or <= 0. Returning new "
5995 "raster with the original band");
5996
5997 rt_raster_destroy(raster);
5998 PG_FREE_IF_COPY(pgraster, 0);
5999
6000 /* Serialize created raster */
6001 pgrtn = rt_raster_serialize(newrast);
6002 rt_raster_destroy(newrast);
6003 if (NULL == pgrtn) {
6004 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
6005 PG_RETURN_NULL();
6006 }
6007
6008 SET_VARSIZE(pgrtn, pgrtn->size);
6009 PG_RETURN_POINTER(pgrtn);
6010 }
6011
6012 ngbheight = PG_GETARG_INT32(4);
6013 winheight = ngbheight * 2 + 1;
6014
6015 /* Get the type of NODATA behavior for the neighborhoods. */
6016 if (PG_ARGISNULL(6)) {
6017 elog(NOTICE, "Neighborhood NODATA behavior defaulting to 'ignore'");
6018 txtNodataMode = cstring_to_text("ignore");
6019 }
6020 else {
6021 txtNodataMode = PG_GETARG_TEXT_P(6);
6022 }
6023
6024 txtCallbackParam = (text*)palloc(VARSIZE(txtNodataMode));
6025 SET_VARSIZE(txtCallbackParam, VARSIZE(txtNodataMode));
6026 memcpy((void *)VARDATA(txtCallbackParam), (void *)VARDATA(txtNodataMode), VARSIZE(txtNodataMode) - VARHDRSZ);
6027
6028 /* pass the nodata mode into the user function */
6029#if POSTGIS_PGSQL_VERSION < 120
6030 cbdata.arg[1] = CStringGetDatum(txtCallbackParam);
6031#else
6032 cbdata->args[1].value = CStringGetDatum(txtCallbackParam);
6033#endif
6034
6035 strFromText = text_to_cstring(txtNodataMode);
6036 strFromText = rtpg_strtoupper(strFromText);
6037
6038 if (strcmp(strFromText, "VALUE") == 0)
6039 valuereplace = true;
6040 else if (strcmp(strFromText, "IGNORE") != 0 && strcmp(strFromText, "NULL") != 0) {
6041 /* if the text is not "IGNORE" or "NULL", it may be a numerical value */
6042 if (sscanf(strFromText, "%d", &intReplace) <= 0 && sscanf(strFromText, "%f", &fltReplace) <= 0) {
6043 /* the value is NOT an integer NOR a floating point */
6044 elog(NOTICE, "Neighborhood NODATA mode is not recognized. Must be one of 'value', 'ignore', "
6045 "'NULL', or a numeric value. Returning new raster with the original band");
6046
6047 /* clean up the nodatamode string */
6048 pfree(txtCallbackParam);
6049 pfree(strFromText);
6050
6051 rt_raster_destroy(raster);
6052 PG_FREE_IF_COPY(pgraster, 0);
6053
6054 /* Serialize created raster */
6055 pgrtn = rt_raster_serialize(newrast);
6056 rt_raster_destroy(newrast);
6057 if (NULL == pgrtn) {
6058 elog(ERROR, "RASTER_mapAlgebraFctNgb: Could not serialize raster");
6059 PG_RETURN_NULL();
6060 }
6061
6062 SET_VARSIZE(pgrtn, pgrtn->size);
6063 PG_RETURN_POINTER(pgrtn);
6064 }
6065 }
6066 else if (strcmp(strFromText, "NULL") == 0) {
6067 /* this setting means that the neighborhood should be skipped if any of the values are null */
6068 nNullSkip = true;
6069 }
6070
6071 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: Main computing loop (%d x %d)",
6072 width, height);
6073
6074 /* Allocate room for the neighborhood. */
6075 neighborData = (Datum *)palloc(winwidth * winheight * sizeof(Datum));
6076 neighborNulls = (bool *)palloc(winwidth * winheight * sizeof(bool));
6077
6078 /* The dimensions of the neighborhood array, for creating a multi-dimensional array. */
6079 neighborDims[0] = winwidth;
6080 neighborDims[1] = winheight;
6081
6082 /* The lower bounds for the new multi-dimensional array. */
6083 neighborLbs[0] = 1;
6084 neighborLbs[1] = 1;
6085
6086 /* Get information about the type of item in the multi-dimensional array (float8). */
6087 get_typlenbyvalalign(FLOAT8OID, &typlen, &typbyval, &typalign);
6088
6089 for (x = 0 + ngbwidth; x < width - ngbwidth; x++) {
6090 for(y = 0 + ngbheight; y < height - ngbheight; y++) {
6091 /* populate an array with the pixel values in the neighborhood */
6092 nIndex = 0;
6093 nNullItems = 0;
6094 nNodataOnly = true;
6095 pixelreplace = false;
6096 if (valuereplace) {
6097 ret = rt_band_get_pixel(band, x, y, &rpix, NULL);
6098 if (ret == ES_NONE && FLT_NEQ(rpix, newnodatavalue)) {
6099 pixelreplace = true;
6100 }
6101 }
6102 for (u = x - ngbwidth; u <= x + ngbwidth; u++) {
6103 for (v = y - ngbheight; v <= y + ngbheight; v++) {
6104 ret = rt_band_get_pixel(band, u, v, &r, NULL);
6105 if (ret == ES_NONE) {
6106 if (FLT_NEQ(r, newnodatavalue)) {
6107 /* If the pixel value for this neighbor cell is not NODATA */
6108 neighborData[nIndex] = Float8GetDatum((double)r);
6109 neighborNulls[nIndex] = false;
6110 nNodataOnly = false;
6111 }
6112 else {
6113 /* If the pixel value for this neighbor cell is NODATA */
6114 if (valuereplace && pixelreplace) {
6115 /* Replace the NODATA value with the currently processing pixel. */
6116 neighborData[nIndex] = Float8GetDatum((double)rpix);
6117 neighborNulls[nIndex] = false;
6118 /* do not increment nNullItems, since the user requested that the */
6119 /* neighborhood replace NODATA values with the central pixel value */
6120 }
6121 else {
6122 neighborData[nIndex] = PointerGetDatum(NULL);
6123 neighborNulls[nIndex] = true;
6124 nNullItems++;
6125 }
6126 }
6127 }
6128 else {
6129 /* Fill this will NULL if we can't read the raster pixel. */
6130 neighborData[nIndex] = PointerGetDatum(NULL);
6131 neighborNulls[nIndex] = true;
6132 nNullItems++;
6133 }
6134 /* Next neighbor position */
6135 nIndex++;
6136 }
6137 }
6138
6143 if (!(nNodataOnly || /* neighborhood only contains NODATA -- OR -- */
6144 (nNullSkip && nNullItems > 0) || /* neighborhood should skip any NODATA cells, and a NODATA cell was detected -- OR -- */
6145 (valuereplace && nNullItems > 0))) { /* neighborhood should replace NODATA cells with the central pixel value, and a NODATA cell was detected */
6146 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: (%dx%d), %dx%d neighborhood",
6147 x, y, winwidth, winheight);
6148
6149 neighborDatum = construct_md_array((void *)neighborData, neighborNulls, 2, neighborDims, neighborLbs,
6150 FLOAT8OID, typlen, typbyval, typalign);
6151
6152#if POSTGIS_PGSQL_VERSION < 120
6153 /* Assign the neighbor matrix as the first argument to the user function */
6154 cbdata.arg[0] = PointerGetDatum(neighborDatum);
6155
6156 /* Invoke the user function */
6157 tmpnewval = FunctionCallInvoke(&cbdata);
6158
6159 /* Get the return value of the user function */
6160 if (cbdata.isnull) {
6161 newval = newnodatavalue;
6162 }
6163#else
6164 /* Assign the neighbor matrix as the first argument to the user function */
6165 cbdata->args[0].value = PointerGetDatum(neighborDatum);
6166
6167 /* Invoke the user function */
6168 tmpnewval = FunctionCallInvoke(cbdata);
6169
6170 /* Get the return value of the user function */
6171 if (cbdata->isnull)
6172 {
6173 newval = newnodatavalue;
6174 }
6175#endif
6176 else {
6177 newval = DatumGetFloat8(tmpnewval);
6178 }
6179
6180 POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFctNgb: new value = %f",
6181 newval);
6182
6183 rt_band_set_pixel(newband, x, y, newval, NULL);
6184 }
6185
6186 /* reset the number of null items in the neighborhood */
6187 nNullItems = 0;
6188 }
6189 }
6190
6191
6192 /* clean up */
6193 pfree(neighborNulls);
6194 pfree(neighborData);
6195 pfree(strFromText);
6196 pfree(txtCallbackParam);
6197
6198 rt_raster_destroy(raster);
6199 PG_FREE_IF_COPY(pgraster, 0);
6200
6201 /* The newrast band has been modified */
6202
6203 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: raster modified, serializing it.");
6204 /* Serialize created raster */
6205
6206 pgrtn = rt_raster_serialize(newrast);
6207 rt_raster_destroy(newrast);
6208 if (NULL == pgrtn)
6209 PG_RETURN_NULL();
6210
6211 POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFctNgb: raster serialized");
6212 POSTGIS_RT_DEBUG(4, "RASTER_mapAlgebraFctNgb: returning raster");
6213
6214 SET_VARSIZE(pgrtn, pgrtn->size);
6215 PG_RETURN_POINTER(pgrtn);
6216}
char * r
Definition cu_in_wkt.c:24
#define TRUE
Definition dbfopen.c:169
#define FALSE
Definition dbfopen.c:168
#define FLT_NEQ(x, y)
Definition librtcore.h:2234
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
Definition rt_raster.c:356
double rt_raster_get_x_skew(rt_raster raster)
Get skew about the X axis.
Definition rt_raster.c:181
double rt_raster_get_x_offset(rt_raster raster)
Get raster x offset, in projection units.
Definition rt_raster.c:213
int rt_raster_generate_new_band(rt_raster raster, rt_pixtype pixtype, double initialvalue, uint32_t hasnodata, double nodatavalue, int index)
Generate a new inline band and add it to a raster.
Definition rt_raster.c:485
void rt_raster_set_scale(rt_raster raster, double scaleX, double scaleY)
Set scale in projection units.
Definition rt_raster.c:137
int rt_band_get_hasnodata_flag(rt_band band)
Get hasnodata flag value.
Definition rt_band.c:674
rt_pixtype rt_pixtype_index_from_name(const char *pixname)
Definition rt_pixel.c:80
rt_errorstate rt_band_get_pixel(rt_band band, int x, int y, double *value, int *nodata)
Get pixel value.
Definition rt_band.c:1221
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
Definition rt_raster.c:82
rt_pixtype
Definition librtcore.h:185
@ PT_END
Definition librtcore.h:197
void rt_raster_set_skews(rt_raster raster, double skewX, double skewY)
Set skews about the X and Y axis.
Definition rt_raster.c:168
int rt_band_get_isnodata_flag(rt_band band)
Get isnodata flag value.
Definition rt_band.c:714
rt_raster rt_raster_new(uint32_t width, uint32_t height)
Construct a raster with given dimensions.
Definition rt_raster.c:48
int rt_raster_has_band(rt_raster raster, int nband)
Return TRUE if the raster has a band of this number.
Definition rt_raster.c:1342
double rt_raster_get_x_scale(rt_raster raster)
Get scale X in projection units.
Definition rt_raster.c:150
const char * rt_pixtype_name(rt_pixtype pixtype)
Definition rt_pixel.c:110
double rt_band_get_min_value(rt_band band)
Returns the minimal possible value for the band according to the pixel type.
Definition rt_band.c:1745
rt_errorstate rt_band_set_pixel(rt_band band, int x, int y, double val, int *converted)
Set single pixel's value.
Definition rt_band.c:974
@ ES_NONE
Definition librtcore.h:180
uint16_t rt_raster_get_height(rt_raster raster)
Definition rt_raster.c:129
void rt_raster_set_srid(rt_raster raster, int32_t srid)
Set raster's SRID.
Definition rt_raster.c:363
rt_errorstate rt_band_get_nodata(rt_band band, double *nodata)
Get NODATA value.
Definition rt_band.c:1730
rt_pixtype rt_band_get_pixtype(rt_band band)
Return pixeltype of this band.
Definition rt_band.c:631
uint16_t rt_raster_get_width(rt_raster raster)
Definition rt_raster.c:121
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
double rt_raster_get_y_scale(rt_raster raster)
Get scale Y in projection units.
Definition rt_raster.c:159
double rt_raster_get_y_skew(rt_raster raster)
Get skew about the Y axis.
Definition rt_raster.c:190
void rt_raster_set_offsets(rt_raster raster, double x, double y)
Set insertion points in projection units.
Definition rt_raster.c:199
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
double rt_raster_get_y_offset(rt_raster raster)
Get raster y offset, in projection units.
Definition rt_raster.c:222
int rt_raster_is_empty(rt_raster raster)
Return TRUE if the raster is empty.
Definition rt_raster.c:1329
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
Definition rt_raster.c:381
nband
Definition pixval.py:53
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
Definition rtrowdump.py:121
char * text_to_cstring(const text *textptr)
char * rtpg_strtoupper(char *str)
#define POSTGIS_RT_DEBUG(level, msg)
Definition rtpostgis.h:61
#define POSTGIS_RT_DEBUGF(level, msg,...)
Definition rtpostgis.h:65
Struct definitions.
Definition librtcore.h:2251

References ES_NONE, FALSE, FLT_NEQ, POSTGIS_RT_DEBUG, POSTGIS_RT_DEBUGF, PT_END, r, rt_band_get_hasnodata_flag(), rt_band_get_isnodata_flag(), rt_band_get_min_value(), rt_band_get_nodata(), rt_band_get_pixel(), rt_band_get_pixtype(), rt_band_set_pixel(), rt_pixtype_index_from_name(), rt_pixtype_name(), rt_raster_deserialize(), rt_raster_destroy(), rt_raster_generate_new_band(), rt_raster_get_band(), rt_raster_get_height(), rt_raster_get_srid(), rt_raster_get_width(), rt_raster_get_x_offset(), rt_raster_get_x_scale(), rt_raster_get_x_skew(), rt_raster_get_y_offset(), rt_raster_get_y_scale(), rt_raster_get_y_skew(), rt_raster_has_band(), rt_raster_is_empty(), rt_raster_new(), rt_raster_serialize(), rt_raster_set_offsets(), rt_raster_set_scale(), rt_raster_set_skews(), rt_raster_set_srid(), rtpg_strtoupper(), rt_raster_serialized_t::size, text_to_cstring(), and TRUE.

Here is the call graph for this function: