30 #ifndef GDAL_VRT_H_INCLUDED 31 #define GDAL_VRT_H_INCLUDED 41 #include "cpl_error.h" 42 #include "cpl_minixml.h" 44 #define VRT_NODATA_UNSET -1234.56 48 void GDALRegister_VRT();
50 (*VRTImageReadFunc)(
void *hCBData,
51 int nXOff,
int nYOff,
int nXSize,
int nYSize,
57 typedef void *VRTDriverH;
58 typedef void *VRTSourceH;
59 typedef void *VRTSimpleSourceH;
60 typedef void *VRTAveragedSourceH;
61 typedef void *VRTComplexSourceH;
62 typedef void *VRTFilteredSourceH;
63 typedef void *VRTKernelFilteredSourceH;
64 typedef void *VRTAverageFilteredSourceH;
65 typedef void *VRTFuncSourceH;
66 typedef void *VRTDatasetH;
67 typedef void *VRTWarpedDatasetH;
68 typedef void *VRTRasterBandH;
69 typedef void *VRTSourcedRasterBandH;
70 typedef void *VRTWarpedRasterBandH;
71 typedef void *VRTDerivedRasterBandH;
72 typedef void *VRTRawRasterBandH;
78 VRTDatasetH CPL_DLL CPL_STDCALL
VRTCreate(
int,
int );
81 int CPL_DLL CPL_STDCALL
VRTAddBand( VRTDatasetH, GDALDataType,
char ** );
87 CPLErr CPL_STDCALL
VRTAddSource( VRTSourcedRasterBandH, VRTSourceH );
92 const char *,
double );
97 double,
double,
double );
void CPL_DLL CPL_STDCALL VRTFlushCache(VRTDatasetH)
Definition: vrtdataset.cpp:200
VRTDatasetH CPL_DLL CPL_STDCALL VRTCreate(int, int)
Definition: vrtdataset.cpp:80
CPLErr CPL_STDCALL VRTAddSource(VRTSourcedRasterBandH, VRTSourceH)
Definition: vrtsourcedrasterband.cpp:730
CPLXMLNode CPL_DLL *CPL_STDCALL VRTSerializeToXML(VRTDatasetH, const char *)
Definition: vrtdataset.cpp:308
CPLErr CPL_DLL CPL_STDCALL VRTAddFuncSource(VRTSourcedRasterBandH, VRTImageReadFunc, void *, double)
Definition: vrtsourcedrasterband.cpp:1095
CPLErr CPL_DLL CPL_STDCALL VRTAddComplexSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, double, double, double)
Definition: vrtsourcedrasterband.cpp:1040
CPLErr CPL_DLL CPL_STDCALL VRTAddSimpleSource(VRTSourcedRasterBandH, GDALRasterBandH, int, int, int, int, int, int, int, int, const char *, double)
Definition: vrtsourcedrasterband.cpp:966
int CPL_DLL CPL_STDCALL VRTAddBand(VRTDatasetH, GDALDataType, char **)
Definition: vrtdataset.cpp:1070