PostGIS
2.4.9dev-r@@SVN_REVISION@@
|
#include <postgres.h>
#include <fmgr.h>
#include <funcapi.h>
#include <utils/builtins.h>
#include "utils/lsyscache.h"
#include "utils/array.h"
#include "catalog/pg_type.h"
#include "rtpostgis.h"
Go to the source code of this file.
Functions | |
Datum | RASTER_makeEmpty (PG_FUNCTION_ARGS) |
Datum | RASTER_addBand (PG_FUNCTION_ARGS) |
Datum | RASTER_addBandRasterArray (PG_FUNCTION_ARGS) |
Datum | RASTER_addBandOutDB (PG_FUNCTION_ARGS) |
Datum | RASTER_copyBand (PG_FUNCTION_ARGS) |
Datum | RASTER_tile (PG_FUNCTION_ARGS) |
Datum | RASTER_band (PG_FUNCTION_ARGS) |
PG_FUNCTION_INFO_V1 (RASTER_makeEmpty) | |
Make a new raster with no bands. More... | |
PG_FUNCTION_INFO_V1 (RASTER_addBand) | |
Add band(s) to the given raster at the given position(s). More... | |
PG_FUNCTION_INFO_V1 (RASTER_addBandRasterArray) | |
Add bands from array of rasters to a destination raster. More... | |
PG_FUNCTION_INFO_V1 (RASTER_addBandOutDB) | |
Add out-db band to the given raster at the given position. More... | |
PG_FUNCTION_INFO_V1 (RASTER_copyBand) | |
Copy a band from one raster to another one at the given position. More... | |
PG_FUNCTION_INFO_V1 (RASTER_tile) | |
Break up a raster into smaller tiles. More... | |
PG_FUNCTION_INFO_V1 (RASTER_band) | |
Return new raster from selected bands of existing raster through ST_Band. More... | |