Go to the documentation of this file.
30 #ifndef GDAL_VRT_H_INCLUDED
31 #define GDAL_VRT_H_INCLUDED
45 #define VRT_NODATA_UNSET -1234.56
52 int nXOff,
int nYOff,
int nXSize,
int nYSize,
59 typedef void *VRTAveragedSourceH;
60 typedef void *VRTAverageFilteredSourceH;
61 typedef void *VRTComplexSourceH;
62 typedef void *VRTDerivedRasterBandH;
63 typedef void *VRTDriverH;
64 typedef void *VRTFilteredSourceH;
65 typedef void *VRTFuncSourceH;
66 typedef void *VRTKernelFilteredSourceH;
67 typedef void *VRTRasterBandH;
68 typedef void *VRTRawRasterBandH;
69 typedef void *VRTSimpleSourceH;
70 typedef void *VRTSourceH;
71 typedef void *VRTWarpedDatasetH;
72 typedef void *VRTWarpedRasterBandH;
98 const char *,
double );
103 double,
double,
double );
int VRTAddBand(VRTDatasetH, GDALDataType, char **)
Definition: vrtdataset.cpp:1296
void * VRTDatasetH
Opaque type for a VRT dataset.
Definition: gdal_vrt.h:76
CPLErr VRTAddSource(VRTSourcedRasterBandH, VRTSourceH)
Definition: vrtsourcedrasterband.cpp:951
void VRTFlushCache(VRTDatasetH)
Definition: vrtdataset.cpp:265
GDALDataType
Definition: gdal.h:60
Document node structure.
Definition: cpl_minixml.h:69
#define CPL_C_START
Macro to start a block of C symbols.
Definition: cpl_port.h:337
CPLErr VRTAddComplexSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, double, double, double)
Definition: vrtsourcedrasterband.cpp:1293
#define CPL_C_END
Macro to end a block of C symbols.
Definition: cpl_port.h:339
CPLErr(* VRTImageReadFunc)(void *hCBData, int nXOff, int nYOff, int nXSize, int nYSize, void *pData)
Type for a function that returns the pixel data in a provided window.
Definition: gdal_vrt.h:51
CPLErr VRTAddFuncSource(VRTSourcedRasterBandH, VRTImageReadFunc, void *, double)
Definition: vrtsourcedrasterband.cpp:1352
CPLXMLNode * VRTSerializeToXML(VRTDatasetH, const char *)
Definition: vrtdataset.cpp:403
CPLErr
Error category.
Definition: cpl_error.h:52
CPLErr VRTAddSimpleSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, const char *, double)
Definition: vrtsourcedrasterband.cpp:1214
void * GDALRasterBandH
Opaque type used for the C bindings of the C++ GDALRasterBand class.
Definition: gdal.h:258
VRTDatasetH VRTCreate(int, int)
Definition: vrtdataset.cpp:88
void * VRTSourcedRasterBandH
Opaque type for a VRT sourced raster band.
Definition: gdal_vrt.h:78