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,
59typedef void *VRTAveragedSourceH;
60typedef void *VRTAverageFilteredSourceH;
61typedef void *VRTComplexSourceH;
62typedef void *VRTDerivedRasterBandH;
63typedef void *VRTDriverH;
64typedef void *VRTFilteredSourceH;
65typedef void *VRTFuncSourceH;
66typedef void *VRTKernelFilteredSourceH;
67typedef void *VRTRasterBandH;
68typedef void *VRTRawRasterBandH;
69typedef void *VRTSimpleSourceH;
70typedef void *VRTSourceH;
71typedef void *VRTWarpedDatasetH;
72typedef void *VRTWarpedRasterBandH;
98 const char *,
double );
103 double,
double,
double );
CPL error handling services.
CPLErr
Error category.
Definition: cpl_error.h:53
Definitions for CPL mini XML Parser/Serializer.
Core portability definitions for CPL.
#define CPL_C_END
Macro to end a block of C symbols.
Definition: cpl_port.h:339
#define CPL_C_START
Macro to start a block of C symbols.
Definition: cpl_port.h:337
Public (C callable) GDAL entry points.
GDALDataType
Definition: gdal.h:60
void * GDALRasterBandH
Opaque type used for the C bindings of the C++ GDALRasterBand class.
Definition: gdal.h:258
void * VRTDatasetH
Opaque type for a VRT dataset.
Definition: gdal_vrt.h:76
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
VRTDatasetH VRTCreate(int, int)
Definition: vrtdataset.cpp:86
void VRTFlushCache(VRTDatasetH)
Definition: vrtdataset.cpp:258
void * VRTSourcedRasterBandH
Opaque type for a VRT sourced raster band.
Definition: gdal_vrt.h:78
CPLErr VRTAddFuncSource(VRTSourcedRasterBandH, VRTImageReadFunc, void *, double)
Definition: vrtsourcedrasterband.cpp:1342
CPLErr VRTAddSource(VRTSourcedRasterBandH, VRTSourceH)
Definition: vrtsourcedrasterband.cpp:941
CPLErr VRTAddComplexSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, double, double, double)
Definition: vrtsourcedrasterband.cpp:1283
CPLXMLNode * VRTSerializeToXML(VRTDatasetH, const char *)
Definition: vrtdataset.cpp:393
CPLErr VRTAddSimpleSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, const char *, double)
Definition: vrtsourcedrasterband.cpp:1204
int VRTAddBand(VRTDatasetH, GDALDataType, char **)
Definition: vrtdataset.cpp:1132
Document node structure.
Definition: cpl_minixml.h:67