Line data Source code
1 : /******************************************************************************
2 : *
3 : * Project: GDAL Core
4 : * Purpose: GDAL Core C/Public declarations.
5 : * Author: Frank Warmerdam, warmerdam@pobox.com
6 : *
7 : ******************************************************************************
8 : * Copyright (c) 1998, 2002 Frank Warmerdam
9 : * Copyright (c) 2007-2014, Even Rouault <even dot rouault at spatialys.com>
10 : *
11 : * SPDX-License-Identifier: MIT
12 : ****************************************************************************/
13 :
14 : #ifndef GDAL_H_INCLUDED
15 : #define GDAL_H_INCLUDED
16 :
17 : /**
18 : * \file gdal.h
19 : *
20 : * Public (C callable) GDAL entry points.
21 : */
22 :
23 : #ifndef DOXYGEN_SKIP
24 : #if defined(GDAL_COMPILATION)
25 : #define DO_NOT_DEFINE_GDAL_DATE_NAME
26 : #endif
27 : #include "gdal_fwd.h"
28 : #include "gdal_version.h"
29 : #include "cpl_port.h"
30 : #include "cpl_error.h"
31 : #include "cpl_progress.h"
32 : #include "cpl_virtualmem.h"
33 : #include "cpl_minixml.h"
34 : #include "ogr_api.h"
35 : #endif
36 :
37 : #include <stdbool.h>
38 : #include <stdint.h>
39 :
40 : /* -------------------------------------------------------------------- */
41 : /* Significant constants. */
42 : /* -------------------------------------------------------------------- */
43 :
44 : CPL_C_START
45 :
46 : /*! Pixel data types */
47 : typedef enum
48 : {
49 : /*! Unknown or unspecified type */ GDT_Unknown = 0,
50 : /*! 8-bit unsigned integer (GDT_Byte in GDAL < 3.13) */ GDT_UInt8 = 1,
51 : /*! 8-bit signed integer (GDAL >= 3.7) */ GDT_Int8 = 14,
52 : /*! 16-bit unsigned integer */ GDT_UInt16 = 2,
53 : /*! 16-bit signed integer */ GDT_Int16 = 3,
54 : /*! 32-bit unsigned integer */ GDT_UInt32 = 4,
55 : /*! 32-bit signed integer */ GDT_Int32 = 5,
56 : /*! 64 bit unsigned integer (GDAL >= 3.5)*/ GDT_UInt64 = 12,
57 : /*! 64 bit signed integer (GDAL >= 3.5)*/ GDT_Int64 = 13,
58 : /*! 16-bit floating point */ GDT_Float16 = 15,
59 : /*! 32-bit floating point */ GDT_Float32 = 6,
60 : /*! 64-bit floating point */ GDT_Float64 = 7,
61 : /*! Complex Int16 */ GDT_CInt16 = 8,
62 : /*! Complex Int32 */ GDT_CInt32 = 9,
63 : /*! Complex Float16 */ GDT_CFloat16 = 16,
64 : /*! Complex Float32 */ GDT_CFloat32 = 10,
65 : /*! Complex Float64 */ GDT_CFloat64 = 11,
66 : GDT_TypeCount = 17 /* maximum type # + 1 */
67 : } GDALDataType;
68 :
69 : /** GDT_Byte is the name used before GDAL 3.13 for GDT_UInt8 */
70 : #define GDT_Byte GDT_UInt8
71 :
72 : int CPL_DLL CPL_STDCALL GDALGetDataTypeSize(GDALDataType)
73 : /*! @cond Doxygen_Suppress */
74 : CPL_WARN_DEPRECATED("Use GDALGetDataTypeSizeBits() or "
75 : "GDALGetDataTypeSizeBytes() * 8 instead")
76 : /*! @endcond */
77 : ;
78 : int CPL_DLL CPL_STDCALL GDALGetDataTypeSizeBits(GDALDataType eDataType);
79 : int CPL_DLL CPL_STDCALL GDALGetDataTypeSizeBytes(GDALDataType);
80 : int CPL_DLL CPL_STDCALL GDALDataTypeIsComplex(GDALDataType);
81 : int CPL_DLL CPL_STDCALL GDALDataTypeIsInteger(GDALDataType);
82 : int CPL_DLL CPL_STDCALL GDALDataTypeIsFloating(GDALDataType);
83 : int CPL_DLL CPL_STDCALL GDALDataTypeIsSigned(GDALDataType);
84 : const char CPL_DLL *CPL_STDCALL GDALGetDataTypeName(GDALDataType);
85 : GDALDataType CPL_DLL CPL_STDCALL GDALGetDataTypeByName(const char *);
86 : GDALDataType CPL_DLL CPL_STDCALL GDALDataTypeUnion(GDALDataType, GDALDataType);
87 : GDALDataType CPL_DLL CPL_STDCALL GDALDataTypeUnionWithValue(GDALDataType eDT,
88 : double dValue,
89 : int bComplex);
90 : GDALDataType CPL_DLL CPL_STDCALL GDALFindDataType(int nBits, int bSigned,
91 : int bFloating, int bComplex);
92 : GDALDataType CPL_DLL CPL_STDCALL GDALFindDataTypeForValue(double dValue,
93 : int bComplex);
94 : double CPL_DLL GDALAdjustValueToDataType(GDALDataType eDT, double dfValue,
95 : int *pbClamped, int *pbRounded);
96 : bool CPL_DLL GDALIsValueExactAs(double dfValue, GDALDataType eDT);
97 : bool CPL_DLL GDALIsValueInRangeOf(double dfValue, GDALDataType eDT);
98 : GDALDataType CPL_DLL CPL_STDCALL GDALGetNonComplexDataType(GDALDataType);
99 : int CPL_DLL CPL_STDCALL GDALDataTypeIsConversionLossy(GDALDataType eTypeFrom,
100 : GDALDataType eTypeTo);
101 :
102 : /**
103 : * status of the asynchronous stream
104 : */
105 : typedef enum
106 : {
107 : GARIO_PENDING = 0,
108 : GARIO_UPDATE = 1,
109 : GARIO_ERROR = 2,
110 : GARIO_COMPLETE = 3,
111 : GARIO_TypeCount = 4
112 : } GDALAsyncStatusType;
113 :
114 : const char CPL_DLL *CPL_STDCALL GDALGetAsyncStatusTypeName(GDALAsyncStatusType);
115 : GDALAsyncStatusType CPL_DLL CPL_STDCALL
116 : GDALGetAsyncStatusTypeByName(const char *);
117 :
118 : /*! Flag indicating read/write, or read-only access to data. */
119 : typedef enum
120 : {
121 : /*! Read only (no update) access */ GA_ReadOnly = 0,
122 : /*! Read/write access. */ GA_Update = 1
123 : } GDALAccess;
124 :
125 : /*! Read/Write flag for RasterIO() method */
126 : typedef enum
127 : {
128 : /*! Read data */ GF_Read = 0,
129 : /*! Write data */ GF_Write = 1
130 : } GDALRWFlag;
131 :
132 : /* NOTE: values are selected to be consistent with GDALResampleAlg of
133 : * alg/gdalwarper.h */
134 : /** RasterIO() resampling method.
135 : */
136 : typedef enum
137 : {
138 : /*! Nearest neighbour */ GRIORA_NearestNeighbour = 0,
139 : /*! Bilinear (2x2 kernel) */ GRIORA_Bilinear = 1,
140 : /*! Cubic Convolution Approximation (4x4 kernel) */ GRIORA_Cubic = 2,
141 : /*! Cubic B-Spline Approximation (4x4 kernel) */ GRIORA_CubicSpline = 3,
142 : /*! Lanczos windowed sinc interpolation (6x6 kernel) */ GRIORA_Lanczos = 4,
143 : /*! Average */ GRIORA_Average = 5,
144 : /*! Mode (selects the value which appears most often of all the sampled
145 : points) */
146 : GRIORA_Mode = 6,
147 : /*! Gauss blurring */ GRIORA_Gauss = 7,
148 : /* NOTE: values 8 to 13 are reserved for max,min,med,Q1,Q3,sum */
149 : /*! @cond Doxygen_Suppress */
150 : GRIORA_RESERVED_START = 8,
151 : GRIORA_RESERVED_END = 13,
152 : /*! @endcond */
153 : /** RMS: Root Mean Square / Quadratic Mean.
154 : * For complex numbers, applies on the real and imaginary part
155 : * independently.
156 : */
157 : GRIORA_RMS = 14,
158 : /*! @cond Doxygen_Suppress */
159 : GRIORA_LAST = GRIORA_RMS
160 : /*! @endcond */
161 : } GDALRIOResampleAlg;
162 :
163 : /* NOTE to developers: if required, only add members at the end of the
164 : * structure, and when doing so increase RASTERIO_EXTRA_ARG_CURRENT_VERSION
165 : */
166 : /** Structure to pass extra arguments to RasterIO() method,
167 : * must be initialized with INIT_RASTERIO_EXTRA_ARG
168 : */
169 : typedef struct
170 : {
171 : /*! Version of structure (to allow future extensions of the structure) */
172 : int nVersion;
173 :
174 : /*! Resampling algorithm */
175 : GDALRIOResampleAlg eResampleAlg;
176 :
177 : /*! Progress callback */
178 : GDALProgressFunc pfnProgress;
179 : /*! Progress callback user data */
180 : void *pProgressData;
181 :
182 : /*! Indicate if dfXOff, dfYOff, dfXSize and dfYSize are set.
183 : Mostly reserved from the VRT driver to communicate a more precise
184 : source window. Must be such that dfXOff - nXOff < 1.0 and
185 : dfYOff - nYOff < 1.0 and nXSize - dfXSize < 1.0 and nYSize - dfYSize
186 : < 1.0 */
187 : int bFloatingPointWindowValidity;
188 : /*! Pixel offset to the top left corner. Only valid if
189 : * bFloatingPointWindowValidity = TRUE */
190 : double dfXOff;
191 : /*! Line offset to the top left corner. Only valid if
192 : * bFloatingPointWindowValidity = TRUE */
193 : double dfYOff;
194 : /*! Width in pixels of the area of interest. Only valid if
195 : * bFloatingPointWindowValidity = TRUE */
196 : double dfXSize;
197 : /*! Height in pixels of the area of interest. Only valid if
198 : * bFloatingPointWindowValidity = TRUE */
199 : double dfYSize;
200 : /*! Indicate if overviews should be considered. Tested in
201 : GDALBandGetBestOverviewLevel(), mostly reserved for use by
202 : GDALRegenerateOverviewsMultiBand()
203 : Only available if RASTERIO_EXTRA_ARG_CURRENT_VERSION >= 2
204 : */
205 : int bUseOnlyThisScale;
206 : } GDALRasterIOExtraArg;
207 :
208 : #ifndef DOXYGEN_SKIP
209 : #define RASTERIO_EXTRA_ARG_CURRENT_VERSION 2
210 : #endif
211 :
212 : /** Macro to initialize an instance of GDALRasterIOExtraArg structure.
213 : */
214 : #define INIT_RASTERIO_EXTRA_ARG(s) \
215 : do \
216 : { \
217 : (s).nVersion = RASTERIO_EXTRA_ARG_CURRENT_VERSION; \
218 : (s).eResampleAlg = GRIORA_NearestNeighbour; \
219 : (s).pfnProgress = CPL_NULLPTR; \
220 : (s).pProgressData = CPL_NULLPTR; \
221 : (s).bFloatingPointWindowValidity = FALSE; \
222 : (s).bUseOnlyThisScale = FALSE; \
223 : } while (0)
224 :
225 : /** Value indicating the start of the range for color interpretations belonging
226 : * to the InfraRed (IR) domain. All constants of the GDALColorInterp enumeration
227 : * in the IR domain are in the [GCI_IR_Start, GCI_IR_End] range.
228 : *
229 : * @since 3.10
230 : */
231 : #define GCI_IR_Start 20
232 :
233 : /** Value indicating the end of the range for color interpretations belonging
234 : * to the InfraRed (IR) domain. All constants of the GDALColorInterp enumeration
235 : * in the IR domain are in the [GCI_IR_Start, GCI_IR_End] range.
236 : *
237 : * @since 3.10
238 : */
239 : #define GCI_IR_End 29
240 :
241 : /** Value indicating the start of the range for color interpretations belonging
242 : * to the Synthetic Aperture Radar (SAR) domain.
243 : * All constants of the GDALColorInterp enumeration
244 : * in the SAR domain are in the [GCI_SAR_Start, GCI_SAR_End] range.
245 : *
246 : * @since 3.10
247 : */
248 : #define GCI_SAR_Start 30
249 :
250 : /** Value indicating the end of the range for color interpretations belonging
251 : * to the Synthetic Aperture Radar (SAR) domain.
252 : * All constants of the GDALColorInterp enumeration
253 : * in the SAR domain are in the [GCI_SAR_Start, GCI_SAR_End] range.
254 : *
255 : * @since 3.10
256 : */
257 : #define GCI_SAR_End 39
258 :
259 : /** Types of color interpretation for raster bands.
260 : *
261 : * For spectral bands, the wavelength ranges are indicative only, and may vary
262 : * depending on sensors. The CENTRAL_WAVELENGTH_UM and FWHM_UM metadata
263 : * items in the IMAGERY metadata domain of the raster band, when present, will
264 : * give more accurate characteristics.
265 : *
266 : * Values belonging to the IR domain are in the [GCI_IR_Start, GCI_IR_End] range.
267 : * Values belonging to the SAR domain are in the [GCI_SAR_Start, GCI_SAR_End] range.
268 : *
269 : * Values between GCI_PanBand to GCI_SAR_Reserved_2 have been added in GDAL 3.10.
270 : */
271 : typedef enum
272 : {
273 : /*! Undefined */ GCI_Undefined = 0,
274 : /*! Greyscale */ GCI_GrayIndex = 1,
275 : /*! Paletted (see associated color table) */ GCI_PaletteIndex = 2,
276 : /*! Red band of RGBA image, or red spectral band [0.62 - 0.69 um]*/
277 : GCI_RedBand = 3,
278 : /*! Green band of RGBA image, or green spectral band [0.51 - 0.60 um]*/
279 : GCI_GreenBand = 4,
280 : /*! Blue band of RGBA image, or blue spectral band [0.45 - 0.53 um] */
281 : GCI_BlueBand = 5,
282 : /*! Alpha (0=transparent, 255=opaque) */ GCI_AlphaBand = 6,
283 : /*! Hue band of HLS image */ GCI_HueBand = 7,
284 : /*! Saturation band of HLS image */ GCI_SaturationBand = 8,
285 : /*! Lightness band of HLS image */ GCI_LightnessBand = 9,
286 : /*! Cyan band of CMYK image */ GCI_CyanBand = 10,
287 : /*! Magenta band of CMYK image */ GCI_MagentaBand = 11,
288 : /*! Yellow band of CMYK image, or yellow spectral band [0.58 - 0.62 um] */
289 : GCI_YellowBand = 12,
290 : /*! Black band of CMYK image */ GCI_BlackBand = 13,
291 : /*! Y Luminance */ GCI_YCbCr_YBand = 14,
292 : /*! Cb Chroma */ GCI_YCbCr_CbBand = 15,
293 : /*! Cr Chroma */ GCI_YCbCr_CrBand = 16,
294 :
295 : /* GDAL 3.10 addition: begin */
296 : /*! Panchromatic band [0.40 - 1.00 um] */ GCI_PanBand = 17,
297 : /*! Coastal band [0.40 - 0.45 um] */ GCI_CoastalBand = 18,
298 : /*! Red-edge band [0.69 - 0.79 um] */ GCI_RedEdgeBand = 19,
299 :
300 : /*! Near-InfraRed (NIR) band [0.75 - 1.40 um] */ GCI_NIRBand =
301 : GCI_IR_Start + 0,
302 : /*! Short-Wavelength InfraRed (SWIR) band [1.40 - 3.00 um] */ GCI_SWIRBand =
303 : GCI_IR_Start + 1,
304 : /*! Mid-Wavelength InfraRed (MWIR) band [3.00 - 8.00 um] */ GCI_MWIRBand =
305 : GCI_IR_Start + 2,
306 : /*! Long-Wavelength InfraRed (LWIR) band [8.00 - 15 um] */ GCI_LWIRBand =
307 : GCI_IR_Start + 3,
308 : /*! Thermal InfraRed (TIR) band (MWIR or LWIR) [3 - 15 um] */ GCI_TIRBand =
309 : GCI_IR_Start + 4,
310 : /*! Other infrared band [0.75 - 1000 um] */ GCI_OtherIRBand =
311 : GCI_IR_Start + 5,
312 : /*! Reserved value. Do not set it ! */
313 : GCI_IR_Reserved_1 = GCI_IR_Start + 6,
314 : /*! Reserved value. Do not set it ! */
315 : GCI_IR_Reserved_2 = GCI_IR_Start + 7,
316 : /*! Reserved value. Do not set it ! */
317 : GCI_IR_Reserved_3 = GCI_IR_Start + 8,
318 : /*! Reserved value. Do not set it ! */
319 : GCI_IR_Reserved_4 = GCI_IR_Start + 9,
320 :
321 : /*! Synthetic Aperture Radar (SAR) Ka band [0.8 - 1.1 cm / 27 - 40 GHz] */
322 : GCI_SAR_Ka_Band = GCI_SAR_Start + 0,
323 : /*! Synthetic Aperture Radar (SAR) K band [1.1 - 1.7 cm / 18 - 27 GHz] */
324 : GCI_SAR_K_Band = GCI_SAR_Start + 1,
325 : /*! Synthetic Aperture Radar (SAR) Ku band [1.7 - 2.4 cm / 12 - 18 GHz] */
326 : GCI_SAR_Ku_Band = GCI_SAR_Start + 2,
327 : /*! Synthetic Aperture Radar (SAR) X band [2.4 - 3.8 cm / 8 - 12 GHz] */
328 : GCI_SAR_X_Band = GCI_SAR_Start + 3,
329 : /*! Synthetic Aperture Radar (SAR) C band [3.8 - 7.5 cm / 4 - 8 GHz] */
330 : GCI_SAR_C_Band = GCI_SAR_Start + 4,
331 : /*! Synthetic Aperture Radar (SAR) S band [7.5 - 15 cm / 2 - 4 GHz] */
332 : GCI_SAR_S_Band = GCI_SAR_Start + 5,
333 : /*! Synthetic Aperture Radar (SAR) L band [15 - 30 cm / 1 - 2 GHz] */
334 : GCI_SAR_L_Band = GCI_SAR_Start + 6,
335 : /*! Synthetic Aperture Radar (SAR) P band [30 - 100 cm / 0.3 - 1 GHz] */
336 : GCI_SAR_P_Band = GCI_SAR_Start + 7,
337 : /*! Reserved value. Do not set it ! */
338 : GCI_SAR_Reserved_1 = GCI_SAR_Start + 8,
339 : /*! Reserved value. Do not set it ! */
340 : GCI_SAR_Reserved_2 = GCI_SAR_Start + 9,
341 :
342 : /* GDAL 3.10 addition: end */
343 :
344 : /*! Max current value (equals to GCI_SAR_Reserved_2 currently) */ GCI_Max =
345 : GCI_SAR_Reserved_2
346 : } GDALColorInterp;
347 :
348 : const char CPL_DLL *GDALGetColorInterpretationName(GDALColorInterp);
349 : GDALColorInterp CPL_DLL GDALGetColorInterpretationByName(const char *pszName);
350 :
351 : /*! Types of color interpretations for a GDALColorTable. */
352 : typedef enum
353 : {
354 : /*! Grayscale (in GDALColorEntry.c1) */ GPI_Gray = 0,
355 : /*! Red, Green, Blue and Alpha in (in c1, c2, c3 and c4) */ GPI_RGB = 1,
356 : /*! Cyan, Magenta, Yellow and Black (in c1, c2, c3 and c4)*/ GPI_CMYK = 2,
357 : /*! Hue, Lightness and Saturation (in c1, c2, and c3) */ GPI_HLS = 3
358 : } GDALPaletteInterp;
359 :
360 : const char CPL_DLL *GDALGetPaletteInterpretationName(GDALPaletteInterp);
361 :
362 : /* "well known" metadata items. */
363 :
364 : /** Metadata item for dataset that indicates the spatial interpretation of a
365 : * pixel */
366 : #define GDALMD_AREA_OR_POINT "AREA_OR_POINT"
367 : /** Value for GDALMD_AREA_OR_POINT that indicates that a pixel represents an
368 : * area */
369 : #define GDALMD_AOP_AREA "Area"
370 : /** Value for GDALMD_AREA_OR_POINT that indicates that a pixel represents a
371 : * point */
372 : #define GDALMD_AOP_POINT "Point"
373 :
374 : /* -------------------------------------------------------------------- */
375 : /* GDAL Specific error codes. */
376 : /* */
377 : /* error codes 100 to 299 reserved for GDAL. */
378 : /* -------------------------------------------------------------------- */
379 : #ifndef DOXYGEN_SKIP
380 : #define CPLE_WrongFormat CPL_STATIC_CAST(CPLErrorNum, 200)
381 : #endif
382 :
383 : /* -------------------------------------------------------------------- */
384 : /* Types, enumerations. */
385 : /* -------------------------------------------------------------------- */
386 :
387 : /** Type to express pixel, line or band spacing. Signed 64 bit integer. */
388 : typedef GIntBig GSpacing;
389 :
390 : /** Enumeration giving the class of a GDALExtendedDataType.
391 : * @since GDAL 3.1
392 : */
393 : typedef enum
394 : {
395 : /** Numeric value. Based on GDALDataType enumeration */
396 : GEDTC_NUMERIC,
397 : /** String value. */
398 : GEDTC_STRING,
399 : /** Compound data type. */
400 : GEDTC_COMPOUND
401 : } GDALExtendedDataTypeClass;
402 :
403 : /** Enumeration giving the subtype of a GDALExtendedDataType.
404 : * @since GDAL 3.4
405 : */
406 : typedef enum
407 : {
408 : /** None. */
409 : GEDTST_NONE,
410 : /** JSon. Only applies to GEDTC_STRING */
411 : GEDTST_JSON
412 : } GDALExtendedDataTypeSubType;
413 :
414 : /* ==================================================================== */
415 : /* Registration/driver related. */
416 : /* ==================================================================== */
417 :
418 : /** Long name of the driver */
419 : #define GDAL_DMD_LONGNAME "DMD_LONGNAME"
420 :
421 : /** URL (relative to http://gdal.org/) to the help page of the driver */
422 : #define GDAL_DMD_HELPTOPIC "DMD_HELPTOPIC"
423 :
424 : /** MIME type handled by the driver. */
425 : #define GDAL_DMD_MIMETYPE "DMD_MIMETYPE"
426 :
427 : /** Extension handled by the driver. */
428 : #define GDAL_DMD_EXTENSION "DMD_EXTENSION"
429 :
430 : /** Connection prefix to provide as the file name of the open function.
431 : * Typically set for non-file based drivers. Generally used with open options.
432 : */
433 : #define GDAL_DMD_CONNECTION_PREFIX "DMD_CONNECTION_PREFIX"
434 :
435 : /** List of (space separated) extensions handled by the driver.
436 : */
437 : #define GDAL_DMD_EXTENSIONS "DMD_EXTENSIONS"
438 :
439 : /** XML snippet with creation options. */
440 : #define GDAL_DMD_CREATIONOPTIONLIST "DMD_CREATIONOPTIONLIST"
441 :
442 : /** XML snippet with overview creation options.
443 : * @since GDAL 3.12
444 : */
445 : #define GDAL_DMD_OVERVIEW_CREATIONOPTIONLIST "DMD_OVERVIEW_CREATIONOPTIONLIST"
446 :
447 : /** XML snippet with multidimensional dataset creation options.
448 : * @since GDAL 3.1
449 : */
450 : #define GDAL_DMD_MULTIDIM_DATASET_CREATIONOPTIONLIST \
451 : "DMD_MULTIDIM_DATASET_CREATIONOPTIONLIST"
452 :
453 : /** XML snippet with multidimensional group creation options.
454 : * @since GDAL 3.1
455 : */
456 : #define GDAL_DMD_MULTIDIM_GROUP_CREATIONOPTIONLIST \
457 : "DMD_MULTIDIM_GROUP_CREATIONOPTIONLIST"
458 :
459 : /** XML snippet with multidimensional dimension creation options.
460 : * @since GDAL 3.1
461 : */
462 : #define GDAL_DMD_MULTIDIM_DIMENSION_CREATIONOPTIONLIST \
463 : "DMD_MULTIDIM_DIMENSION_CREATIONOPTIONLIST"
464 :
465 : /** XML snippet with multidimensional array creation options.
466 : * @since GDAL 3.1
467 : */
468 : #define GDAL_DMD_MULTIDIM_ARRAY_CREATIONOPTIONLIST \
469 : "DMD_MULTIDIM_ARRAY_CREATIONOPTIONLIST"
470 :
471 : /** XML snippet with multidimensional array open options.
472 : * @since GDAL 3.6
473 : */
474 : #define GDAL_DMD_MULTIDIM_ARRAY_OPENOPTIONLIST \
475 : "DMD_MULTIDIM_ARRAY_OPENOPTIONLIST"
476 :
477 : /** XML snippet with multidimensional attribute creation options.
478 : * @since GDAL 3.1
479 : */
480 : #define GDAL_DMD_MULTIDIM_ATTRIBUTE_CREATIONOPTIONLIST \
481 : "DMD_MULTIDIM_ATTRIBUTE_CREATIONOPTIONLIST"
482 :
483 : /** XML snippet with open options.
484 : */
485 : #define GDAL_DMD_OPENOPTIONLIST "DMD_OPENOPTIONLIST"
486 :
487 : /** List of (space separated) raster data types supported by the
488 : * Create()/CreateCopy() API. */
489 : #define GDAL_DMD_CREATIONDATATYPES "DMD_CREATIONDATATYPES"
490 :
491 : /** List of (space separated) vector field types supported by the CreateField()
492 : * API.
493 : * */
494 : #define GDAL_DMD_CREATIONFIELDDATATYPES "DMD_CREATIONFIELDDATATYPES"
495 :
496 : /** List of (space separated) vector field sub-types supported by the
497 : * CreateField() API.
498 : * */
499 : #define GDAL_DMD_CREATIONFIELDDATASUBTYPES "DMD_CREATIONFIELDDATASUBTYPES"
500 :
501 : /** Maximum size of a String field that can be created (OGRFieldDefn.GetWidth()).
502 : *
503 : * It is undefined whether this is a number of bytes or Unicode character count.
504 : * Most of the time, this will be a number of bytes, so a Unicode string whose
505 : * character count is the maximum size could not fit.
506 : *
507 : * This metadata item is set only on a small number of drivers, in particular
508 : * "ESRI Shapefile" and "MapInfo File", which use fixed-width storage of strings.
509 : *
510 : * @since GDAL 3.12
511 : */
512 : #define GDAL_DMD_MAX_STRING_LENGTH "DMD_MAX_STRING_LENGTH"
513 :
514 : /** List of (space separated) capability flags supported by the CreateField() API.
515 : *
516 : * Supported values are:
517 : *
518 : * - "WidthPrecision": field width and precision is supported.
519 : * - "Nullable": field (non-)nullable status is supported.
520 : * - "Unique": field unique constraint is supported.
521 : * - "Default": field default value is supported.
522 : * - "AlternativeName": field alternative name is supported.
523 : * - "Comment": field comment is supported.
524 : * - "Domain": field can be associated with a domain.
525 : *
526 : * @see GDAL_DMD_ALTER_FIELD_DEFN_FLAGS for capabilities supported when altering
527 : * existing fields.
528 : *
529 : * @since GDAL 3.7
530 : */
531 : #define GDAL_DMD_CREATION_FIELD_DEFN_FLAGS "DMD_CREATION_FIELD_DEFN_FLAGS"
532 :
533 : /** Capability set by a driver that exposes Subdatasets.
534 : *
535 : * This capability reflects that a raster driver supports child layers, such as
536 : * NetCDF or multi-table raster Geopackages.
537 : *
538 : * See GDAL_DCAP_MULTIPLE_VECTOR_LAYERS for a similar capability flag
539 : * for vector drivers.
540 : */
541 : #define GDAL_DMD_SUBDATASETS "DMD_SUBDATASETS"
542 :
543 : /** Capability set by a driver that can create subdatasets with the
544 : * APPEND_SUBDATASET=YES creation option.
545 : *
546 : * @since 3.11
547 : */
548 : #define GDAL_DCAP_CREATE_SUBDATASETS "DCAP_CREATE_SUBDATASETS"
549 :
550 : /** Capability set by a vector driver that supports field width and precision.
551 : *
552 : * This capability reflects that a vector driver includes the decimal separator
553 : * in the field width of fields of type OFTReal.
554 : *
555 : * See GDAL_DMD_NUMERIC_FIELD_WIDTH_INCLUDES_SIGN for a related capability flag.
556 : * @since GDAL 3.7
557 : */
558 : #define GDAL_DMD_NUMERIC_FIELD_WIDTH_INCLUDES_DECIMAL_SEPARATOR \
559 : "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_DECIMAL_SEPARATOR"
560 :
561 : /** Capability set by a vector driver that supports field width and precision.
562 : *
563 : * This capability reflects that a vector driver includes the sign
564 : * in the field width of fields of type OFTReal.
565 : *
566 : * See GDAL_DMD_NUMERIC_FIELD_WIDTH_INCLUDES_DECIMAL_SEPARATOR for a related capability flag.
567 : * @since GDAL 3.7
568 : */
569 : #define GDAL_DMD_NUMERIC_FIELD_WIDTH_INCLUDES_SIGN \
570 : "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_SIGN"
571 :
572 : /** Capability set by a driver that implements the Open() API. */
573 : #define GDAL_DCAP_OPEN "DCAP_OPEN"
574 :
575 : /** Capability set by a driver that implements the Create() API.
576 : *
577 : * If GDAL_DCAP_CREATE is set, but GDAL_DCAP_CREATECOPY not, a generic
578 : * CreateCopy() implementation is available and will use the Create() API of
579 : * the driver.
580 : * So to test if some CreateCopy() implementation is available, generic or
581 : * specialize, test for both GDAL_DCAP_CREATE and GDAL_DCAP_CREATECOPY.
582 : */
583 : #define GDAL_DCAP_CREATE "DCAP_CREATE"
584 :
585 : /** Capability set by a driver that implements the CreateMultiDimensional() API.
586 : *
587 : * @since GDAL 3.1
588 : */
589 : #define GDAL_DCAP_CREATE_MULTIDIMENSIONAL "DCAP_CREATE_MULTIDIMENSIONAL"
590 :
591 : /** Capability set by a driver that implements the CreateCopy() API.
592 : *
593 : * If GDAL_DCAP_CREATECOPY is not defined, but GDAL_DCAP_CREATE is set, a
594 : * generic CreateCopy() implementation is available and will use the Create()
595 : * API of the driver. So to test if some CreateCopy() implementation is
596 : * available, generic or specialize, test for both GDAL_DCAP_CREATE and
597 : * GDAL_DCAP_CREATECOPY.
598 : */
599 : #define GDAL_DCAP_CREATECOPY "DCAP_CREATECOPY"
600 :
601 : /** Capability set by a driver that supports the \@CREATE_ONLY_VISIBLE_AT_CLOSE_TIME
602 : * hidden creation option.
603 : *
604 : * @since GDAL 3.12
605 : */
606 : #define GDAL_DCAP_CREATE_ONLY_VISIBLE_AT_CLOSE_TIME \
607 : "DCAP_CREATE_ONLY_VISIBLE_AT_CLOSE_TIME"
608 :
609 : /** Capability set by a driver that implements the VectorTranslateFrom() API.
610 : *
611 : * @since GDAL 3.8
612 : */
613 : #define GDAL_DCAP_VECTOR_TRANSLATE_FROM "DCAP_VECTOR_TRANSLATE_FROM"
614 :
615 : /** Capability set by a driver that implements the CreateCopy() API, but with
616 : * multidimensional raster as input and output.
617 : *
618 : * @since GDAL 3.1
619 : */
620 : #define GDAL_DCAP_CREATECOPY_MULTIDIMENSIONAL "DCAP_CREATECOPY_MULTIDIMENSIONAL"
621 :
622 : /** Capability set by a driver that supports multidimensional data.
623 : * @since GDAL 3.1
624 : */
625 : #define GDAL_DCAP_MULTIDIM_RASTER "DCAP_MULTIDIM_RASTER"
626 :
627 : /** Capability set by a driver that can copy over subdatasets. */
628 : #define GDAL_DCAP_SUBCREATECOPY "DCAP_SUBCREATECOPY"
629 :
630 : /** Capability set by a driver that supports the GDAL_OF_UPDATE flag and offers
631 : * feature appending capabilities.
632 : *
633 : * Note: feature appending capability is also implied if GDAL_DCAP_UPDATE or
634 : * GDAL_DCAP_CREATE_LAYER is set, in which case GDAL_DCAP_APPEND is not set.
635 : *
636 : * @since GDAL 3.12.
637 : */
638 : #define GDAL_DCAP_APPEND "DCAP_APPEND"
639 :
640 : /** Capability set by a driver that supports the GDAL_OF_UPDATE flag and offers
641 : * at least some update capabilities.
642 : * Exact update capabilities can be determined by the GDAL_DMD_UPDATE_ITEMS
643 : * metadata item
644 : * @since GDAL 3.11
645 : */
646 : #define GDAL_DCAP_UPDATE "DCAP_UPDATE"
647 :
648 : /** Capability set by a driver that can read/create datasets through the VSI*L
649 : * API. */
650 : #define GDAL_DCAP_VIRTUALIO "DCAP_VIRTUALIO"
651 :
652 : /** Capability set by a driver having raster capability.
653 : */
654 : #define GDAL_DCAP_RASTER "DCAP_RASTER"
655 :
656 : /** Capability set by a driver having vector capability.
657 : */
658 : #define GDAL_DCAP_VECTOR "DCAP_VECTOR"
659 :
660 : /** Capability set by a driver having geographical network model capability.
661 : */
662 : #define GDAL_DCAP_GNM "DCAP_GNM"
663 :
664 : /** Capability set by a driver that can create layers.
665 : * @since GDAL 3.6
666 : */
667 : #define GDAL_DCAP_CREATE_LAYER "DCAP_CREATE_LAYER"
668 :
669 : /** Capability set by a driver that can delete layers.
670 : * @since GDAL 3.6
671 : */
672 : #define GDAL_DCAP_DELETE_LAYER "DCAP_DELETE_LAYER"
673 :
674 : /** Capability set by a driver that can create fields.
675 : * @since GDAL 3.6
676 : */
677 : #define GDAL_DCAP_CREATE_FIELD "DCAP_CREATE_FIELD"
678 :
679 : /** Capability set by a driver that can delete fields.
680 : * @since GDAL 3.6
681 : */
682 : #define GDAL_DCAP_DELETE_FIELD "DCAP_DELETE_FIELD"
683 :
684 : /** Capability set by a driver that can reorder fields.
685 : * @since GDAL 3.6
686 : */
687 : #define GDAL_DCAP_REORDER_FIELDS "DCAP_REORDER_FIELDS"
688 :
689 : /** List of (space separated) flags supported by the OGRLayer::AlterFieldDefn()
690 : * API.
691 : *
692 : * Supported values are "Name", "Type", "WidthPrecision", "Nullable", "Default",
693 : * "Unique", "Domain", "AlternativeName" and "Comment", corresponding respectively
694 : * to the ALTER_NAME_FLAG, ALTER_TYPE_FLAG, ALTER_WIDTH_PRECISION_FLAG, ALTER_NULLABLE_FLAG,
695 : * ALTER_DEFAULT_FLAG, ALTER_UNIQUE_FLAG, ALTER_DOMAIN_FLAG,
696 : * ALTER_ALTERNATIVE_NAME_FLAG and ALTER_COMMENT_FLAG flags.
697 : *
698 : * Note that advertizing one of these flags doesn't necessarily mean that
699 : * all modifications of the corresponding property can be made. For example,
700 : * altering the field type may be restricted by the current type of the field,
701 : * etc.
702 : *
703 : * @see GDAL_DMD_CREATION_FIELD_DEFN_FLAGS for capabilities supported
704 : * when creating new fields.
705 : *
706 : * @since GDAL 3.6
707 : */
708 : #define GDAL_DMD_ALTER_FIELD_DEFN_FLAGS "GDAL_DMD_ALTER_FIELD_DEFN_FLAGS"
709 :
710 : /** List of (space separated) field names which are considered illegal by the
711 : * driver and should not be used when creating/altering fields.
712 : *
713 : * @since GDAL 3.7
714 : */
715 : #define GDAL_DMD_ILLEGAL_FIELD_NAMES "GDAL_DMD_ILLEGAL_FIELD_NAMES"
716 :
717 : /** Capability set by a driver that can create fields with NOT NULL constraint.
718 : */
719 : #define GDAL_DCAP_NOTNULL_FIELDS "DCAP_NOTNULL_FIELDS"
720 :
721 : /** Capability set by a driver that can create fields with UNIQUE constraint.
722 : * @since GDAL 3.2
723 : */
724 : #define GDAL_DCAP_UNIQUE_FIELDS "DCAP_UNIQUE_FIELDS"
725 :
726 : /** Capability set by a driver that can create fields with DEFAULT values.
727 : */
728 : #define GDAL_DCAP_DEFAULT_FIELDS "DCAP_DEFAULT_FIELDS"
729 :
730 : /** Capability set by a driver that can create geometry fields with NOT NULL
731 : * constraint.
732 : */
733 : #define GDAL_DCAP_NOTNULL_GEOMFIELDS "DCAP_NOTNULL_GEOMFIELDS"
734 :
735 : /** Capability set by a non-spatial driver having no support for geometries.
736 : * E.g. non-spatial vector drivers (e.g. spreadsheet format drivers) do not
737 : * support geometries, and accordingly will have this capability present.
738 : */
739 : #define GDAL_DCAP_NONSPATIAL "DCAP_NONSPATIAL"
740 :
741 : /** Capability set by a driver that can support curved geometries.
742 : * @since GDAL 3.6
743 : */
744 : #define GDAL_DCAP_CURVE_GEOMETRIES "DCAP_CURVE_GEOMETRIES"
745 :
746 : /** Capability set by a driver that can support measured geometries.
747 : *
748 : * @since GDAL 3.6
749 : */
750 : #define GDAL_DCAP_MEASURED_GEOMETRIES "DCAP_MEASURED_GEOMETRIES"
751 :
752 : /** Capability set by a driver that can support the Z dimension for geometries.
753 : *
754 : * @since GDAL 3.6
755 : */
756 : #define GDAL_DCAP_Z_GEOMETRIES "DCAP_Z_GEOMETRIES"
757 :
758 : /** List of (space separated) flags which reflect the geometry handling behavior
759 : * of a driver.
760 : *
761 : * Supported values are currently:
762 : *
763 : * - "EquatesMultiAndSingleLineStringDuringWrite" and
764 : * "EquatesMultiAndSinglePolygonDuringWrite". These flags indicate that the
765 : * driver does not differentiate between single-part and multi-part linestring
766 : * and polygon geometries when writing features respectively.
767 : *
768 : * @since GDAL 3.6
769 : */
770 : #define GDAL_DMD_GEOMETRY_FLAGS "GDAL_DMD_GEOMETRY_FLAGS"
771 :
772 : /** Capability set by drivers which support either reading or writing feature
773 : * styles.
774 : *
775 : * Consider using the more granular GDAL_DCAP_FEATURE_STYLES_READ or
776 : * GDAL_DCAP_FEATURE_STYLES_WRITE capabilities instead.
777 : *
778 : */
779 : #define GDAL_DCAP_FEATURE_STYLES "DCAP_FEATURE_STYLES"
780 :
781 : /** Capability set by drivers which support reading feature styles.
782 : * @since GDAL 3.7
783 : */
784 : #define GDAL_DCAP_FEATURE_STYLES_READ "DCAP_FEATURE_STYLES_READ"
785 :
786 : /** Capability set by drivers which support writing feature styles.
787 : * @since GDAL 3.7
788 : */
789 : #define GDAL_DCAP_FEATURE_STYLES_WRITE "DCAP_FEATURE_STYLES_WRITE"
790 :
791 : /** Capability set by drivers which support storing/retrieving coordinate epoch
792 : * for dynamic CRS
793 : * @since GDAL 3.4
794 : */
795 : #define GDAL_DCAP_COORDINATE_EPOCH "DCAP_COORDINATE_EPOCH"
796 :
797 : /** Capability set by drivers for formats which support multiple vector layers.
798 : *
799 : * Note: some GDAL drivers expose "virtual" layer support while the underlying
800 : * formats themselves do not. This capability is only set for drivers of formats
801 : * which have a native concept of multiple vector layers (such as GeoPackage).
802 : *
803 : * @since GDAL 3.4
804 : */
805 : #define GDAL_DCAP_MULTIPLE_VECTOR_LAYERS "DCAP_MULTIPLE_VECTOR_LAYERS"
806 :
807 : /** Capability set by drivers for formats which support reading field domains.
808 : *
809 : * @since GDAL 3.5
810 : */
811 : #define GDAL_DCAP_FIELD_DOMAINS "DCAP_FIELD_DOMAINS"
812 :
813 : /** Capability set by drivers for formats which support reading table
814 : * relationships.
815 : *
816 : * @since GDAL 3.6
817 : */
818 : #define GDAL_DCAP_RELATIONSHIPS "DCAP_RELATIONSHIPS"
819 :
820 : /** Capability set by drivers for formats which support creating table
821 : * relationships.
822 : * @since GDAL 3.6
823 : */
824 : #define GDAL_DCAP_CREATE_RELATIONSHIP "DCAP_CREATE_RELATIONSHIP"
825 :
826 : /** Capability set by drivers for formats which support deleting table
827 : * relationships.
828 : * @since GDAL 3.6
829 : */
830 : #define GDAL_DCAP_DELETE_RELATIONSHIP "DCAP_DELETE_RELATIONSHIP"
831 :
832 : /** Capability set by drivers for formats which support updating existing table
833 : * relationships.
834 : * @since GDAL 3.6
835 : */
836 : #define GDAL_DCAP_UPDATE_RELATIONSHIP "DCAP_UPDATE_RELATIONSHIP"
837 :
838 : /** Capability set by drivers whose FlushCache() implementation returns a
839 : * dataset that can be opened afterwards and seen in a consistent state, without
840 : * requiring the dataset on which FlushCache() has been called to be closed.
841 : * @since GDAL 3.8
842 : */
843 : #define GDAL_DCAP_FLUSHCACHE_CONSISTENT_STATE "DCAP_FLUSHCACHE_CONSISTENT_STATE"
844 :
845 : /** Capability set by drivers which honor the OGRCoordinatePrecision settings
846 : * of geometry fields at layer creation and/or for OGRLayer::CreateGeomField().
847 : * Note that while those drivers honor the settings at feature writing time,
848 : * they might not be able to store the precision settings in layer metadata,
849 : * hence on reading it might not be possible to recover the precision with
850 : * which coordinates have been written.
851 : * @since GDAL 3.9
852 : */
853 : #define GDAL_DCAP_HONOR_GEOM_COORDINATE_PRECISION \
854 : "DCAP_HONOR_GEOM_COORDINATE_PRECISION"
855 :
856 : /** Capability set by drivers that implements OGRLayer::UpsertTeature().
857 : * @since GDAL 3.12
858 : */
859 : #define GDAL_DCAP_UPSERT "DCAP_UPSERT"
860 :
861 : /** List of (space separated) flags indicating the features of relationships are
862 : * supported by the driver.
863 : *
864 : * Supported values are:
865 : *
866 : * - "OneToOne": supports one-to-one relationships, see
867 : * GDALRelationshipCardinality::GRC_ONE_TO_ONE
868 : * - "OneToMany": supports one-to-many relationships, see
869 : * GDALRelationshipCardinality::GRC_ONE_TO_MANY
870 : * - "ManyToOne": supports many-to-one relationships, see
871 : * GDALRelationshipCardinality::GRC_MANY_TO_ONE
872 : * - "ManyToMany": supports many-to-many relationships, see
873 : * GDALRelationshipCardinality::GRC_MANY_TO_MANY
874 : * - "Composite": supports composite relationship types, see
875 : * GDALRelationshipType::GRT_COMPOSITE
876 : * - "Association": supports association relationship types, see
877 : * GDALRelationshipType::GRT_ASSOCIATION
878 : * - "Aggregation": supports aggregation relationship types, see
879 : * GDALRelationshipType::GRT_AGGREGATION
880 : * - "MultipleFieldKeys": multiple fields can be used for relationship keys. If
881 : * not present then only a single field name can be used.
882 : * - "ForwardPathLabel": supports forward path labels
883 : * - "BackwardPathLabel": supports backward path labels
884 : *
885 : * @since GDAL 3.6
886 : */
887 : #define GDAL_DMD_RELATIONSHIP_FLAGS "GDAL_DMD_RELATIONSHIP_FLAGS"
888 :
889 : /** List of (space separated) standard related table types which are recognised
890 : * by the driver.
891 : *
892 : * See GDALRelationshipGetRelatedTableType/GDALRelationshipSetRelatedTableType
893 : *
894 : * @since GDAL 3.7
895 : */
896 : #define GDAL_DMD_RELATIONSHIP_RELATED_TABLE_TYPES \
897 : "GDAL_DMD_RELATIONSHIP_RELATED_TABLE_TYPES"
898 :
899 : /** Capability set by drivers for formats which support renaming vector layers.
900 : *
901 : * @since GDAL 3.5
902 : */
903 : #define GDAL_DCAP_RENAME_LAYERS "DCAP_RENAME_LAYERS"
904 :
905 : /** List of (space separated) field domain types supported by the AddFieldDomain()
906 : * API.
907 : *
908 : * Supported values are Coded, Range and Glob, corresponding to the
909 : * OGRFieldDomainType::OFDT_CODED, OGRFieldDomainType::OFDT_RANGE, and
910 : * OGRFieldDomainType::OFDT_GLOB field domain types respectively.
911 : *
912 : * @since GDAL 3.5
913 : */
914 : #define GDAL_DMD_CREATION_FIELD_DOMAIN_TYPES "DMD_CREATION_FIELD_DOMAIN_TYPES"
915 :
916 : /** List of (space separated) flags supported by the
917 : * OGRLayer::AlterGeomFieldDefn() API.
918 : *
919 : * Supported values are "Name", "Type", "Nullable", "SRS", "CoordinateEpoch",
920 : * corresponding respectively to the ALTER_GEOM_FIELD_DEFN_NAME_FLAG,
921 : * ALTER_GEOM_FIELD_DEFN_TYPE_FLAG, ALTER_GEOM_FIELD_DEFN_NULLABLE_FLAG,
922 : * ALTER_GEOM_FIELD_DEFN_SRS_FLAG, ALTER_GEOM_FIELD_DEFN_SRS_COORD_EPOCH_FLAG
923 : * flags. Note that advertizing one of these flags doesn't necessarily mean that
924 : * all modifications of the corresponding property can be made. For example,
925 : * altering the geometry type may be restricted by the type of the geometries in
926 : * the field, or changing the nullable state to non-nullable is not possible if
927 : * null geometries are present, etc.
928 : *
929 : * @since GDAL 3.6
930 : */
931 : #define GDAL_DMD_ALTER_GEOM_FIELD_DEFN_FLAGS "DMD_ALTER_GEOM_FIELD_DEFN_FLAGS"
932 :
933 : /** List of (space separated) SQL dialects supported by the driver.
934 : *
935 : * The default SQL dialect for the driver will always be the first listed value.
936 : *
937 : * Standard values are:
938 : *
939 : * - "OGRSQL": the OGR SQL dialect, see
940 : * https://gdal.org/user/ogr_sql_dialect.html
941 : * - "SQLITE": the SQLite dialect, see
942 : * https://gdal.org/user/sql_sqlite_dialect.html
943 : * - "NATIVE": for drivers with an RDBMS backend this value indicates that the
944 : * SQL will be passed directly to that database backend, and therefore the
945 : * RDBMS' native dialect will be used
946 : *
947 : * Other dialect values may also be present for some drivers (for some of them,
948 : * the query string to use might not even by SQL but a dedicated query
949 : * language). For further details on their interpretation, see the documentation
950 : * for the respective driver.
951 : *
952 : * @since GDAL 3.6
953 : */
954 : #define GDAL_DMD_SUPPORTED_SQL_DIALECTS "DMD_SUPPORTED_SQL_DIALECTS"
955 :
956 : /*! @cond Doxygen_Suppress */
957 : #define GDAL_DMD_PLUGIN_INSTALLATION_MESSAGE "DMD_PLUGIN_INSTALLATION_MESSAGE"
958 : /*! @endcond */
959 :
960 : /** List of (space separated) items that a dataset opened in update mode supports
961 : * updating. Possible values are:
962 : * - for raster: "GeoTransform" (through GDALDataset::SetGeoTransform),
963 : * "SRS" (GDALDataset::SetSpatialRef), "GCPs" (GDALDataset::SetGCPs()),
964 : * "NoData" (GDALRasterBand::SetNoDataValue),
965 : * "ColorInterpretation" (GDALRasterBand::SetColorInterpretation()),
966 : * "RasterValues" (GF_Write flag of GDALDataset::RasterIO() and GDALRasterBand::RasterIO()),
967 : * "DatasetMetadata" (GDALDataset::SetMetadata/SetMetadataItem), "BandMetadata"
968 : * (GDALRasterBand::SetMetadata/SetMetadataItem)
969 : * - for vector: "Features" (OGRLayer::SetFeature()), "DatasetMetadata",
970 : * "LayerMetadata"
971 : *
972 : * No distinction is made if the update is done in the native format,
973 : * or in a Persistent Auxiliary Metadata .aux.xml side car file.
974 : *
975 : * @since GDAL 3.11
976 : */
977 : #define GDAL_DMD_UPDATE_ITEMS "DMD_UPDATE_ITEMS"
978 :
979 : /** Value for GDALDimension::GetType() specifying the X axis of a horizontal
980 : * CRS.
981 : * @since GDAL 3.1
982 : */
983 : #define GDAL_DIM_TYPE_HORIZONTAL_X "HORIZONTAL_X"
984 :
985 : /** Value for GDALDimension::GetType() specifying the Y axis of a horizontal
986 : * CRS.
987 : * @since GDAL 3.1
988 : */
989 : #define GDAL_DIM_TYPE_HORIZONTAL_Y "HORIZONTAL_Y"
990 :
991 : /** Value for GDALDimension::GetType() specifying a vertical axis.
992 : * @since GDAL 3.1
993 : */
994 : #define GDAL_DIM_TYPE_VERTICAL "VERTICAL"
995 :
996 : /** Value for GDALDimension::GetType() specifying a temporal axis.
997 : * @since GDAL 3.1
998 : */
999 : #define GDAL_DIM_TYPE_TEMPORAL "TEMPORAL"
1000 :
1001 : /** Value for GDALDimension::GetType() specifying a parametric axis.
1002 : * @since GDAL 3.1
1003 : */
1004 : #define GDAL_DIM_TYPE_PARAMETRIC "PARAMETRIC"
1005 :
1006 : /** "Capability" set by drivers that require re-opening the dataset to be able
1007 : * to read its content if it has just been created previously
1008 : *
1009 : * @since GDAL 3.12
1010 : */
1011 : #define GDAL_DCAP_REOPEN_AFTER_WRITE_REQUIRED "DCAP_REOPEN_AFTER_WRITE_REQUIRED"
1012 :
1013 : /** Capability set by drivers that can read from a dataset, even if it deleted
1014 : * from disk after it has been opened (i.e. such drivers do not need to reopen
1015 : * or test the existence of the file at that point)
1016 : *
1017 : * @since GDAL 3.12
1018 : */
1019 : #define GDAL_DCAP_CAN_READ_AFTER_DELETE "DCAP_CAN_READ_AFTER_DELETE"
1020 :
1021 : #define GDsCAddRelationship \
1022 : "AddRelationship" /**< Dataset capability for supporting AddRelationship() \
1023 : (at least partially) */
1024 : #define GDsCDeleteRelationship \
1025 : "DeleteRelationship" /**< Dataset capability for supporting \
1026 : DeleteRelationship()*/
1027 : #define GDsCUpdateRelationship \
1028 : "UpdateRelationship" /**< Dataset capability for supporting \
1029 : UpdateRelationship()*/
1030 :
1031 : /** Dataset capability if GDALDataset::GetExtent() is fast.
1032 : *
1033 : * @since 3.12
1034 : */
1035 : #define GDsCFastGetExtent "FastGetExtent"
1036 :
1037 : /** Dataset capability if GDALDataset::GetExtentWGS84LongLat() is fast.
1038 : *
1039 : * @since 3.12
1040 : */
1041 : #define GDsCFastGetExtentWGS84LongLat "FastGetExtentWGS84LongLat"
1042 :
1043 : void CPL_DLL CPL_STDCALL GDALAllRegister(void);
1044 : void CPL_DLL GDALRegisterPlugins(void);
1045 : CPLErr CPL_DLL GDALRegisterPlugin(const char *name);
1046 :
1047 : GDALDatasetH CPL_DLL CPL_STDCALL
1048 : GDALCreate(GDALDriverH hDriver, const char *, int, int, int, GDALDataType,
1049 : CSLConstList) CPL_WARN_UNUSED_RESULT;
1050 : GDALDatasetH CPL_DLL CPL_STDCALL GDALCreateCopy(GDALDriverH, const char *,
1051 : GDALDatasetH, int, CSLConstList,
1052 : GDALProgressFunc,
1053 : void *) CPL_WARN_UNUSED_RESULT;
1054 :
1055 : GDALDriverH CPL_DLL CPL_STDCALL GDALIdentifyDriver(const char *pszFilename,
1056 : CSLConstList papszFileList);
1057 :
1058 : GDALDriverH CPL_DLL CPL_STDCALL GDALIdentifyDriverEx(
1059 : const char *pszFilename, unsigned int nIdentifyFlags,
1060 : const char *const *papszAllowedDrivers, const char *const *papszFileList);
1061 :
1062 : GDALDatasetH CPL_DLL CPL_STDCALL
1063 : GDALOpen(const char *pszFilename, GDALAccess eAccess) CPL_WARN_UNUSED_RESULT;
1064 : GDALDatasetH CPL_DLL CPL_STDCALL GDALOpenShared(const char *, GDALAccess)
1065 : CPL_WARN_UNUSED_RESULT;
1066 :
1067 : /* Note: we define GDAL_OF_READONLY and GDAL_OF_UPDATE to be on purpose */
1068 : /* equals to GA_ReadOnly and GA_Update */
1069 :
1070 : /** Open in read-only mode.
1071 : * Used by GDALOpenEx().
1072 : */
1073 : #define GDAL_OF_READONLY 0x00
1074 :
1075 : /** Open in update mode.
1076 : * Used by GDALOpenEx().
1077 : */
1078 : #define GDAL_OF_UPDATE 0x01
1079 :
1080 : /** Allow raster and vector drivers to be used.
1081 : * Used by GDALOpenEx().
1082 : */
1083 : #define GDAL_OF_ALL 0x00
1084 :
1085 : /** Allow raster drivers to be used.
1086 : * Used by GDALOpenEx().
1087 : */
1088 : #define GDAL_OF_RASTER 0x02
1089 :
1090 : /** Allow vector drivers to be used.
1091 : * Used by GDALOpenEx().
1092 : */
1093 : #define GDAL_OF_VECTOR 0x04
1094 :
1095 : /** Allow gnm drivers to be used.
1096 : * Used by GDALOpenEx().
1097 : */
1098 : #define GDAL_OF_GNM 0x08
1099 :
1100 : /** Allow multidimensional raster drivers to be used.
1101 : * Used by GDALOpenEx().
1102 : * @since GDAL 3.1
1103 : */
1104 : #define GDAL_OF_MULTIDIM_RASTER 0x10
1105 :
1106 : #ifndef DOXYGEN_SKIP
1107 : #define GDAL_OF_KIND_MASK 0x1E
1108 : #endif
1109 :
1110 : /** Open in shared mode.
1111 : * Used by GDALOpenEx().
1112 : */
1113 : #define GDAL_OF_SHARED 0x20
1114 :
1115 : /** Emit error message in case of failed open.
1116 : * Used by GDALOpenEx().
1117 : */
1118 : #define GDAL_OF_VERBOSE_ERROR 0x40
1119 :
1120 : /** Open as internal dataset. Such dataset isn't registered in the global list
1121 : * of opened dataset. Cannot be used with GDAL_OF_SHARED.
1122 : *
1123 : * Used by GDALOpenEx().
1124 : */
1125 : #define GDAL_OF_INTERNAL 0x80
1126 :
1127 : /** Let GDAL decide if a array-based or hashset-based storage strategy for
1128 : * cached blocks must be used.
1129 : *
1130 : * GDAL_OF_DEFAULT_BLOCK_ACCESS, GDAL_OF_ARRAY_BLOCK_ACCESS and
1131 : * GDAL_OF_HASHSET_BLOCK_ACCESS are mutually exclusive.
1132 : *
1133 : * Used by GDALOpenEx().
1134 : */
1135 : #define GDAL_OF_DEFAULT_BLOCK_ACCESS 0
1136 :
1137 : /** Use a array-based storage strategy for cached blocks.
1138 : *
1139 : * GDAL_OF_DEFAULT_BLOCK_ACCESS, GDAL_OF_ARRAY_BLOCK_ACCESS and
1140 : * GDAL_OF_HASHSET_BLOCK_ACCESS are mutually exclusive.
1141 : *
1142 : * Used by GDALOpenEx().
1143 : */
1144 : #define GDAL_OF_ARRAY_BLOCK_ACCESS 0x100
1145 :
1146 : /** Use a hashset-based storage strategy for cached blocks.
1147 : *
1148 : * GDAL_OF_DEFAULT_BLOCK_ACCESS, GDAL_OF_ARRAY_BLOCK_ACCESS and
1149 : * GDAL_OF_HASHSET_BLOCK_ACCESS are mutually exclusive.
1150 : *
1151 : * Used by GDALOpenEx().
1152 : */
1153 : #define GDAL_OF_HASHSET_BLOCK_ACCESS 0x200
1154 :
1155 : #ifndef DOXYGEN_SKIP
1156 : /* Reserved for a potential future alternative to GDAL_OF_ARRAY_BLOCK_ACCESS
1157 : * and GDAL_OF_HASHSET_BLOCK_ACCESS */
1158 : #define GDAL_OF_RESERVED_1 0x300
1159 :
1160 : /** Mask to detect the block access method */
1161 : #define GDAL_OF_BLOCK_ACCESS_MASK 0x300
1162 : #endif
1163 :
1164 : #ifndef DOXYGEN_SKIP
1165 : /** Set by GDALOpenEx() to indicate to Identify() method that they are called
1166 : * from it */
1167 : #define GDAL_OF_FROM_GDALOPEN 0x400
1168 : #endif
1169 :
1170 : /** Open in thread-safe mode. Not compatible with
1171 : * GDAL_OF_VECTOR, GDAL_OF_MULTIDIM_RASTER or GDAL_OF_UPDATE
1172 : *
1173 : * Used by GDALOpenEx().
1174 : * @since GDAL 3.10
1175 : */
1176 : #define GDAL_OF_THREAD_SAFE 0x800
1177 :
1178 : GDALDatasetH CPL_DLL CPL_STDCALL GDALOpenEx(
1179 : const char *pszFilename, unsigned int nOpenFlags,
1180 : const char *const *papszAllowedDrivers, const char *const *papszOpenOptions,
1181 : const char *const *papszSiblingFiles) CPL_WARN_UNUSED_RESULT;
1182 :
1183 : int CPL_DLL CPL_STDCALL GDALDumpOpenDatasets(FILE *);
1184 :
1185 : GDALDriverH CPL_DLL CPL_STDCALL GDALGetDriverByName(const char *);
1186 : int CPL_DLL CPL_STDCALL GDALGetDriverCount(void);
1187 : GDALDriverH CPL_DLL CPL_STDCALL GDALGetDriver(int);
1188 : GDALDriverH CPL_DLL CPL_STDCALL GDALCreateDriver(void);
1189 : void CPL_DLL CPL_STDCALL GDALDestroyDriver(GDALDriverH);
1190 : int CPL_DLL CPL_STDCALL GDALRegisterDriver(GDALDriverH);
1191 : void CPL_DLL CPL_STDCALL GDALDeregisterDriver(GDALDriverH);
1192 : void CPL_DLL CPL_STDCALL GDALDestroyDriverManager(void);
1193 : void CPL_DLL GDALDestroy(void);
1194 : CPLErr CPL_DLL CPL_STDCALL GDALDeleteDataset(GDALDriverH, const char *);
1195 : CPLErr CPL_DLL CPL_STDCALL GDALRenameDataset(GDALDriverH,
1196 : const char *pszNewName,
1197 : const char *pszOldName);
1198 : CPLErr CPL_DLL CPL_STDCALL GDALCopyDatasetFiles(GDALDriverH,
1199 : const char *pszNewName,
1200 : const char *pszOldName);
1201 : int CPL_DLL CPL_STDCALL
1202 : GDALValidateCreationOptions(GDALDriverH, CSLConstList papszCreationOptions);
1203 : char CPL_DLL **GDALGetOutputDriversForDatasetName(const char *pszDestFilename,
1204 : int nFlagRasterVector,
1205 : bool bSingleMatch,
1206 : bool bEmitWarning);
1207 :
1208 : bool CPL_DLL GDALDriverHasOpenOption(GDALDriverH,
1209 : const char *pszOpenOptionName);
1210 :
1211 : /* The following are deprecated */
1212 : const char CPL_DLL *CPL_STDCALL GDALGetDriverShortName(GDALDriverH);
1213 : const char CPL_DLL *CPL_STDCALL GDALGetDriverLongName(GDALDriverH);
1214 : const char CPL_DLL *CPL_STDCALL GDALGetDriverHelpTopic(GDALDriverH);
1215 : const char CPL_DLL *CPL_STDCALL GDALGetDriverCreationOptionList(GDALDriverH);
1216 :
1217 : /* ==================================================================== */
1218 : /* GDAL_GCP */
1219 : /* ==================================================================== */
1220 :
1221 : /** Ground Control Point */
1222 : typedef struct
1223 : {
1224 : /** Unique identifier, often numeric */
1225 : char *pszId;
1226 :
1227 : /** Informational message or "" */
1228 : char *pszInfo;
1229 :
1230 : /** Pixel (x) location of GCP on raster */
1231 : double dfGCPPixel;
1232 : /** Line (y) location of GCP on raster */
1233 : double dfGCPLine;
1234 :
1235 : /** X position of GCP in georeferenced space */
1236 : double dfGCPX;
1237 :
1238 : /** Y position of GCP in georeferenced space */
1239 : double dfGCPY;
1240 :
1241 : /** Elevation of GCP, or zero if not known */
1242 : double dfGCPZ;
1243 : } GDAL_GCP;
1244 :
1245 : void CPL_DLL CPL_STDCALL GDALInitGCPs(int, GDAL_GCP *);
1246 : void CPL_DLL CPL_STDCALL GDALDeinitGCPs(int, GDAL_GCP *);
1247 : GDAL_GCP CPL_DLL *CPL_STDCALL GDALDuplicateGCPs(int, const GDAL_GCP *);
1248 :
1249 : int CPL_DLL CPL_STDCALL GDALGCPsToGeoTransform(
1250 : int nGCPCount, const GDAL_GCP *pasGCPs, double *padfGeoTransform,
1251 : int bApproxOK) CPL_WARN_UNUSED_RESULT;
1252 : int CPL_DLL CPL_STDCALL GDALInvGeoTransform(const double *padfGeoTransformIn,
1253 : double *padfInvGeoTransformOut)
1254 : CPL_WARN_UNUSED_RESULT;
1255 : void CPL_DLL CPL_STDCALL GDALApplyGeoTransform(const double *, double, double,
1256 : double *, double *);
1257 : void CPL_DLL GDALComposeGeoTransforms(const double *padfGeoTransform1,
1258 : const double *padfGeoTransform2,
1259 : double *padfGeoTransformOut);
1260 : int CPL_DLL GDALGCPsToHomography(int nGCPCount, const GDAL_GCP *pasGCPs,
1261 : double *padfHomography) CPL_WARN_UNUSED_RESULT;
1262 : int CPL_DLL GDALInvHomography(const double *padfHomographyIn,
1263 : double *padfInvHomographyOut)
1264 : CPL_WARN_UNUSED_RESULT;
1265 : int CPL_DLL GDALApplyHomography(const double *, double, double, double *,
1266 : double *) CPL_WARN_UNUSED_RESULT;
1267 : void CPL_DLL GDALComposeHomographies(const double *padfHomography1,
1268 : const double *padfHomography2,
1269 : double *padfHomographyOut);
1270 :
1271 : /* ==================================================================== */
1272 : /* major objects (dataset, and, driver, drivermanager). */
1273 : /* ==================================================================== */
1274 :
1275 : char CPL_DLL **CPL_STDCALL GDALGetMetadataDomainList(GDALMajorObjectH hObject);
1276 : char CPL_DLL **CPL_STDCALL GDALGetMetadata(GDALMajorObjectH, const char *);
1277 : CPLErr CPL_DLL CPL_STDCALL GDALSetMetadata(GDALMajorObjectH, CSLConstList,
1278 : const char *);
1279 : const char CPL_DLL *CPL_STDCALL GDALGetMetadataItem(GDALMajorObjectH,
1280 : const char *, const char *);
1281 : CPLErr CPL_DLL CPL_STDCALL GDALSetMetadataItem(GDALMajorObjectH, const char *,
1282 : const char *, const char *);
1283 : const char CPL_DLL *CPL_STDCALL GDALGetDescription(GDALMajorObjectH);
1284 : void CPL_DLL CPL_STDCALL GDALSetDescription(GDALMajorObjectH, const char *);
1285 :
1286 : /* ==================================================================== */
1287 : /* GDALDataset class ... normally this represents one file. */
1288 : /* ==================================================================== */
1289 :
1290 : /** Name of driver metadata item for layer creation option list */
1291 : #define GDAL_DS_LAYER_CREATIONOPTIONLIST "DS_LAYER_CREATIONOPTIONLIST"
1292 :
1293 : GDALDriverH CPL_DLL CPL_STDCALL GDALGetDatasetDriver(GDALDatasetH);
1294 : char CPL_DLL **CPL_STDCALL GDALGetFileList(GDALDatasetH);
1295 : void CPL_DLL GDALDatasetMarkSuppressOnClose(GDALDatasetH);
1296 : CPLErr CPL_DLL CPL_STDCALL GDALClose(GDALDatasetH);
1297 : CPLErr CPL_DLL GDALDatasetRunCloseWithoutDestroying(GDALDatasetH hDS);
1298 : int CPL_DLL CPL_STDCALL GDALGetRasterXSize(GDALDatasetH);
1299 : int CPL_DLL CPL_STDCALL GDALGetRasterYSize(GDALDatasetH);
1300 : int CPL_DLL CPL_STDCALL GDALGetRasterCount(GDALDatasetH);
1301 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetRasterBand(GDALDatasetH, int);
1302 :
1303 : bool CPL_DLL GDALDatasetIsThreadSafe(GDALDatasetH, int nScopeFlags,
1304 : CSLConstList papszOptions);
1305 : GDALDatasetH CPL_DLL GDALGetThreadSafeDataset(GDALDatasetH, int nScopeFlags,
1306 : CSLConstList papszOptions);
1307 :
1308 : CPLErr CPL_DLL CPL_STDCALL GDALAddBand(GDALDatasetH hDS, GDALDataType eType,
1309 : CSLConstList papszOptions);
1310 :
1311 : GDALAsyncReaderH CPL_DLL CPL_STDCALL GDALBeginAsyncReader(
1312 : GDALDatasetH hDS, int nXOff, int nYOff, int nXSize, int nYSize, void *pBuf,
1313 : int nBufXSize, int nBufYSize, GDALDataType eBufType, int nBandCount,
1314 : int *panBandMap, int nPixelSpace, int nLineSpace, int nBandSpace,
1315 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1316 :
1317 : void CPL_DLL CPL_STDCALL GDALEndAsyncReader(GDALDatasetH hDS,
1318 : GDALAsyncReaderH hAsynchReaderH);
1319 :
1320 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetRasterIO(
1321 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nDSXOff, int nDSYOff,
1322 : int nDSXSize, int nDSYSize, void *pBuffer, int nBXSize, int nBYSize,
1323 : GDALDataType eBDataType, int nBandCount, const int *panBandCount,
1324 : int nPixelSpace, int nLineSpace, int nBandSpace) CPL_WARN_UNUSED_RESULT;
1325 :
1326 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetRasterIOEx(
1327 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nDSXOff, int nDSYOff,
1328 : int nDSXSize, int nDSYSize, void *pBuffer, int nBXSize, int nBYSize,
1329 : GDALDataType eBDataType, int nBandCount, const int *panBandCount,
1330 : GSpacing nPixelSpace, GSpacing nLineSpace, GSpacing nBandSpace,
1331 : GDALRasterIOExtraArg *psExtraArg) CPL_WARN_UNUSED_RESULT;
1332 :
1333 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetAdviseRead(
1334 : GDALDatasetH hDS, int nDSXOff, int nDSYOff, int nDSXSize, int nDSYSize,
1335 : int nBXSize, int nBYSize, GDALDataType eBDataType, int nBandCount,
1336 : int *panBandCount, CSLConstList papszOptions);
1337 :
1338 : char CPL_DLL **
1339 : GDALDatasetGetCompressionFormats(GDALDatasetH hDS, int nXOff, int nYOff,
1340 : int nXSize, int nYSize, int nBandCount,
1341 : const int *panBandList) CPL_WARN_UNUSED_RESULT;
1342 : CPLErr CPL_DLL GDALDatasetReadCompressedData(
1343 : GDALDatasetH hDS, const char *pszFormat, int nXOff, int nYOff, int nXSize,
1344 : int nYSize, int nBandCount, const int *panBandList, void **ppBuffer,
1345 : size_t *pnBufferSize, char **ppszDetailedFormat);
1346 :
1347 : const char CPL_DLL *CPL_STDCALL GDALGetProjectionRef(GDALDatasetH);
1348 : OGRSpatialReferenceH CPL_DLL GDALGetSpatialRef(GDALDatasetH);
1349 : CPLErr CPL_DLL CPL_STDCALL GDALSetProjection(GDALDatasetH, const char *);
1350 : CPLErr CPL_DLL GDALSetSpatialRef(GDALDatasetH, OGRSpatialReferenceH);
1351 : CPLErr CPL_DLL CPL_STDCALL GDALGetGeoTransform(GDALDatasetH, double *);
1352 : CPLErr CPL_DLL CPL_STDCALL GDALSetGeoTransform(GDALDatasetH, const double *);
1353 :
1354 : CPLErr CPL_DLL GDALGetExtent(GDALDatasetH, OGREnvelope *,
1355 : OGRSpatialReferenceH hCRS);
1356 : CPLErr CPL_DLL GDALGetExtentWGS84LongLat(GDALDatasetH, OGREnvelope *);
1357 :
1358 : CPLErr CPL_DLL GDALDatasetGeolocationToPixelLine(
1359 : GDALDatasetH, double dfGeolocX, double dfGeolocY, OGRSpatialReferenceH hSRS,
1360 : double *pdfPixel, double *pdfLine, CSLConstList papszTransformerOptions);
1361 :
1362 : int CPL_DLL CPL_STDCALL GDALGetGCPCount(GDALDatasetH);
1363 : const char CPL_DLL *CPL_STDCALL GDALGetGCPProjection(GDALDatasetH);
1364 : OGRSpatialReferenceH CPL_DLL GDALGetGCPSpatialRef(GDALDatasetH);
1365 : const GDAL_GCP CPL_DLL *CPL_STDCALL GDALGetGCPs(GDALDatasetH);
1366 : CPLErr CPL_DLL CPL_STDCALL GDALSetGCPs(GDALDatasetH, int, const GDAL_GCP *,
1367 : const char *);
1368 : CPLErr CPL_DLL GDALSetGCPs2(GDALDatasetH, int, const GDAL_GCP *,
1369 : OGRSpatialReferenceH);
1370 :
1371 : void CPL_DLL *CPL_STDCALL GDALGetInternalHandle(GDALDatasetH, const char *);
1372 : int CPL_DLL CPL_STDCALL GDALReferenceDataset(GDALDatasetH);
1373 : int CPL_DLL CPL_STDCALL GDALDereferenceDataset(GDALDatasetH);
1374 : int CPL_DLL CPL_STDCALL GDALReleaseDataset(GDALDatasetH);
1375 :
1376 : CPLErr CPL_DLL CPL_STDCALL GDALBuildOverviews(GDALDatasetH, const char *, int,
1377 : const int *, int, const int *,
1378 : GDALProgressFunc,
1379 : void *) CPL_WARN_UNUSED_RESULT;
1380 : CPLErr CPL_DLL CPL_STDCALL GDALBuildOverviewsEx(
1381 : GDALDatasetH, const char *, int, const int *, int, const int *,
1382 : GDALProgressFunc, void *, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1383 : void CPL_DLL CPL_STDCALL GDALGetOpenDatasets(GDALDatasetH **hDS, int *pnCount);
1384 : int CPL_DLL CPL_STDCALL GDALGetAccess(GDALDatasetH hDS);
1385 : CPLErr CPL_DLL CPL_STDCALL GDALFlushCache(GDALDatasetH hDS);
1386 : CPLErr CPL_DLL CPL_STDCALL GDALDropCache(GDALDatasetH hDS);
1387 :
1388 : CPLErr CPL_DLL CPL_STDCALL GDALCreateDatasetMaskBand(GDALDatasetH hDS,
1389 : int nFlags);
1390 :
1391 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetCopyWholeRaster(
1392 : GDALDatasetH hSrcDS, GDALDatasetH hDstDS, CSLConstList papszOptions,
1393 : GDALProgressFunc pfnProgress, void *pProgressData) CPL_WARN_UNUSED_RESULT;
1394 :
1395 : CPLErr CPL_DLL CPL_STDCALL GDALRasterBandCopyWholeRaster(
1396 : GDALRasterBandH hSrcBand, GDALRasterBandH hDstBand,
1397 : const char *const *constpapszOptions, GDALProgressFunc pfnProgress,
1398 : void *pProgressData) CPL_WARN_UNUSED_RESULT;
1399 :
1400 : CPLErr CPL_DLL GDALRegenerateOverviews(GDALRasterBandH hSrcBand,
1401 : int nOverviewCount,
1402 : GDALRasterBandH *pahOverviewBands,
1403 : const char *pszResampling,
1404 : GDALProgressFunc pfnProgress,
1405 : void *pProgressData);
1406 :
1407 : CPLErr CPL_DLL GDALRegenerateOverviewsEx(GDALRasterBandH hSrcBand,
1408 : int nOverviewCount,
1409 : GDALRasterBandH *pahOverviewBands,
1410 : const char *pszResampling,
1411 : GDALProgressFunc pfnProgress,
1412 : void *pProgressData,
1413 : CSLConstList papszOptions);
1414 :
1415 : int CPL_DLL GDALDatasetGetLayerCount(GDALDatasetH);
1416 : OGRLayerH CPL_DLL GDALDatasetGetLayer(GDALDatasetH, int);
1417 :
1418 : /* Defined here to avoid circular dependency with ogr_api.h */
1419 : GDALDatasetH CPL_DLL OGR_L_GetDataset(OGRLayerH hLayer);
1420 :
1421 : OGRLayerH CPL_DLL GDALDatasetGetLayerByName(GDALDatasetH, const char *);
1422 : int CPL_DLL GDALDatasetIsLayerPrivate(GDALDatasetH, int);
1423 : OGRErr CPL_DLL GDALDatasetDeleteLayer(GDALDatasetH, int);
1424 : OGRLayerH CPL_DLL GDALDatasetCreateLayer(GDALDatasetH, const char *,
1425 : OGRSpatialReferenceH,
1426 : OGRwkbGeometryType, CSLConstList);
1427 : OGRLayerH CPL_DLL GDALDatasetCreateLayerFromGeomFieldDefn(GDALDatasetH,
1428 : const char *,
1429 : OGRGeomFieldDefnH,
1430 : CSLConstList);
1431 : OGRLayerH CPL_DLL GDALDatasetCopyLayer(GDALDatasetH, OGRLayerH, const char *,
1432 : CSLConstList);
1433 : void CPL_DLL GDALDatasetResetReading(GDALDatasetH);
1434 : OGRFeatureH CPL_DLL GDALDatasetGetNextFeature(GDALDatasetH hDS,
1435 : OGRLayerH *phBelongingLayer,
1436 : double *pdfProgressPct,
1437 : GDALProgressFunc pfnProgress,
1438 : void *pProgressData);
1439 : int CPL_DLL GDALDatasetTestCapability(GDALDatasetH, const char *);
1440 : OGRLayerH CPL_DLL GDALDatasetExecuteSQL(GDALDatasetH, const char *,
1441 : OGRGeometryH, const char *);
1442 : OGRErr CPL_DLL GDALDatasetAbortSQL(GDALDatasetH);
1443 : void CPL_DLL GDALDatasetReleaseResultSet(GDALDatasetH, OGRLayerH);
1444 : OGRStyleTableH CPL_DLL GDALDatasetGetStyleTable(GDALDatasetH);
1445 : void CPL_DLL GDALDatasetSetStyleTableDirectly(GDALDatasetH, OGRStyleTableH);
1446 : void CPL_DLL GDALDatasetSetStyleTable(GDALDatasetH, OGRStyleTableH);
1447 : OGRErr CPL_DLL GDALDatasetStartTransaction(GDALDatasetH hDS, int bForce);
1448 : OGRErr CPL_DLL GDALDatasetCommitTransaction(GDALDatasetH hDS);
1449 : OGRErr CPL_DLL GDALDatasetRollbackTransaction(GDALDatasetH hDS);
1450 : void CPL_DLL GDALDatasetClearStatistics(GDALDatasetH hDS);
1451 :
1452 : GDALMDArrayH CPL_DLL GDALDatasetAsMDArray(
1453 : GDALDatasetH hDS, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1454 :
1455 : char CPL_DLL **GDALDatasetGetFieldDomainNames(GDALDatasetH, CSLConstList)
1456 : CPL_WARN_UNUSED_RESULT;
1457 : OGRFieldDomainH CPL_DLL GDALDatasetGetFieldDomain(GDALDatasetH hDS,
1458 : const char *pszName);
1459 : bool CPL_DLL GDALDatasetAddFieldDomain(GDALDatasetH hDS,
1460 : OGRFieldDomainH hFieldDomain,
1461 : char **ppszFailureReason);
1462 : bool CPL_DLL GDALDatasetDeleteFieldDomain(GDALDatasetH hDS, const char *pszName,
1463 : char **ppszFailureReason);
1464 : bool CPL_DLL GDALDatasetUpdateFieldDomain(GDALDatasetH hDS,
1465 : OGRFieldDomainH hFieldDomain,
1466 : char **ppszFailureReason);
1467 :
1468 : char CPL_DLL **GDALDatasetGetRelationshipNames(GDALDatasetH, CSLConstList)
1469 : CPL_WARN_UNUSED_RESULT;
1470 : GDALRelationshipH CPL_DLL GDALDatasetGetRelationship(GDALDatasetH hDS,
1471 : const char *pszName);
1472 :
1473 : bool CPL_DLL GDALDatasetAddRelationship(GDALDatasetH hDS,
1474 : GDALRelationshipH hRelationship,
1475 : char **ppszFailureReason);
1476 : bool CPL_DLL GDALDatasetDeleteRelationship(GDALDatasetH hDS,
1477 : const char *pszName,
1478 : char **ppszFailureReason);
1479 : bool CPL_DLL GDALDatasetUpdateRelationship(GDALDatasetH hDS,
1480 : GDALRelationshipH hRelationship,
1481 : char **ppszFailureReason);
1482 :
1483 : /** Type of functions to pass to GDALDatasetSetQueryLoggerFunc
1484 : * @since GDAL 3.7 */
1485 : typedef void (*GDALQueryLoggerFunc)(const char *pszSQL, const char *pszError,
1486 : int64_t lNumRecords,
1487 : int64_t lExecutionTimeMilliseconds,
1488 : void *pQueryLoggerArg);
1489 :
1490 : /**
1491 : * Sets the SQL query logger callback.
1492 : *
1493 : * When supported by the driver, the callback will be called with
1494 : * the executed SQL text, the error message, the execution time in milliseconds,
1495 : * the number of records fetched/affected and the client status data.
1496 : *
1497 : * A value of -1 in the execution time or in the number of records indicates
1498 : * that the values are unknown.
1499 : *
1500 : * @param hDS Dataset handle.
1501 : * @param pfnQueryLoggerFunc Callback function
1502 : * @param poQueryLoggerArg Opaque client status data
1503 : * @return true in case of success.
1504 : * @since GDAL 3.7
1505 : */
1506 : bool CPL_DLL GDALDatasetSetQueryLoggerFunc(
1507 : GDALDatasetH hDS, GDALQueryLoggerFunc pfnQueryLoggerFunc,
1508 : void *poQueryLoggerArg);
1509 :
1510 : /* ==================================================================== */
1511 : /* Informational utilities about subdatasets in file names */
1512 : /* ==================================================================== */
1513 :
1514 : /**
1515 : * @brief Returns a new GDALSubdatasetInfo object with methods to extract
1516 : * and manipulate subdataset information.
1517 : * If the pszFileName argument is not recognized by any driver as
1518 : * a subdataset descriptor, NULL is returned.
1519 : * The returned object must be freed with GDALDestroySubdatasetInfo().
1520 : * @param pszFileName File name with subdataset information
1521 : * @note This method does not check if the subdataset actually exists.
1522 : * @return Opaque pointer to a GDALSubdatasetInfo object or NULL if no drivers accepted the file name.
1523 : * @since GDAL 3.8
1524 : */
1525 : GDALSubdatasetInfoH CPL_DLL GDALGetSubdatasetInfo(const char *pszFileName);
1526 :
1527 : /**
1528 : * @brief Returns the file path component of a
1529 : * subdataset descriptor effectively stripping the information about the subdataset
1530 : * and returning the "parent" dataset descriptor.
1531 : * The returned string must be freed with CPLFree().
1532 : * @param hInfo Pointer to GDALSubdatasetInfo object
1533 : * @note This method does not check if the subdataset actually exists.
1534 : * @return The original string with the subdataset information removed.
1535 : * @since GDAL 3.8
1536 : */
1537 : char CPL_DLL *GDALSubdatasetInfoGetPathComponent(GDALSubdatasetInfoH hInfo);
1538 :
1539 : /**
1540 : * @brief Returns the subdataset component of a subdataset descriptor descriptor.
1541 : * The returned string must be freed with CPLFree().
1542 : * @param hInfo Pointer to GDALSubdatasetInfo object
1543 : * @note This method does not check if the subdataset actually exists.
1544 : * @return The subdataset name.
1545 : * @since GDAL 3.8
1546 : */
1547 : char CPL_DLL *
1548 : GDALSubdatasetInfoGetSubdatasetComponent(GDALSubdatasetInfoH hInfo);
1549 :
1550 : /**
1551 : * @brief Replaces the path component of a subdataset descriptor.
1552 : * The returned string must be freed with CPLFree().
1553 : * @param hInfo Pointer to GDALSubdatasetInfo object
1554 : * @param pszNewPath New path.
1555 : * @note This method does not check if the subdataset actually exists.
1556 : * @return The original subdataset descriptor with the old path component replaced by newPath.
1557 : * @since GDAL 3.8
1558 : */
1559 : char CPL_DLL *GDALSubdatasetInfoModifyPathComponent(GDALSubdatasetInfoH hInfo,
1560 : const char *pszNewPath);
1561 :
1562 : /**
1563 : * @brief Destroys a GDALSubdatasetInfo object.
1564 : * @param hInfo Pointer to GDALSubdatasetInfo object
1565 : * @since GDAL 3.8
1566 : */
1567 : void CPL_DLL GDALDestroySubdatasetInfo(GDALSubdatasetInfoH hInfo);
1568 :
1569 : /* ==================================================================== */
1570 : /* GDALRasterBand ... one band/channel in a dataset. */
1571 : /* ==================================================================== */
1572 :
1573 : /* Note: the only user of SRCVAL() is alg/gdal_simplesurf.cpp */
1574 :
1575 : /* clang-format off */
1576 : /**
1577 : * SRCVAL - Macro which may be used by pixel functions to obtain
1578 : * a pixel from a source buffer.
1579 : */
1580 : #define SRCVAL(papoSource, eSrcType, ii) \
1581 : (eSrcType == GDT_UInt8 ? CPL_REINTERPRET_CAST(const GByte *, papoSource)[ii] : \
1582 : eSrcType == GDT_Int8 ? CPL_REINTERPRET_CAST(const GInt8 *, papoSource)[ii] : \
1583 : eSrcType == GDT_UInt16 ? CPL_REINTERPRET_CAST(const GUInt16 *, papoSource)[ii] : \
1584 : eSrcType == GDT_Int16 ? CPL_REINTERPRET_CAST(const GInt16 *, papoSource)[ii] : \
1585 : eSrcType == GDT_UInt32 ? CPL_REINTERPRET_CAST(const GUInt32 *, papoSource)[ii] : \
1586 : eSrcType == GDT_Int32 ? CPL_REINTERPRET_CAST(const GInt32 *, papoSource)[ii] : \
1587 : eSrcType == GDT_UInt64 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const GUInt64 *, papoSource)[ii]) : \
1588 : eSrcType == GDT_Int64 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const GUInt64 *, papoSource)[ii]) : \
1589 : eSrcType == GDT_Float32 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const float *, papoSource)[ii]) : \
1590 : eSrcType == GDT_Float64 ? CPL_REINTERPRET_CAST(const double *, papoSource)[ii] : \
1591 : eSrcType == GDT_CInt16 ? CPL_REINTERPRET_CAST(const GInt16 *, papoSource)[(ii)*2] : \
1592 : eSrcType == GDT_CInt32 ? CPL_REINTERPRET_CAST(const GInt32 *, papoSource)[(ii)*2] : \
1593 : eSrcType == GDT_CFloat32 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const float *, papoSource)[ii*2]) : \
1594 : eSrcType == GDT_CFloat64 ? CPL_REINTERPRET_CAST(const double *, papoSource)[ii*2] : \
1595 : 0)
1596 :
1597 : /* clang-format on */
1598 :
1599 : /** Type of functions to pass to GDALAddDerivedBandPixelFunc.
1600 : */
1601 : typedef CPLErr (*GDALDerivedPixelFunc)(void **papoSources, int nSources,
1602 : void *pData, int nBufXSize,
1603 : int nBufYSize, GDALDataType eSrcType,
1604 : GDALDataType eBufType, int nPixelSpace,
1605 : int nLineSpace);
1606 :
1607 : /** Type of functions to pass to GDALAddDerivedBandPixelFuncWithArgs.
1608 : * @since GDAL 3.4 */
1609 : typedef CPLErr (*GDALDerivedPixelFuncWithArgs)(
1610 : void **papoSources, int nSources, void *pData, int nBufXSize, int nBufYSize,
1611 : GDALDataType eSrcType, GDALDataType eBufType, int nPixelSpace,
1612 : int nLineSpace, CSLConstList papszFunctionArgs);
1613 :
1614 : GDALDataType CPL_DLL CPL_STDCALL GDALGetRasterDataType(GDALRasterBandH);
1615 : void CPL_DLL CPL_STDCALL GDALGetBlockSize(GDALRasterBandH, int *pnXSize,
1616 : int *pnYSize);
1617 :
1618 : CPLErr CPL_DLL CPL_STDCALL GDALGetActualBlockSize(GDALRasterBandH,
1619 : int nXBlockOff,
1620 : int nYBlockOff, int *pnXValid,
1621 : int *pnYValid);
1622 :
1623 : CPLErr CPL_DLL CPL_STDCALL GDALRasterAdviseRead(GDALRasterBandH hRB,
1624 : int nDSXOff, int nDSYOff,
1625 : int nDSXSize, int nDSYSize,
1626 : int nBXSize, int nBYSize,
1627 : GDALDataType eBDataType,
1628 : CSLConstList papszOptions);
1629 :
1630 : CPLErr CPL_DLL CPL_STDCALL GDALRasterIO(GDALRasterBandH hRBand,
1631 : GDALRWFlag eRWFlag, int nDSXOff,
1632 : int nDSYOff, int nDSXSize, int nDSYSize,
1633 : void *pBuffer, int nBXSize, int nBYSize,
1634 : GDALDataType eBDataType,
1635 : int nPixelSpace,
1636 : int nLineSpace) CPL_WARN_UNUSED_RESULT;
1637 : CPLErr CPL_DLL CPL_STDCALL GDALRasterIOEx(
1638 : GDALRasterBandH hRBand, GDALRWFlag eRWFlag, int nDSXOff, int nDSYOff,
1639 : int nDSXSize, int nDSYSize, void *pBuffer, int nBXSize, int nBYSize,
1640 : GDALDataType eBDataType, GSpacing nPixelSpace, GSpacing nLineSpace,
1641 : GDALRasterIOExtraArg *psExtraArg) CPL_WARN_UNUSED_RESULT;
1642 : CPLErr CPL_DLL CPL_STDCALL GDALReadBlock(GDALRasterBandH, int, int,
1643 : void *) CPL_WARN_UNUSED_RESULT;
1644 : CPLErr CPL_DLL CPL_STDCALL GDALWriteBlock(GDALRasterBandH, int, int,
1645 : void *) CPL_WARN_UNUSED_RESULT;
1646 : int CPL_DLL CPL_STDCALL GDALGetRasterBandXSize(GDALRasterBandH);
1647 : int CPL_DLL CPL_STDCALL GDALGetRasterBandYSize(GDALRasterBandH);
1648 : GDALAccess CPL_DLL CPL_STDCALL GDALGetRasterAccess(GDALRasterBandH);
1649 : int CPL_DLL CPL_STDCALL GDALGetBandNumber(GDALRasterBandH);
1650 : GDALDatasetH CPL_DLL CPL_STDCALL GDALGetBandDataset(GDALRasterBandH);
1651 :
1652 : GDALColorInterp
1653 : CPL_DLL CPL_STDCALL GDALGetRasterColorInterpretation(GDALRasterBandH);
1654 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterColorInterpretation(GDALRasterBandH,
1655 : GDALColorInterp);
1656 : GDALColorTableH CPL_DLL CPL_STDCALL GDALGetRasterColorTable(GDALRasterBandH);
1657 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterColorTable(GDALRasterBandH,
1658 : GDALColorTableH);
1659 : int CPL_DLL CPL_STDCALL GDALHasArbitraryOverviews(GDALRasterBandH);
1660 : int CPL_DLL CPL_STDCALL GDALGetOverviewCount(GDALRasterBandH);
1661 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetOverview(GDALRasterBandH, int);
1662 : double CPL_DLL CPL_STDCALL GDALGetRasterNoDataValue(GDALRasterBandH, int *);
1663 : int64_t CPL_DLL CPL_STDCALL GDALGetRasterNoDataValueAsInt64(GDALRasterBandH,
1664 : int *);
1665 : uint64_t CPL_DLL CPL_STDCALL GDALGetRasterNoDataValueAsUInt64(GDALRasterBandH,
1666 : int *);
1667 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValue(GDALRasterBandH, double);
1668 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValueAsInt64(GDALRasterBandH,
1669 : int64_t);
1670 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValueAsUInt64(GDALRasterBandH,
1671 : uint64_t);
1672 : CPLErr CPL_DLL CPL_STDCALL GDALDeleteRasterNoDataValue(GDALRasterBandH);
1673 : char CPL_DLL **CPL_STDCALL GDALGetRasterCategoryNames(GDALRasterBandH);
1674 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterCategoryNames(GDALRasterBandH,
1675 : CSLConstList);
1676 : double CPL_DLL CPL_STDCALL GDALGetRasterMinimum(GDALRasterBandH,
1677 : int *pbSuccess);
1678 : double CPL_DLL CPL_STDCALL GDALGetRasterMaximum(GDALRasterBandH,
1679 : int *pbSuccess);
1680 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterStatistics(
1681 : GDALRasterBandH, int bApproxOK, int bForce, double *pdfMin, double *pdfMax,
1682 : double *pdfMean, double *pdfStdDev);
1683 : CPLErr CPL_DLL CPL_STDCALL
1684 : GDALComputeRasterStatistics(GDALRasterBandH, int bApproxOK, double *pdfMin,
1685 : double *pdfMax, double *pdfMean, double *pdfStdDev,
1686 : GDALProgressFunc pfnProgress, void *pProgressData);
1687 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterStatistics(GDALRasterBandH hBand,
1688 : double dfMin, double dfMax,
1689 : double dfMean,
1690 : double dfStdDev);
1691 :
1692 : GDALMDArrayH
1693 : CPL_DLL GDALRasterBandAsMDArray(GDALRasterBandH) CPL_WARN_UNUSED_RESULT;
1694 :
1695 : const char CPL_DLL *CPL_STDCALL GDALGetRasterUnitType(GDALRasterBandH);
1696 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterUnitType(GDALRasterBandH hBand,
1697 : const char *pszNewValue);
1698 : double CPL_DLL CPL_STDCALL GDALGetRasterOffset(GDALRasterBandH, int *pbSuccess);
1699 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterOffset(GDALRasterBandH hBand,
1700 : double dfNewOffset);
1701 : double CPL_DLL CPL_STDCALL GDALGetRasterScale(GDALRasterBandH, int *pbSuccess);
1702 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterScale(GDALRasterBandH hBand,
1703 : double dfNewOffset);
1704 : CPLErr CPL_DLL CPL_STDCALL GDALComputeRasterMinMax(GDALRasterBandH hBand,
1705 : int bApproxOK,
1706 : double adfMinMax[2]);
1707 : CPLErr CPL_DLL GDALComputeRasterMinMaxLocation(GDALRasterBandH hBand,
1708 : double *pdfMin, double *pdfMax,
1709 : int *pnMinX, int *pnMinY,
1710 : int *pnMaxX, int *pnMaxY);
1711 : CPLErr CPL_DLL CPL_STDCALL GDALFlushRasterCache(GDALRasterBandH hBand);
1712 : CPLErr CPL_DLL CPL_STDCALL GDALDropRasterCache(GDALRasterBandH hBand);
1713 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterHistogram(
1714 : GDALRasterBandH hBand, double dfMin, double dfMax, int nBuckets,
1715 : int *panHistogram, int bIncludeOutOfRange, int bApproxOK,
1716 : GDALProgressFunc pfnProgress, void *pProgressData)
1717 : /*! @cond Doxygen_Suppress */
1718 : CPL_WARN_DEPRECATED("Use GDALGetRasterHistogramEx() instead")
1719 : /*! @endcond */
1720 : ;
1721 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterHistogramEx(
1722 : GDALRasterBandH hBand, double dfMin, double dfMax, int nBuckets,
1723 : GUIntBig *panHistogram, int bIncludeOutOfRange, int bApproxOK,
1724 : GDALProgressFunc pfnProgress, void *pProgressData);
1725 : CPLErr CPL_DLL CPL_STDCALL
1726 : GDALGetDefaultHistogram(GDALRasterBandH hBand, double *pdfMin, double *pdfMax,
1727 : int *pnBuckets, int **ppanHistogram, int bForce,
1728 : GDALProgressFunc pfnProgress, void *pProgressData)
1729 : /*! @cond Doxygen_Suppress */
1730 : CPL_WARN_DEPRECATED("Use GDALGetDefaultHistogramEx() instead")
1731 : /*! @endcond */
1732 : ;
1733 : CPLErr CPL_DLL CPL_STDCALL
1734 : GDALGetDefaultHistogramEx(GDALRasterBandH hBand, double *pdfMin, double *pdfMax,
1735 : int *pnBuckets, GUIntBig **ppanHistogram, int bForce,
1736 : GDALProgressFunc pfnProgress, void *pProgressData);
1737 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultHistogram(GDALRasterBandH hBand,
1738 : double dfMin, double dfMax,
1739 : int nBuckets,
1740 : int *panHistogram)
1741 : /*! @cond Doxygen_Suppress */
1742 : CPL_WARN_DEPRECATED("Use GDALSetDefaultHistogramEx() instead")
1743 : /*! @endcond */
1744 : ;
1745 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultHistogramEx(GDALRasterBandH hBand,
1746 : double dfMin, double dfMax,
1747 : int nBuckets,
1748 : GUIntBig *panHistogram);
1749 : int CPL_DLL CPL_STDCALL GDALGetRandomRasterSample(GDALRasterBandH, int,
1750 : float *);
1751 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetRasterSampleOverview(GDALRasterBandH,
1752 : int);
1753 : GDALRasterBandH CPL_DLL CPL_STDCALL
1754 : GDALGetRasterSampleOverviewEx(GDALRasterBandH, GUIntBig);
1755 : CPLErr CPL_DLL CPL_STDCALL GDALFillRaster(GDALRasterBandH hBand,
1756 : double dfRealValue,
1757 : double dfImaginaryValue);
1758 : CPLErr CPL_DLL CPL_STDCALL GDALComputeBandStats(
1759 : GDALRasterBandH hBand, int nSampleStep, double *pdfMean, double *pdfStdDev,
1760 : GDALProgressFunc pfnProgress, void *pProgressData);
1761 : CPLErr CPL_DLL GDALOverviewMagnitudeCorrection(GDALRasterBandH hBaseBand,
1762 : int nOverviewCount,
1763 : GDALRasterBandH *pahOverviews,
1764 : GDALProgressFunc pfnProgress,
1765 : void *pProgressData);
1766 :
1767 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
1768 : GDALGetDefaultRAT(GDALRasterBandH hBand);
1769 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultRAT(GDALRasterBandH,
1770 : GDALRasterAttributeTableH);
1771 : CPLErr CPL_DLL CPL_STDCALL GDALAddDerivedBandPixelFunc(
1772 : const char *pszName, GDALDerivedPixelFunc pfnPixelFunc);
1773 : CPLErr CPL_DLL CPL_STDCALL GDALAddDerivedBandPixelFuncWithArgs(
1774 : const char *pszName, GDALDerivedPixelFuncWithArgs pfnPixelFunc,
1775 : const char *pszMetadata);
1776 :
1777 : CPLErr CPL_DLL GDALRasterInterpolateAtPoint(GDALRasterBandH hBand,
1778 : double dfPixel, double dfLine,
1779 : GDALRIOResampleAlg eInterpolation,
1780 : double *pdfRealValue,
1781 : double *pdfImagValue);
1782 :
1783 : CPLErr CPL_DLL GDALRasterInterpolateAtGeolocation(
1784 : GDALRasterBandH hBand, double dfGeolocX, double dfGeolocY,
1785 : OGRSpatialReferenceH hSRS, GDALRIOResampleAlg eInterpolation,
1786 : double *pdfRealValue, double *pdfImagValue,
1787 : CSLConstList papszTransformerOptions);
1788 :
1789 : /** Generic pointer for the working structure of VRTProcessedDataset
1790 : * function. */
1791 : typedef void *VRTPDWorkingDataPtr;
1792 :
1793 : /** Initialization function to pass to GDALVRTRegisterProcessedDatasetFunc.
1794 : *
1795 : * This initialization function is called for each step of a VRTProcessedDataset
1796 : * that uses the related algorithm.
1797 : * The initialization function returns the output data type, output band count
1798 : * and potentially initializes a working structure, typically parsing arguments.
1799 : *
1800 : * @param pszFuncName Function name. Must be unique and not null.
1801 : * @param pUserData User data. May be nullptr. Must remain valid during the
1802 : * lifetime of GDAL.
1803 : * @param papszFunctionArgs Function arguments as a list of key=value pairs.
1804 : * @param nInBands Number of input bands.
1805 : * @param eInDT Input data type.
1806 : * @param[in,out] padfInNoData Array of nInBands values for the input nodata
1807 : * value. The init function may also override them.
1808 : * @param[in,out] pnOutBands Pointer whose value must be set to the number of
1809 : * output bands. This will be set to 0 by the caller
1810 : * when calling the function, unless this is the
1811 : * final step, in which case it will be initialized
1812 : * with the number of expected output bands.
1813 : * @param[out] peOutDT Pointer whose value must be set to the output
1814 : * data type.
1815 : * @param[in,out] ppadfOutNoData Pointer to an array of *pnOutBands values
1816 : * for the output nodata value that the
1817 : * function must set.
1818 : * For non-final steps, *ppadfOutNoData
1819 : * will be nullptr and it is the responsibility
1820 : * of the function to CPLMalloc()'ate it.
1821 : * If this is the final step, it will be
1822 : * already allocated and initialized with the
1823 : * expected nodata values from the output
1824 : * dataset (if the init function need to
1825 : * reallocate it, it must use CPLRealloc())
1826 : * @param pszVRTPath Directory of the VRT
1827 : * @param[out] ppWorkingData Pointer whose value must be set to a working
1828 : * structure, or nullptr.
1829 : * @return CE_None in case of success, error otherwise.
1830 : * @since GDAL 3.9 */
1831 : typedef CPLErr (*GDALVRTProcessedDatasetFuncInit)(
1832 : const char *pszFuncName, void *pUserData, CSLConstList papszFunctionArgs,
1833 : int nInBands, GDALDataType eInDT, double *padfInNoData, int *pnOutBands,
1834 : GDALDataType *peOutDT, double **ppadfOutNoData, const char *pszVRTPath,
1835 : VRTPDWorkingDataPtr *ppWorkingData);
1836 :
1837 : /** Free function to pass to GDALVRTRegisterProcessedDatasetFunc.
1838 : *
1839 : * @param pszFuncName Function name. Must be unique and not null.
1840 : * @param pUserData User data. May be nullptr. Must remain valid during the
1841 : * lifetime of GDAL.
1842 : * @param pWorkingData Value of the *ppWorkingData output parameter of
1843 : * GDALVRTProcessedDatasetFuncInit.
1844 : * @since GDAL 3.9
1845 : */
1846 : typedef void (*GDALVRTProcessedDatasetFuncFree)(
1847 : const char *pszFuncName, void *pUserData, VRTPDWorkingDataPtr pWorkingData);
1848 :
1849 : /** Processing function to pass to GDALVRTRegisterProcessedDatasetFunc.
1850 : * @param pszFuncName Function name. Must be unique and not null.
1851 : * @param pUserData User data. May be nullptr. Must remain valid during the
1852 : * lifetime of GDAL.
1853 : * @param pWorkingData Value of the *ppWorkingData output parameter of
1854 : * GDALVRTProcessedDatasetFuncInit.
1855 : * @param papszFunctionArgs Function arguments as a list of key=value pairs.
1856 : * @param nBufXSize Width in pixels of pInBuffer and pOutBuffer
1857 : * @param nBufYSize Height in pixels of pInBuffer and pOutBuffer
1858 : * @param pInBuffer Input buffer. It is pixel-interleaved
1859 : * (i.e. R00,G00,B00,R01,G01,B01, etc.)
1860 : * @param nInBufferSize Size in bytes of pInBuffer
1861 : * @param eInDT Data type of pInBuffer
1862 : * @param nInBands Number of bands in pInBuffer.
1863 : * @param padfInNoData Input nodata values.
1864 : * @param pOutBuffer Output buffer. It is pixel-interleaved
1865 : * (i.e. R00,G00,B00,R01,G01,B01, etc.)
1866 : * @param nOutBufferSize Size in bytes of pOutBuffer
1867 : * @param eOutDT Data type of pOutBuffer
1868 : * @param nOutBands Number of bands in pOutBuffer.
1869 : * @param padfOutNoData Input nodata values.
1870 : * @param dfSrcXOff Source X coordinate in pixel of the top-left of the region
1871 : * @param dfSrcYOff Source Y coordinate in pixel of the top-left of the region
1872 : * @param dfSrcXSize Width in pixels of the region
1873 : * @param dfSrcYSize Height in pixels of the region
1874 : * @param adfSrcGT Source geotransform
1875 : * @param pszVRTPath Directory of the VRT
1876 : * @param papszExtra Extra arguments (unused for now)
1877 : * @since GDAL 3.9
1878 : */
1879 : typedef CPLErr (*GDALVRTProcessedDatasetFuncProcess)(
1880 : const char *pszFuncName, void *pUserData, VRTPDWorkingDataPtr pWorkingData,
1881 : CSLConstList papszFunctionArgs, int nBufXSize, int nBufYSize,
1882 : const void *pInBuffer, size_t nInBufferSize, GDALDataType eInDT,
1883 : int nInBands, const double *padfInNoData, void *pOutBuffer,
1884 : size_t nOutBufferSize, GDALDataType eOutDT, int nOutBands,
1885 : const double *padfOutNoData, double dfSrcXOff, double dfSrcYOff,
1886 : double dfSrcXSize, double dfSrcYSize, const double adfSrcGT[/*6*/],
1887 : const char *pszVRTPath, CSLConstList papszExtra);
1888 :
1889 : CPLErr CPL_DLL GDALVRTRegisterProcessedDatasetFunc(
1890 : const char *pszFuncName, void *pUserData, const char *pszXMLMetadata,
1891 : GDALDataType eRequestedInputDT, const GDALDataType *paeSupportedInputDT,
1892 : size_t nSupportedInputDTSize, const int *panSupportedInputBandCount,
1893 : size_t nSupportedInputBandCountSize,
1894 : GDALVRTProcessedDatasetFuncInit pfnInit,
1895 : GDALVRTProcessedDatasetFuncFree pfnFree,
1896 : GDALVRTProcessedDatasetFuncProcess pfnProcess, CSLConstList papszOptions);
1897 :
1898 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetMaskBand(GDALRasterBandH hBand);
1899 : int CPL_DLL CPL_STDCALL GDALGetMaskFlags(GDALRasterBandH hBand);
1900 : CPLErr CPL_DLL CPL_STDCALL GDALCreateMaskBand(GDALRasterBandH hBand,
1901 : int nFlags);
1902 : bool CPL_DLL GDALIsMaskBand(GDALRasterBandH hBand);
1903 :
1904 : /** Flag returned by GDALGetMaskFlags() to indicate that all pixels are valid */
1905 : #define GMF_ALL_VALID 0x01
1906 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1907 : * valid for all bands */
1908 : #define GMF_PER_DATASET 0x02
1909 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1910 : * an alpha band */
1911 : #define GMF_ALPHA 0x04
1912 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1913 : * computed from nodata values */
1914 : #define GMF_NODATA 0x08
1915 :
1916 : /** Flag returned by GDALGetDataCoverageStatus() when the driver does not
1917 : * implement GetDataCoverageStatus(). This flag should be returned together
1918 : * with GDAL_DATA_COVERAGE_STATUS_DATA */
1919 : #define GDAL_DATA_COVERAGE_STATUS_UNIMPLEMENTED 0x01
1920 :
1921 : /** Flag returned by GDALGetDataCoverageStatus() when there is (potentially)
1922 : * data in the queried window. Can be combined with the binary or operator
1923 : * with GDAL_DATA_COVERAGE_STATUS_UNIMPLEMENTED or
1924 : * GDAL_DATA_COVERAGE_STATUS_EMPTY */
1925 : #define GDAL_DATA_COVERAGE_STATUS_DATA 0x02
1926 :
1927 : /** Flag returned by GDALGetDataCoverageStatus() when there is nodata in the
1928 : * queried window. This is typically identified by the concept of missing block
1929 : * in formats that supports it.
1930 : * Can be combined with the binary or operator with
1931 : * GDAL_DATA_COVERAGE_STATUS_DATA */
1932 : #define GDAL_DATA_COVERAGE_STATUS_EMPTY 0x04
1933 :
1934 : int CPL_DLL CPL_STDCALL GDALGetDataCoverageStatus(GDALRasterBandH hBand,
1935 : int nXOff, int nYOff,
1936 : int nXSize, int nYSize,
1937 : int nMaskFlagStop,
1938 : double *pdfDataPct);
1939 :
1940 : void CPL_DLL GDALComputedRasterBandRelease(GDALComputedRasterBandH hBand);
1941 :
1942 : /** Raster algebra unary operation */
1943 : typedef enum
1944 : {
1945 : /** Logical not */
1946 : GRAUO_LOGICAL_NOT,
1947 : /** Absolute value (module for complex data type) */
1948 : GRAUO_ABS,
1949 : /** Square root */
1950 : GRAUO_SQRT,
1951 : /** Natural logarithm (``ln``) */
1952 : GRAUO_LOG,
1953 : /** Logarithm base 10 */
1954 : GRAUO_LOG10,
1955 : } GDALRasterAlgebraUnaryOperation;
1956 :
1957 : GDALComputedRasterBandH CPL_DLL GDALRasterBandUnaryOp(
1958 : GDALRasterBandH hBand,
1959 : GDALRasterAlgebraUnaryOperation eOp) CPL_WARN_UNUSED_RESULT;
1960 :
1961 : /** Raster algebra binary operation */
1962 : typedef enum
1963 : {
1964 : /** Addition */
1965 : GRABO_ADD,
1966 : /** Subtraction */
1967 : GRABO_SUB,
1968 : /** Multiplication */
1969 : GRABO_MUL,
1970 : /** Division */
1971 : GRABO_DIV,
1972 : /** Power */
1973 : GRABO_POW,
1974 : /** Strictly greater than test*/
1975 : GRABO_GT,
1976 : /** Greater or equal to test */
1977 : GRABO_GE,
1978 : /** Strictly lesser than test */
1979 : GRABO_LT,
1980 : /** Lesser or equal to test */
1981 : GRABO_LE,
1982 : /** Equality test */
1983 : GRABO_EQ,
1984 : /** Non-equality test */
1985 : GRABO_NE,
1986 : /** Logical and */
1987 : GRABO_LOGICAL_AND,
1988 : /** Logical or */
1989 : GRABO_LOGICAL_OR
1990 : } GDALRasterAlgebraBinaryOperation;
1991 :
1992 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpBand(
1993 : GDALRasterBandH hBand, GDALRasterAlgebraBinaryOperation eOp,
1994 : GDALRasterBandH hOtherBand) CPL_WARN_UNUSED_RESULT;
1995 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpDouble(
1996 : GDALRasterBandH hBand, GDALRasterAlgebraBinaryOperation eOp,
1997 : double constant) CPL_WARN_UNUSED_RESULT;
1998 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpDoubleToBand(
1999 : double constant, GDALRasterAlgebraBinaryOperation eOp,
2000 : GDALRasterBandH hBand) CPL_WARN_UNUSED_RESULT;
2001 :
2002 : GDALComputedRasterBandH CPL_DLL
2003 : GDALRasterBandIfThenElse(GDALRasterBandH hCondBand, GDALRasterBandH hThenBand,
2004 : GDALRasterBandH hElseBand) CPL_WARN_UNUSED_RESULT;
2005 :
2006 : GDALComputedRasterBandH CPL_DLL GDALRasterBandAsDataType(
2007 : GDALRasterBandH hBand, GDALDataType eDT) CPL_WARN_UNUSED_RESULT;
2008 :
2009 : GDALComputedRasterBandH CPL_DLL GDALMaximumOfNBands(
2010 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2011 : GDALComputedRasterBandH CPL_DLL GDALRasterBandMaxConstant(
2012 : GDALRasterBandH hBand, double dfConstant) CPL_WARN_UNUSED_RESULT;
2013 : GDALComputedRasterBandH CPL_DLL GDALMinimumOfNBands(
2014 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2015 : GDALComputedRasterBandH CPL_DLL GDALRasterBandMinConstant(
2016 : GDALRasterBandH hBand, double dfConstant) CPL_WARN_UNUSED_RESULT;
2017 : GDALComputedRasterBandH CPL_DLL GDALMeanOfNBands(
2018 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2019 :
2020 : /* ==================================================================== */
2021 : /* GDALAsyncReader */
2022 : /* ==================================================================== */
2023 :
2024 : GDALAsyncStatusType CPL_DLL CPL_STDCALL GDALARGetNextUpdatedRegion(
2025 : GDALAsyncReaderH hARIO, double dfTimeout, int *pnXBufOff, int *pnYBufOff,
2026 : int *pnXBufSize, int *pnYBufSize);
2027 : int CPL_DLL CPL_STDCALL GDALARLockBuffer(GDALAsyncReaderH hARIO,
2028 : double dfTimeout);
2029 : void CPL_DLL CPL_STDCALL GDALARUnlockBuffer(GDALAsyncReaderH hARIO);
2030 :
2031 : /* -------------------------------------------------------------------- */
2032 : /* Helper functions. */
2033 : /* -------------------------------------------------------------------- */
2034 : int CPL_DLL CPL_STDCALL GDALGeneralCmdLineProcessor(int nArgc,
2035 : char ***ppapszArgv,
2036 : int nOptions);
2037 : void CPL_DLL CPL_STDCALL GDALSwapWords(void *pData, int nWordSize,
2038 : int nWordCount, int nWordSkip);
2039 : void CPL_DLL CPL_STDCALL GDALSwapWordsEx(void *pData, int nWordSize,
2040 : size_t nWordCount, int nWordSkip);
2041 :
2042 : void CPL_DLL CPL_STDCALL GDALCopyWords(const void *CPL_RESTRICT pSrcData,
2043 : GDALDataType eSrcType,
2044 : int nSrcPixelOffset,
2045 : void *CPL_RESTRICT pDstData,
2046 : GDALDataType eDstType,
2047 : int nDstPixelOffset, int nWordCount);
2048 :
2049 : void CPL_DLL CPL_STDCALL GDALCopyWords64(
2050 : const void *CPL_RESTRICT pSrcData, GDALDataType eSrcType,
2051 : int nSrcPixelOffset, void *CPL_RESTRICT pDstData, GDALDataType eDstType,
2052 : int nDstPixelOffset, GPtrDiff_t nWordCount);
2053 :
2054 : void CPL_DLL GDALCopyBits(const GByte *pabySrcData, int nSrcOffset,
2055 : int nSrcStep, GByte *pabyDstData, int nDstOffset,
2056 : int nDstStep, int nBitCount, int nStepCount);
2057 :
2058 : void CPL_DLL GDALDeinterleave(const void *pSourceBuffer, GDALDataType eSourceDT,
2059 : int nComponents, void **ppDestBuffer,
2060 : GDALDataType eDestDT, size_t nIters);
2061 :
2062 : void CPL_DLL GDALTranspose2D(const void *pSrc, GDALDataType eSrcType,
2063 : void *pDst, GDALDataType eDstType,
2064 : size_t nSrcWidth, size_t nSrcHeight);
2065 :
2066 : double CPL_DLL GDALGetNoDataReplacementValue(GDALDataType, double);
2067 :
2068 : int CPL_DLL CPL_STDCALL GDALLoadWorldFile(const char *, double *);
2069 : int CPL_DLL CPL_STDCALL GDALReadWorldFile(const char *, const char *, double *);
2070 : int CPL_DLL CPL_STDCALL GDALWriteWorldFile(const char *, const char *,
2071 : double *);
2072 : int CPL_DLL CPL_STDCALL GDALLoadTabFile(const char *, double *, char **, int *,
2073 : GDAL_GCP **);
2074 : int CPL_DLL CPL_STDCALL GDALReadTabFile(const char *, double *, char **, int *,
2075 : GDAL_GCP **);
2076 : int CPL_DLL CPL_STDCALL GDALLoadOziMapFile(const char *, double *, char **,
2077 : int *, GDAL_GCP **);
2078 : int CPL_DLL CPL_STDCALL GDALReadOziMapFile(const char *, double *, char **,
2079 : int *, GDAL_GCP **);
2080 :
2081 : const char CPL_DLL *CPL_STDCALL GDALDecToDMS(double, const char *, int);
2082 : double CPL_DLL CPL_STDCALL GDALPackedDMSToDec(double);
2083 : double CPL_DLL CPL_STDCALL GDALDecToPackedDMS(double);
2084 :
2085 : /* Note to developers : please keep this section in sync with ogr_core.h */
2086 :
2087 : #ifndef GDAL_VERSION_INFO_DEFINED
2088 : #ifndef DOXYGEN_SKIP
2089 : #define GDAL_VERSION_INFO_DEFINED
2090 : #endif
2091 : const char CPL_DLL *CPL_STDCALL GDALVersionInfo(const char *);
2092 : #endif
2093 :
2094 : #ifndef GDAL_CHECK_VERSION
2095 :
2096 : int CPL_DLL CPL_STDCALL GDALCheckVersion(int nVersionMajor, int nVersionMinor,
2097 : const char *pszCallingComponentName);
2098 :
2099 : /** Helper macro for GDALCheckVersion()
2100 : @see GDALCheckVersion()
2101 : */
2102 : #define GDAL_CHECK_VERSION(pszCallingComponentName) \
2103 : GDALCheckVersion(GDAL_VERSION_MAJOR, GDAL_VERSION_MINOR, \
2104 : pszCallingComponentName)
2105 :
2106 : #endif
2107 :
2108 : /*! @cond Doxygen_Suppress */
2109 : #ifdef GDAL_COMPILATION
2110 : #define GDALExtractRPCInfoV1 GDALExtractRPCInfo
2111 : #else
2112 : #define GDALRPCInfo GDALRPCInfoV2
2113 : #define GDALExtractRPCInfo GDALExtractRPCInfoV2
2114 : #endif
2115 :
2116 : /* Deprecated: use GDALRPCInfoV2 */
2117 : typedef struct
2118 : {
2119 : double dfLINE_OFF; /*!< Line offset */
2120 : double dfSAMP_OFF; /*!< Sample/Pixel offset */
2121 : double dfLAT_OFF; /*!< Latitude offset */
2122 : double dfLONG_OFF; /*!< Longitude offset */
2123 : double dfHEIGHT_OFF; /*!< Height offset */
2124 :
2125 : double dfLINE_SCALE; /*!< Line scale */
2126 : double dfSAMP_SCALE; /*!< Sample/Pixel scale */
2127 : double dfLAT_SCALE; /*!< Latitude scale */
2128 : double dfLONG_SCALE; /*!< Longitude scale */
2129 : double dfHEIGHT_SCALE; /*!< Height scale */
2130 :
2131 : double adfLINE_NUM_COEFF[20]; /*!< Line Numerator Coefficients */
2132 : double adfLINE_DEN_COEFF[20]; /*!< Line Denominator Coefficients */
2133 : double adfSAMP_NUM_COEFF[20]; /*!< Sample/Pixel Numerator Coefficients */
2134 : double adfSAMP_DEN_COEFF[20]; /*!< Sample/Pixel Denominator Coefficients */
2135 :
2136 : double dfMIN_LONG; /*!< Minimum longitude */
2137 : double dfMIN_LAT; /*!< Minimum latitude */
2138 : double dfMAX_LONG; /*!< Maximum longitude */
2139 : double dfMAX_LAT; /*!< Maximum latitude */
2140 : } GDALRPCInfoV1;
2141 :
2142 : /*! @endcond */
2143 :
2144 : /** Structure to store Rational Polynomial Coefficients / Rigorous Projection
2145 : * Model. See http://geotiff.maptools.org/rpc_prop.html */
2146 : typedef struct
2147 : {
2148 : double dfLINE_OFF; /*!< Line offset */
2149 : double dfSAMP_OFF; /*!< Sample/Pixel offset */
2150 : double dfLAT_OFF; /*!< Latitude offset */
2151 : double dfLONG_OFF; /*!< Longitude offset */
2152 : double dfHEIGHT_OFF; /*!< Height offset */
2153 :
2154 : double dfLINE_SCALE; /*!< Line scale */
2155 : double dfSAMP_SCALE; /*!< Sample/Pixel scale */
2156 : double dfLAT_SCALE; /*!< Latitude scale */
2157 : double dfLONG_SCALE; /*!< Longitude scale */
2158 : double dfHEIGHT_SCALE; /*!< Height scale */
2159 :
2160 : double adfLINE_NUM_COEFF[20]; /*!< Line Numerator Coefficients */
2161 : double adfLINE_DEN_COEFF[20]; /*!< Line Denominator Coefficients */
2162 : double adfSAMP_NUM_COEFF[20]; /*!< Sample/Pixel Numerator Coefficients */
2163 : double adfSAMP_DEN_COEFF[20]; /*!< Sample/Pixel Denominator Coefficients */
2164 :
2165 : double dfMIN_LONG; /*!< Minimum longitude */
2166 : double dfMIN_LAT; /*!< Minimum latitude */
2167 : double dfMAX_LONG; /*!< Maximum longitude */
2168 : double dfMAX_LAT; /*!< Maximum latitude */
2169 :
2170 : /* Those fields should be at the end. And all above fields should be the
2171 : * same as in GDALRPCInfoV1 */
2172 : double dfERR_BIAS; /*!< Bias error */
2173 : double dfERR_RAND; /*!< Random error */
2174 : } GDALRPCInfoV2;
2175 :
2176 : /*! @cond Doxygen_Suppress */
2177 : int CPL_DLL CPL_STDCALL GDALExtractRPCInfoV1(CSLConstList, GDALRPCInfoV1 *);
2178 : /*! @endcond */
2179 : int CPL_DLL CPL_STDCALL GDALExtractRPCInfoV2(CSLConstList, GDALRPCInfoV2 *);
2180 :
2181 : /* ==================================================================== */
2182 : /* Color tables. */
2183 : /* ==================================================================== */
2184 :
2185 : /** Color tuple */
2186 : typedef struct
2187 : {
2188 : /*! gray, red, cyan or hue */
2189 : short c1;
2190 :
2191 : /*! green, magenta, or lightness */
2192 : short c2;
2193 :
2194 : /*! blue, yellow, or saturation */
2195 : short c3;
2196 :
2197 : /*! alpha or blackband */
2198 : short c4;
2199 : } GDALColorEntry;
2200 :
2201 : GDALColorTableH CPL_DLL CPL_STDCALL GDALCreateColorTable(GDALPaletteInterp)
2202 : CPL_WARN_UNUSED_RESULT;
2203 : void CPL_DLL CPL_STDCALL GDALDestroyColorTable(GDALColorTableH);
2204 : GDALColorTableH CPL_DLL CPL_STDCALL GDALCloneColorTable(GDALColorTableH);
2205 : GDALPaletteInterp
2206 : CPL_DLL CPL_STDCALL GDALGetPaletteInterpretation(GDALColorTableH);
2207 : int CPL_DLL CPL_STDCALL GDALGetColorEntryCount(GDALColorTableH);
2208 : const GDALColorEntry CPL_DLL *CPL_STDCALL GDALGetColorEntry(GDALColorTableH,
2209 : int);
2210 : int CPL_DLL CPL_STDCALL GDALGetColorEntryAsRGB(GDALColorTableH, int,
2211 : GDALColorEntry *);
2212 : void CPL_DLL CPL_STDCALL GDALSetColorEntry(GDALColorTableH, int,
2213 : const GDALColorEntry *);
2214 : void CPL_DLL CPL_STDCALL GDALCreateColorRamp(GDALColorTableH hTable,
2215 : int nStartIndex,
2216 : const GDALColorEntry *psStartColor,
2217 : int nEndIndex,
2218 : const GDALColorEntry *psEndColor);
2219 :
2220 : /* ==================================================================== */
2221 : /* Raster Attribute Table */
2222 : /* ==================================================================== */
2223 :
2224 : /** Field type of raster attribute table */
2225 : typedef enum
2226 : {
2227 : /*! Integer field */ GFT_Integer,
2228 : /*! Floating point (double) field */ GFT_Real,
2229 : /*! String field */ GFT_String,
2230 : /*! Boolean field (GDAL >= 3.12) */ GFT_Boolean,
2231 : /*! DateTime field (GDAL >= 3.12) */ GFT_DateTime,
2232 : /*! Geometry field, as WKB (GDAL >= 3.12) */ GFT_WKBGeometry
2233 : } GDALRATFieldType;
2234 :
2235 : /** First invalid value for the GDALRATFieldType enumeration */
2236 : #define GFT_MaxCount (GFT_WKBGeometry + 1)
2237 :
2238 : /** Field usage of raster attribute table */
2239 : typedef enum
2240 : {
2241 : /*! General purpose field. */ GFU_Generic = 0,
2242 : /*! Histogram pixel count */ GFU_PixelCount = 1,
2243 : /*! Class name */ GFU_Name = 2,
2244 : /*! Class range minimum */ GFU_Min = 3,
2245 : /*! Class range maximum */ GFU_Max = 4,
2246 : /*! Class value (min=max) */ GFU_MinMax = 5,
2247 : /*! Red class color (0-255) */ GFU_Red = 6,
2248 : /*! Green class color (0-255) */ GFU_Green = 7,
2249 : /*! Blue class color (0-255) */ GFU_Blue = 8,
2250 : /*! Alpha (0=transparent,255=opaque)*/ GFU_Alpha = 9,
2251 : /*! Color Range Red Minimum */ GFU_RedMin = 10,
2252 : /*! Color Range Green Minimum */ GFU_GreenMin = 11,
2253 : /*! Color Range Blue Minimum */ GFU_BlueMin = 12,
2254 : /*! Color Range Alpha Minimum */ GFU_AlphaMin = 13,
2255 : /*! Color Range Red Maximum */ GFU_RedMax = 14,
2256 : /*! Color Range Green Maximum */ GFU_GreenMax = 15,
2257 : /*! Color Range Blue Maximum */ GFU_BlueMax = 16,
2258 : /*! Color Range Alpha Maximum */ GFU_AlphaMax = 17,
2259 : /*! Maximum GFU value (equals to GFU_AlphaMax+1 currently) */ GFU_MaxCount
2260 : } GDALRATFieldUsage;
2261 :
2262 : /** RAT table type (thematic or athematic)
2263 : */
2264 : typedef enum
2265 : {
2266 : /*! Thematic table type */ GRTT_THEMATIC,
2267 : /*! Athematic table type */ GRTT_ATHEMATIC
2268 : } GDALRATTableType;
2269 :
2270 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
2271 : GDALCreateRasterAttributeTable(void) CPL_WARN_UNUSED_RESULT;
2272 :
2273 : void CPL_DLL CPL_STDCALL
2274 : GDALDestroyRasterAttributeTable(GDALRasterAttributeTableH);
2275 :
2276 : int CPL_DLL CPL_STDCALL GDALRATGetColumnCount(GDALRasterAttributeTableH);
2277 :
2278 : const char CPL_DLL *CPL_STDCALL GDALRATGetNameOfCol(GDALRasterAttributeTableH,
2279 : int);
2280 : GDALRATFieldUsage CPL_DLL CPL_STDCALL
2281 : GDALRATGetUsageOfCol(GDALRasterAttributeTableH, int);
2282 : GDALRATFieldType CPL_DLL CPL_STDCALL
2283 : GDALRATGetTypeOfCol(GDALRasterAttributeTableH, int);
2284 :
2285 : const char CPL_DLL *GDALGetRATFieldTypeName(GDALRATFieldType);
2286 : const char CPL_DLL *GDALGetRATFieldUsageName(GDALRATFieldUsage);
2287 :
2288 : int CPL_DLL CPL_STDCALL GDALRATGetColOfUsage(GDALRasterAttributeTableH,
2289 : GDALRATFieldUsage);
2290 : int CPL_DLL CPL_STDCALL GDALRATGetRowCount(GDALRasterAttributeTableH);
2291 :
2292 : const char CPL_DLL *CPL_STDCALL
2293 : GDALRATGetValueAsString(GDALRasterAttributeTableH, int iRow, int iField);
2294 : int CPL_DLL CPL_STDCALL GDALRATGetValueAsInt(GDALRasterAttributeTableH,
2295 : int iRow, int iField);
2296 : double CPL_DLL CPL_STDCALL GDALRATGetValueAsDouble(GDALRasterAttributeTableH,
2297 : int iRow, int iField);
2298 : bool CPL_DLL GDALRATGetValueAsBoolean(GDALRasterAttributeTableH, int iRow,
2299 : int iField);
2300 :
2301 : #ifdef __cplusplus
2302 : extern "C++"
2303 : {
2304 : #endif
2305 :
2306 : /** Structure encoding a DateTime field for a GDAL Raster Attribute Table.
2307 : *
2308 : * @since 3.12
2309 : */
2310 : struct GDALRATDateTime
2311 : {
2312 : /*! Year */ int nYear;
2313 : /*! Month [1, 12] */ int nMonth;
2314 : /*! Day [1, 31] */ int nDay;
2315 : /*! Hour [0, 23] */ int nHour;
2316 : /*! Minute [0, 59] */ int nMinute;
2317 : /*! Second [0, 61) */ float fSecond;
2318 : /*! Time zone hour [0, 23] */ int nTimeZoneHour;
2319 : /*! Time zone minute: 0, 15, 30, 45 */ int nTimeZoneMinute;
2320 : /*! Whether time zone is positive (or null) */ bool bPositiveTimeZone;
2321 : /*! Whether this object is valid */ bool bIsValid;
2322 :
2323 : #ifdef __cplusplus
2324 133 : GDALRATDateTime()
2325 133 : : nYear(0), nMonth(0), nDay(0), nHour(0), nMinute(0), fSecond(0),
2326 : nTimeZoneHour(0), nTimeZoneMinute(0), bPositiveTimeZone(false),
2327 133 : bIsValid(false)
2328 : {
2329 65 : }
2330 : #endif
2331 : };
2332 :
2333 : #ifdef __cplusplus
2334 : }
2335 : #endif
2336 :
2337 : /*! @cond Doxygen_Suppress */
2338 : typedef struct GDALRATDateTime GDALRATDateTime;
2339 : /*! @endcond */
2340 :
2341 : CPLErr CPL_DLL GDALRATGetValueAsDateTime(GDALRasterAttributeTableH, int iRow,
2342 : int iField,
2343 : GDALRATDateTime *psDateTime);
2344 : const GByte CPL_DLL *GDALRATGetValueAsWKBGeometry(GDALRasterAttributeTableH,
2345 : int iRow, int iField,
2346 : size_t *pnWKBSize);
2347 :
2348 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsString(GDALRasterAttributeTableH,
2349 : int iRow, int iField,
2350 : const char *);
2351 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsInt(GDALRasterAttributeTableH,
2352 : int iRow, int iField, int);
2353 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsDouble(GDALRasterAttributeTableH,
2354 : int iRow, int iField, double);
2355 : CPLErr CPL_DLL GDALRATSetValueAsBoolean(GDALRasterAttributeTableH, int iRow,
2356 : int iField, bool);
2357 : CPLErr CPL_DLL GDALRATSetValueAsDateTime(GDALRasterAttributeTableH, int iRow,
2358 : int iField,
2359 : const GDALRATDateTime *psDateTime);
2360 : CPLErr CPL_DLL GDALRATSetValueAsWKBGeometry(GDALRasterAttributeTableH, int iRow,
2361 : int iField, const void *pabyWKB,
2362 : size_t nWKBSize);
2363 :
2364 : int CPL_DLL CPL_STDCALL
2365 : GDALRATChangesAreWrittenToFile(GDALRasterAttributeTableH hRAT);
2366 :
2367 : CPLErr CPL_DLL CPL_STDCALL GDALRATValuesIOAsDouble(
2368 : GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag, int iField,
2369 : int iStartRow, int iLength, double *pdfData);
2370 : CPLErr CPL_DLL CPL_STDCALL
2371 : GDALRATValuesIOAsInteger(GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag,
2372 : int iField, int iStartRow, int iLength, int *pnData);
2373 : CPLErr CPL_DLL CPL_STDCALL GDALRATValuesIOAsString(
2374 : GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag, int iField,
2375 : int iStartRow, int iLength, char **papszStrList);
2376 : CPLErr CPL_DLL GDALRATValuesIOAsBoolean(GDALRasterAttributeTableH hRAT,
2377 : GDALRWFlag eRWFlag, int iField,
2378 : int iStartRow, int iLength,
2379 : bool *pbData);
2380 : CPLErr CPL_DLL GDALRATValuesIOAsDateTime(GDALRasterAttributeTableH hRAT,
2381 : GDALRWFlag eRWFlag, int iField,
2382 : int iStartRow, int iLength,
2383 : GDALRATDateTime *pasDateTime);
2384 : CPLErr CPL_DLL GDALRATValuesIOAsWKBGeometry(GDALRasterAttributeTableH hRAT,
2385 : GDALRWFlag eRWFlag, int iField,
2386 : int iStartRow, int iLength,
2387 : GByte **ppabyWKB,
2388 : size_t *pnWKBSize);
2389 :
2390 : void CPL_DLL CPL_STDCALL GDALRATSetRowCount(GDALRasterAttributeTableH, int);
2391 : CPLErr CPL_DLL CPL_STDCALL GDALRATCreateColumn(GDALRasterAttributeTableH,
2392 : const char *, GDALRATFieldType,
2393 : GDALRATFieldUsage);
2394 : CPLErr CPL_DLL CPL_STDCALL GDALRATSetLinearBinning(GDALRasterAttributeTableH,
2395 : double, double);
2396 : int CPL_DLL CPL_STDCALL GDALRATGetLinearBinning(GDALRasterAttributeTableH,
2397 : double *, double *);
2398 : CPLErr CPL_DLL CPL_STDCALL GDALRATSetTableType(
2399 : GDALRasterAttributeTableH hRAT, const GDALRATTableType eInTableType);
2400 : GDALRATTableType CPL_DLL CPL_STDCALL
2401 : GDALRATGetTableType(GDALRasterAttributeTableH hRAT);
2402 : CPLErr CPL_DLL CPL_STDCALL
2403 : GDALRATInitializeFromColorTable(GDALRasterAttributeTableH, GDALColorTableH);
2404 : GDALColorTableH CPL_DLL CPL_STDCALL
2405 : GDALRATTranslateToColorTable(GDALRasterAttributeTableH, int nEntryCount);
2406 : void CPL_DLL CPL_STDCALL GDALRATDumpReadable(GDALRasterAttributeTableH, FILE *);
2407 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
2408 : GDALRATClone(const GDALRasterAttributeTableH);
2409 :
2410 : void CPL_DLL *CPL_STDCALL GDALRATSerializeJSON(GDALRasterAttributeTableH)
2411 : CPL_WARN_UNUSED_RESULT;
2412 :
2413 : int CPL_DLL CPL_STDCALL GDALRATGetRowOfValue(GDALRasterAttributeTableH, double);
2414 : void CPL_DLL CPL_STDCALL GDALRATRemoveStatistics(GDALRasterAttributeTableH);
2415 :
2416 : /* -------------------------------------------------------------------- */
2417 : /* Relationships */
2418 : /* -------------------------------------------------------------------- */
2419 :
2420 : /** Cardinality of relationship.
2421 : *
2422 : * @since GDAL 3.6
2423 : */
2424 : typedef enum
2425 : {
2426 : /** One-to-one */
2427 : GRC_ONE_TO_ONE,
2428 : /** One-to-many */
2429 : GRC_ONE_TO_MANY,
2430 : /** Many-to-one */
2431 : GRC_MANY_TO_ONE,
2432 : /** Many-to-many */
2433 : GRC_MANY_TO_MANY,
2434 : } GDALRelationshipCardinality;
2435 :
2436 : /** Type of relationship.
2437 : *
2438 : * @since GDAL 3.6
2439 : */
2440 : typedef enum
2441 : {
2442 : /** Composite relationship */
2443 : GRT_COMPOSITE,
2444 : /** Association relationship */
2445 : GRT_ASSOCIATION,
2446 : /** Aggregation relationship */
2447 : GRT_AGGREGATION,
2448 : } GDALRelationshipType;
2449 :
2450 : GDALRelationshipH CPL_DLL GDALRelationshipCreate(const char *, const char *,
2451 : const char *,
2452 : GDALRelationshipCardinality);
2453 : void CPL_DLL CPL_STDCALL GDALDestroyRelationship(GDALRelationshipH);
2454 : const char CPL_DLL *GDALRelationshipGetName(GDALRelationshipH);
2455 : GDALRelationshipCardinality
2456 : CPL_DLL GDALRelationshipGetCardinality(GDALRelationshipH);
2457 : const char CPL_DLL *GDALRelationshipGetLeftTableName(GDALRelationshipH);
2458 : const char CPL_DLL *GDALRelationshipGetRightTableName(GDALRelationshipH);
2459 : const char CPL_DLL *GDALRelationshipGetMappingTableName(GDALRelationshipH);
2460 : void CPL_DLL GDALRelationshipSetMappingTableName(GDALRelationshipH,
2461 : const char *);
2462 : char CPL_DLL **GDALRelationshipGetLeftTableFields(GDALRelationshipH);
2463 : char CPL_DLL **GDALRelationshipGetRightTableFields(GDALRelationshipH);
2464 : void CPL_DLL GDALRelationshipSetLeftTableFields(GDALRelationshipH,
2465 : CSLConstList);
2466 : void CPL_DLL GDALRelationshipSetRightTableFields(GDALRelationshipH,
2467 : CSLConstList);
2468 : char CPL_DLL **GDALRelationshipGetLeftMappingTableFields(GDALRelationshipH);
2469 : char CPL_DLL **GDALRelationshipGetRightMappingTableFields(GDALRelationshipH);
2470 : void CPL_DLL GDALRelationshipSetLeftMappingTableFields(GDALRelationshipH,
2471 : CSLConstList);
2472 : void CPL_DLL GDALRelationshipSetRightMappingTableFields(GDALRelationshipH,
2473 : CSLConstList);
2474 : GDALRelationshipType CPL_DLL GDALRelationshipGetType(GDALRelationshipH);
2475 : void CPL_DLL GDALRelationshipSetType(GDALRelationshipH, GDALRelationshipType);
2476 : const char CPL_DLL *GDALRelationshipGetForwardPathLabel(GDALRelationshipH);
2477 : void CPL_DLL GDALRelationshipSetForwardPathLabel(GDALRelationshipH,
2478 : const char *);
2479 : const char CPL_DLL *GDALRelationshipGetBackwardPathLabel(GDALRelationshipH);
2480 : void CPL_DLL GDALRelationshipSetBackwardPathLabel(GDALRelationshipH,
2481 : const char *);
2482 : const char CPL_DLL *GDALRelationshipGetRelatedTableType(GDALRelationshipH);
2483 : void CPL_DLL GDALRelationshipSetRelatedTableType(GDALRelationshipH,
2484 : const char *);
2485 :
2486 : /* ==================================================================== */
2487 : /* GDAL Cache Management */
2488 : /* ==================================================================== */
2489 :
2490 : void CPL_DLL CPL_STDCALL GDALSetCacheMax(int nBytes);
2491 : int CPL_DLL CPL_STDCALL GDALGetCacheMax(void);
2492 : int CPL_DLL CPL_STDCALL GDALGetCacheUsed(void);
2493 : void CPL_DLL CPL_STDCALL GDALSetCacheMax64(GIntBig nBytes);
2494 : GIntBig CPL_DLL CPL_STDCALL GDALGetCacheMax64(void);
2495 : GIntBig CPL_DLL CPL_STDCALL GDALGetCacheUsed64(void);
2496 :
2497 : int CPL_DLL CPL_STDCALL GDALFlushCacheBlock(void);
2498 :
2499 : /* ==================================================================== */
2500 : /* GDAL virtual memory */
2501 : /* ==================================================================== */
2502 :
2503 : CPLVirtualMem CPL_DLL *GDALDatasetGetVirtualMem(
2504 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2505 : int nYSize, int nBufXSize, int nBufYSize, GDALDataType eBufType,
2506 : int nBandCount, int *panBandMap, int nPixelSpace, GIntBig nLineSpace,
2507 : GIntBig nBandSpace, size_t nCacheSize, size_t nPageSizeHint,
2508 : int bSingleThreadUsage, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2509 :
2510 : CPLVirtualMem CPL_DLL *GDALRasterBandGetVirtualMem(
2511 : GDALRasterBandH hBand, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2512 : int nYSize, int nBufXSize, int nBufYSize, GDALDataType eBufType,
2513 : int nPixelSpace, GIntBig nLineSpace, size_t nCacheSize,
2514 : size_t nPageSizeHint, int bSingleThreadUsage,
2515 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2516 :
2517 : CPLVirtualMem CPL_DLL *
2518 : GDALGetVirtualMemAuto(GDALRasterBandH hBand, GDALRWFlag eRWFlag,
2519 : int *pnPixelSpace, GIntBig *pnLineSpace,
2520 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2521 :
2522 : /**! Enumeration to describe the tile organization */
2523 : typedef enum
2524 : {
2525 : /*! Tile Interleaved by Pixel: tile (0,0) with internal band interleaved by
2526 : pixel organization, tile (1, 0), ... */
2527 : GTO_TIP,
2528 : /*! Band Interleaved by Tile : tile (0,0) of first band, tile (0,0) of
2529 : second band, ... tile (1,0) of first band, tile (1,0) of second band, ...
2530 : */
2531 : GTO_BIT,
2532 : /*! Band SeQuential : all the tiles of first band, all the tiles of
2533 : following band... */
2534 : GTO_BSQ
2535 : } GDALTileOrganization;
2536 :
2537 : CPLVirtualMem CPL_DLL *GDALDatasetGetTiledVirtualMem(
2538 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2539 : int nYSize, int nTileXSize, int nTileYSize, GDALDataType eBufType,
2540 : int nBandCount, int *panBandMap, GDALTileOrganization eTileOrganization,
2541 : size_t nCacheSize, int bSingleThreadUsage,
2542 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2543 :
2544 : CPLVirtualMem CPL_DLL *GDALRasterBandGetTiledVirtualMem(
2545 : GDALRasterBandH hBand, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2546 : int nYSize, int nTileXSize, int nTileYSize, GDALDataType eBufType,
2547 : size_t nCacheSize, int bSingleThreadUsage,
2548 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2549 :
2550 : /* ==================================================================== */
2551 : /* VRTPansharpenedDataset class. */
2552 : /* ==================================================================== */
2553 :
2554 : GDALDatasetH CPL_DLL GDALCreatePansharpenedVRT(
2555 : const char *pszXML, GDALRasterBandH hPanchroBand, int nInputSpectralBands,
2556 : GDALRasterBandH *pahInputSpectralBands) CPL_WARN_UNUSED_RESULT;
2557 :
2558 : /* =================================================================== */
2559 : /* Misc API */
2560 : /* ==================================================================== */
2561 :
2562 : CPLXMLNode CPL_DLL *
2563 : GDALGetJPEG2000Structure(const char *pszFilename,
2564 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2565 :
2566 : /* ==================================================================== */
2567 : /* Multidimensional API_api */
2568 : /* ==================================================================== */
2569 :
2570 : GDALDatasetH CPL_DLL
2571 : GDALCreateMultiDimensional(GDALDriverH hDriver, const char *pszName,
2572 : CSLConstList papszRootGroupOptions,
2573 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2574 :
2575 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreate(GDALDataType eType)
2576 : CPL_WARN_UNUSED_RESULT;
2577 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateString(
2578 : size_t nMaxStringLength) CPL_WARN_UNUSED_RESULT;
2579 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateStringEx(
2580 : size_t nMaxStringLength,
2581 : GDALExtendedDataTypeSubType eSubType) CPL_WARN_UNUSED_RESULT;
2582 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateCompound(
2583 : const char *pszName, size_t nTotalSize, size_t nComponents,
2584 : const GDALEDTComponentH *comps) CPL_WARN_UNUSED_RESULT;
2585 : void CPL_DLL GDALExtendedDataTypeRelease(GDALExtendedDataTypeH hEDT);
2586 : const char CPL_DLL *GDALExtendedDataTypeGetName(GDALExtendedDataTypeH hEDT);
2587 : GDALExtendedDataTypeClass CPL_DLL
2588 : GDALExtendedDataTypeGetClass(GDALExtendedDataTypeH hEDT);
2589 : GDALDataType CPL_DLL
2590 : GDALExtendedDataTypeGetNumericDataType(GDALExtendedDataTypeH hEDT);
2591 : size_t CPL_DLL GDALExtendedDataTypeGetSize(GDALExtendedDataTypeH hEDT);
2592 : size_t CPL_DLL
2593 : GDALExtendedDataTypeGetMaxStringLength(GDALExtendedDataTypeH hEDT);
2594 : GDALEDTComponentH CPL_DLL *
2595 : GDALExtendedDataTypeGetComponents(GDALExtendedDataTypeH hEDT,
2596 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2597 : void CPL_DLL GDALExtendedDataTypeFreeComponents(GDALEDTComponentH *components,
2598 : size_t nCount);
2599 : int CPL_DLL GDALExtendedDataTypeCanConvertTo(GDALExtendedDataTypeH hSourceEDT,
2600 : GDALExtendedDataTypeH hTargetEDT);
2601 : int CPL_DLL GDALExtendedDataTypeEquals(GDALExtendedDataTypeH hFirstEDT,
2602 : GDALExtendedDataTypeH hSecondEDT);
2603 : GDALExtendedDataTypeSubType CPL_DLL
2604 : GDALExtendedDataTypeGetSubType(GDALExtendedDataTypeH hEDT);
2605 : GDALRasterAttributeTableH CPL_DLL
2606 : GDALExtendedDataTypeGetRAT(GDALExtendedDataTypeH hEDT) CPL_WARN_UNUSED_RESULT;
2607 :
2608 : GDALEDTComponentH CPL_DLL
2609 : GDALEDTComponentCreate(const char *pszName, size_t nOffset,
2610 : GDALExtendedDataTypeH hType) CPL_WARN_UNUSED_RESULT;
2611 : void CPL_DLL GDALEDTComponentRelease(GDALEDTComponentH hComp);
2612 : const char CPL_DLL *GDALEDTComponentGetName(GDALEDTComponentH hComp);
2613 : size_t CPL_DLL GDALEDTComponentGetOffset(GDALEDTComponentH hComp);
2614 : GDALExtendedDataTypeH CPL_DLL GDALEDTComponentGetType(GDALEDTComponentH hComp)
2615 : CPL_WARN_UNUSED_RESULT;
2616 :
2617 : GDALGroupH CPL_DLL GDALDatasetGetRootGroup(GDALDatasetH hDS)
2618 : CPL_WARN_UNUSED_RESULT;
2619 : void CPL_DLL GDALGroupRelease(GDALGroupH hGroup);
2620 : const char CPL_DLL *GDALGroupGetName(GDALGroupH hGroup);
2621 : const char CPL_DLL *GDALGroupGetFullName(GDALGroupH hGroup);
2622 : char CPL_DLL **
2623 : GDALGroupGetMDArrayNames(GDALGroupH hGroup,
2624 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2625 : char CPL_DLL **GDALGroupGetMDArrayFullNamesRecursive(
2626 : GDALGroupH hGroup, CSLConstList papszGroupOptions,
2627 : CSLConstList papszArrayOptions) CPL_WARN_UNUSED_RESULT;
2628 : GDALMDArrayH CPL_DLL
2629 : GDALGroupOpenMDArray(GDALGroupH hGroup, const char *pszMDArrayName,
2630 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2631 : GDALMDArrayH CPL_DLL GDALGroupOpenMDArrayFromFullname(
2632 : GDALGroupH hGroup, const char *pszMDArrayName,
2633 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2634 : GDALMDArrayH CPL_DLL GDALGroupResolveMDArray(
2635 : GDALGroupH hGroup, const char *pszName, const char *pszStartingPoint,
2636 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2637 : char CPL_DLL **
2638 : GDALGroupGetGroupNames(GDALGroupH hGroup,
2639 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2640 : GDALGroupH CPL_DLL
2641 : GDALGroupOpenGroup(GDALGroupH hGroup, const char *pszSubGroupName,
2642 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2643 : GDALGroupH CPL_DLL GDALGroupOpenGroupFromFullname(
2644 : GDALGroupH hGroup, const char *pszMDArrayName,
2645 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2646 : char CPL_DLL **
2647 : GDALGroupGetVectorLayerNames(GDALGroupH hGroup,
2648 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2649 : OGRLayerH CPL_DLL
2650 : GDALGroupOpenVectorLayer(GDALGroupH hGroup, const char *pszVectorLayerName,
2651 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2652 : GDALDimensionH CPL_DLL *
2653 : GDALGroupGetDimensions(GDALGroupH hGroup, size_t *pnCount,
2654 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2655 : GDALAttributeH CPL_DLL GDALGroupGetAttribute(
2656 : GDALGroupH hGroup, const char *pszName) CPL_WARN_UNUSED_RESULT;
2657 : GDALAttributeH CPL_DLL *
2658 : GDALGroupGetAttributes(GDALGroupH hGroup, size_t *pnCount,
2659 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2660 : CSLConstList CPL_DLL GDALGroupGetStructuralInfo(GDALGroupH hGroup);
2661 : GDALGroupH CPL_DLL
2662 : GDALGroupCreateGroup(GDALGroupH hGroup, const char *pszSubGroupName,
2663 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2664 : bool CPL_DLL GDALGroupDeleteGroup(GDALGroupH hGroup, const char *pszName,
2665 : CSLConstList papszOptions);
2666 : GDALDimensionH CPL_DLL GDALGroupCreateDimension(
2667 : GDALGroupH hGroup, const char *pszName, const char *pszType,
2668 : const char *pszDirection, GUInt64 nSize,
2669 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2670 : GDALMDArrayH CPL_DLL GDALGroupCreateMDArray(
2671 : GDALGroupH hGroup, const char *pszName, size_t nDimensions,
2672 : GDALDimensionH *pahDimensions, GDALExtendedDataTypeH hEDT,
2673 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2674 : bool CPL_DLL GDALGroupDeleteMDArray(GDALGroupH hGroup, const char *pszName,
2675 : CSLConstList papszOptions);
2676 : GDALAttributeH CPL_DLL GDALGroupCreateAttribute(
2677 : GDALGroupH hGroup, const char *pszName, size_t nDimensions,
2678 : const GUInt64 *panDimensions, GDALExtendedDataTypeH hEDT,
2679 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2680 : bool CPL_DLL GDALGroupDeleteAttribute(GDALGroupH hGroup, const char *pszName,
2681 : CSLConstList papszOptions);
2682 : bool CPL_DLL GDALGroupRename(GDALGroupH hGroup, const char *pszNewName);
2683 : GDALGroupH CPL_DLL GDALGroupSubsetDimensionFromSelection(
2684 : GDALGroupH hGroup, const char *pszSelection, CSLConstList papszOptions);
2685 : size_t CPL_DLL GDALGroupGetDataTypeCount(GDALGroupH hGroup);
2686 : GDALExtendedDataTypeH CPL_DLL GDALGroupGetDataType(GDALGroupH hGroup,
2687 : size_t nIdx);
2688 :
2689 : void CPL_DLL GDALMDArrayRelease(GDALMDArrayH hMDArray);
2690 : const char CPL_DLL *GDALMDArrayGetName(GDALMDArrayH hArray);
2691 : const char CPL_DLL *GDALMDArrayGetFullName(GDALMDArrayH hArray);
2692 : GUInt64 CPL_DLL GDALMDArrayGetTotalElementsCount(GDALMDArrayH hArray);
2693 : size_t CPL_DLL GDALMDArrayGetDimensionCount(GDALMDArrayH hArray);
2694 : GDALDimensionH CPL_DLL *
2695 : GDALMDArrayGetDimensions(GDALMDArrayH hArray,
2696 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2697 : GDALExtendedDataTypeH CPL_DLL GDALMDArrayGetDataType(GDALMDArrayH hArray)
2698 : CPL_WARN_UNUSED_RESULT;
2699 : int CPL_DLL GDALMDArrayRead(GDALMDArrayH hArray, const GUInt64 *arrayStartIdx,
2700 : const size_t *count, const GInt64 *arrayStep,
2701 : const GPtrDiff_t *bufferStride,
2702 : GDALExtendedDataTypeH bufferDatatype,
2703 : void *pDstBuffer, const void *pDstBufferAllocStart,
2704 : size_t nDstBufferllocSize);
2705 : int CPL_DLL GDALMDArrayWrite(GDALMDArrayH hArray, const GUInt64 *arrayStartIdx,
2706 : const size_t *count, const GInt64 *arrayStep,
2707 : const GPtrDiff_t *bufferStride,
2708 : GDALExtendedDataTypeH bufferDatatype,
2709 : const void *pSrcBuffer,
2710 : const void *psrcBufferAllocStart,
2711 : size_t nSrcBufferllocSize);
2712 : int CPL_DLL GDALMDArrayAdviseRead(GDALMDArrayH hArray,
2713 : const GUInt64 *arrayStartIdx,
2714 : const size_t *count);
2715 : int CPL_DLL GDALMDArrayAdviseReadEx(GDALMDArrayH hArray,
2716 : const GUInt64 *arrayStartIdx,
2717 : const size_t *count,
2718 : CSLConstList papszOptions);
2719 : GDALAttributeH CPL_DLL GDALMDArrayGetAttribute(
2720 : GDALMDArrayH hArray, const char *pszName) CPL_WARN_UNUSED_RESULT;
2721 : GDALAttributeH CPL_DLL *
2722 : GDALMDArrayGetAttributes(GDALMDArrayH hArray, size_t *pnCount,
2723 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2724 : GDALAttributeH CPL_DLL GDALMDArrayCreateAttribute(
2725 : GDALMDArrayH hArray, const char *pszName, size_t nDimensions,
2726 : const GUInt64 *panDimensions, GDALExtendedDataTypeH hEDT,
2727 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2728 : bool CPL_DLL GDALMDArrayDeleteAttribute(GDALMDArrayH hArray,
2729 : const char *pszName,
2730 : CSLConstList papszOptions);
2731 : bool CPL_DLL GDALMDArrayResize(GDALMDArrayH hArray,
2732 : const GUInt64 *panNewDimSizes,
2733 : CSLConstList papszOptions);
2734 : const void CPL_DLL *GDALMDArrayGetRawNoDataValue(GDALMDArrayH hArray);
2735 : double CPL_DLL GDALMDArrayGetNoDataValueAsDouble(GDALMDArrayH hArray,
2736 : int *pbHasNoDataValue);
2737 : int64_t CPL_DLL GDALMDArrayGetNoDataValueAsInt64(GDALMDArrayH hArray,
2738 : int *pbHasNoDataValue);
2739 : uint64_t CPL_DLL GDALMDArrayGetNoDataValueAsUInt64(GDALMDArrayH hArray,
2740 : int *pbHasNoDataValue);
2741 : int CPL_DLL GDALMDArraySetRawNoDataValue(GDALMDArrayH hArray, const void *);
2742 : int CPL_DLL GDALMDArraySetNoDataValueAsDouble(GDALMDArrayH hArray,
2743 : double dfNoDataValue);
2744 : int CPL_DLL GDALMDArraySetNoDataValueAsInt64(GDALMDArrayH hArray,
2745 : int64_t nNoDataValue);
2746 : int CPL_DLL GDALMDArraySetNoDataValueAsUInt64(GDALMDArrayH hArray,
2747 : uint64_t nNoDataValue);
2748 : int CPL_DLL GDALMDArraySetScale(GDALMDArrayH hArray, double dfScale);
2749 : int CPL_DLL GDALMDArraySetScaleEx(GDALMDArrayH hArray, double dfScale,
2750 : GDALDataType eStorageType);
2751 : double CPL_DLL GDALMDArrayGetScale(GDALMDArrayH hArray, int *pbHasValue);
2752 : double CPL_DLL GDALMDArrayGetScaleEx(GDALMDArrayH hArray, int *pbHasValue,
2753 : GDALDataType *peStorageType);
2754 : int CPL_DLL GDALMDArraySetOffset(GDALMDArrayH hArray, double dfOffset);
2755 : int CPL_DLL GDALMDArraySetOffsetEx(GDALMDArrayH hArray, double dfOffset,
2756 : GDALDataType eStorageType);
2757 : double CPL_DLL GDALMDArrayGetOffset(GDALMDArrayH hArray, int *pbHasValue);
2758 : double CPL_DLL GDALMDArrayGetOffsetEx(GDALMDArrayH hArray, int *pbHasValue,
2759 : GDALDataType *peStorageType);
2760 : GUInt64 CPL_DLL *GDALMDArrayGetBlockSize(GDALMDArrayH hArray, size_t *pnCount);
2761 : int CPL_DLL GDALMDArraySetUnit(GDALMDArrayH hArray, const char *);
2762 : const char CPL_DLL *GDALMDArrayGetUnit(GDALMDArrayH hArray);
2763 : int CPL_DLL GDALMDArraySetSpatialRef(GDALMDArrayH, OGRSpatialReferenceH);
2764 : OGRSpatialReferenceH CPL_DLL GDALMDArrayGetSpatialRef(GDALMDArrayH hArray);
2765 : size_t CPL_DLL *GDALMDArrayGetProcessingChunkSize(GDALMDArrayH hArray,
2766 : size_t *pnCount,
2767 : size_t nMaxChunkMemory);
2768 : CSLConstList CPL_DLL GDALMDArrayGetStructuralInfo(GDALMDArrayH hArray);
2769 : GDALMDArrayH CPL_DLL GDALMDArrayGetView(GDALMDArrayH hArray,
2770 : const char *pszViewExpr);
2771 : GDALMDArrayH CPL_DLL GDALMDArrayTranspose(GDALMDArrayH hArray,
2772 : size_t nNewAxisCount,
2773 : const int *panMapNewAxisToOldAxis);
2774 : GDALMDArrayH CPL_DLL GDALMDArrayGetUnscaled(GDALMDArrayH hArray);
2775 : GDALMDArrayH CPL_DLL GDALMDArrayGetMask(GDALMDArrayH hArray,
2776 : CSLConstList papszOptions);
2777 : GDALDatasetH CPL_DLL GDALMDArrayAsClassicDataset(GDALMDArrayH hArray,
2778 : size_t iXDim, size_t iYDim);
2779 : GDALDatasetH CPL_DLL GDALMDArrayAsClassicDatasetEx(GDALMDArrayH hArray,
2780 : size_t iXDim, size_t iYDim,
2781 : GDALGroupH hRootGroup,
2782 : CSLConstList papszOptions);
2783 : CPLErr CPL_DLL GDALMDArrayGetStatistics(
2784 : GDALMDArrayH hArray, GDALDatasetH, int bApproxOK, int bForce,
2785 : double *pdfMin, double *pdfMax, double *pdfMean, double *pdfStdDev,
2786 : GUInt64 *pnValidCount, GDALProgressFunc pfnProgress, void *pProgressData);
2787 : int CPL_DLL GDALMDArrayComputeStatistics(GDALMDArrayH hArray, GDALDatasetH,
2788 : int bApproxOK, double *pdfMin,
2789 : double *pdfMax, double *pdfMean,
2790 : double *pdfStdDev,
2791 : GUInt64 *pnValidCount,
2792 : GDALProgressFunc, void *pProgressData);
2793 : int CPL_DLL GDALMDArrayComputeStatisticsEx(
2794 : GDALMDArrayH hArray, GDALDatasetH, int bApproxOK, double *pdfMin,
2795 : double *pdfMax, double *pdfMean, double *pdfStdDev, GUInt64 *pnValidCount,
2796 : GDALProgressFunc, void *pProgressData, CSLConstList papszOptions);
2797 : GDALMDArrayH CPL_DLL GDALMDArrayGetResampled(GDALMDArrayH hArray,
2798 : size_t nNewDimCount,
2799 : const GDALDimensionH *pahNewDims,
2800 : GDALRIOResampleAlg resampleAlg,
2801 : OGRSpatialReferenceH hTargetSRS,
2802 : CSLConstList papszOptions);
2803 : GDALMDArrayH CPL_DLL GDALMDArrayGetGridded(
2804 : GDALMDArrayH hArray, const char *pszGridOptions, GDALMDArrayH hXArray,
2805 : GDALMDArrayH hYArray, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2806 :
2807 : GDALMDArrayH CPL_DLL *
2808 : GDALMDArrayGetCoordinateVariables(GDALMDArrayH hArray,
2809 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2810 :
2811 : GDALMDArrayH CPL_DLL *
2812 : GDALMDArrayGetMeshGrid(const GDALMDArrayH *pahInputArrays,
2813 : size_t nCountInputArrays, size_t *pnCountOutputArrays,
2814 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2815 :
2816 : #ifdef __cplusplus
2817 : extern "C++"
2818 : {
2819 : #endif
2820 :
2821 : /** Information on a raw block of a GDALMDArray
2822 : *
2823 : * @since 3.12
2824 : */
2825 : struct
2826 : #ifdef __cplusplus
2827 : CPL_DLL
2828 : #endif
2829 : GDALMDArrayRawBlockInfo
2830 : {
2831 : /** Filename into which the raw block is found */
2832 : char *pszFilename;
2833 : /** File offset within pszFilename of the start of the raw block */
2834 : uint64_t nOffset;
2835 : /** Size in bytes of the raw block */
2836 : uint64_t nSize;
2837 : /** NULL or Null-terminated list of driver specific information on the
2838 : * raw block */
2839 : char **papszInfo;
2840 : /** In-memory buffer of nSize bytes. When this is set, pszFilename and
2841 : * nOffset are set to NULL.
2842 : *
2843 : * When using C++ copy constructor or copy-assignment operator, if
2844 : * a memory allocation fails, a CPLError() will be emitted and this
2845 : * field will be NULL, but nSize not zero.
2846 : */
2847 : GByte *pabyInlineData;
2848 :
2849 : #ifdef __cplusplus
2850 : /*! @cond Doxygen_Suppress */
2851 23 : inline GDALMDArrayRawBlockInfo()
2852 23 : : pszFilename(nullptr), nOffset(0), nSize(0), papszInfo(nullptr),
2853 23 : pabyInlineData(nullptr)
2854 : {
2855 23 : }
2856 :
2857 : ~GDALMDArrayRawBlockInfo();
2858 :
2859 : void clear();
2860 :
2861 : GDALMDArrayRawBlockInfo(const GDALMDArrayRawBlockInfo &);
2862 : GDALMDArrayRawBlockInfo &operator=(const GDALMDArrayRawBlockInfo &);
2863 : GDALMDArrayRawBlockInfo(GDALMDArrayRawBlockInfo &&);
2864 : GDALMDArrayRawBlockInfo &operator=(GDALMDArrayRawBlockInfo &&);
2865 : /*! @endcond */
2866 : #endif
2867 : };
2868 :
2869 : #ifdef __cplusplus
2870 : }
2871 : #endif
2872 :
2873 : /*! @cond Doxygen_Suppress */
2874 : typedef struct GDALMDArrayRawBlockInfo GDALMDArrayRawBlockInfo;
2875 : /*! @endcond */
2876 :
2877 : GDALMDArrayRawBlockInfo CPL_DLL *GDALMDArrayRawBlockInfoCreate(void);
2878 : void CPL_DLL
2879 : GDALMDArrayRawBlockInfoRelease(GDALMDArrayRawBlockInfo *psBlockInfo);
2880 : bool CPL_DLL GDALMDArrayGetRawBlockInfo(GDALMDArrayH hArray,
2881 : const uint64_t *panBlockCoordinates,
2882 : GDALMDArrayRawBlockInfo *psBlockInfo);
2883 :
2884 : void CPL_DLL GDALReleaseArrays(GDALMDArrayH *arrays, size_t nCount);
2885 : int CPL_DLL GDALMDArrayCache(GDALMDArrayH hArray, CSLConstList papszOptions);
2886 : bool CPL_DLL GDALMDArrayRename(GDALMDArrayH hArray, const char *pszNewName);
2887 :
2888 : GDALRasterAttributeTableH CPL_DLL GDALCreateRasterAttributeTableFromMDArrays(
2889 : GDALRATTableType eTableType, int nArrays, const GDALMDArrayH *ahArrays,
2890 : const GDALRATFieldUsage *paeUsages);
2891 :
2892 : void CPL_DLL GDALAttributeRelease(GDALAttributeH hAttr);
2893 : void CPL_DLL GDALReleaseAttributes(GDALAttributeH *attributes, size_t nCount);
2894 : const char CPL_DLL *GDALAttributeGetName(GDALAttributeH hAttr);
2895 : const char CPL_DLL *GDALAttributeGetFullName(GDALAttributeH hAttr);
2896 : GUInt64 CPL_DLL GDALAttributeGetTotalElementsCount(GDALAttributeH hAttr);
2897 : size_t CPL_DLL GDALAttributeGetDimensionCount(GDALAttributeH hAttr);
2898 : GUInt64 CPL_DLL *
2899 : GDALAttributeGetDimensionsSize(GDALAttributeH hAttr,
2900 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2901 : GDALExtendedDataTypeH CPL_DLL GDALAttributeGetDataType(GDALAttributeH hAttr)
2902 : CPL_WARN_UNUSED_RESULT;
2903 : GByte CPL_DLL *GDALAttributeReadAsRaw(GDALAttributeH hAttr,
2904 : size_t *pnSize) CPL_WARN_UNUSED_RESULT;
2905 : void CPL_DLL GDALAttributeFreeRawResult(GDALAttributeH hAttr, GByte *raw,
2906 : size_t nSize);
2907 : const char CPL_DLL *GDALAttributeReadAsString(GDALAttributeH hAttr);
2908 : int CPL_DLL GDALAttributeReadAsInt(GDALAttributeH hAttr);
2909 : int64_t CPL_DLL GDALAttributeReadAsInt64(GDALAttributeH hAttr);
2910 : double CPL_DLL GDALAttributeReadAsDouble(GDALAttributeH hAttr);
2911 : char CPL_DLL **
2912 : GDALAttributeReadAsStringArray(GDALAttributeH hAttr) CPL_WARN_UNUSED_RESULT;
2913 : int CPL_DLL *GDALAttributeReadAsIntArray(GDALAttributeH hAttr, size_t *pnCount)
2914 : CPL_WARN_UNUSED_RESULT;
2915 : int64_t CPL_DLL *
2916 : GDALAttributeReadAsInt64Array(GDALAttributeH hAttr,
2917 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2918 : double CPL_DLL *
2919 : GDALAttributeReadAsDoubleArray(GDALAttributeH hAttr,
2920 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2921 : int CPL_DLL GDALAttributeWriteRaw(GDALAttributeH hAttr, const void *, size_t);
2922 : int CPL_DLL GDALAttributeWriteString(GDALAttributeH hAttr, const char *);
2923 : int CPL_DLL GDALAttributeWriteStringArray(GDALAttributeH hAttr, CSLConstList);
2924 : int CPL_DLL GDALAttributeWriteInt(GDALAttributeH hAttr, int);
2925 : int CPL_DLL GDALAttributeWriteIntArray(GDALAttributeH hAttr, const int *,
2926 : size_t);
2927 : int CPL_DLL GDALAttributeWriteInt64(GDALAttributeH hAttr, int64_t);
2928 : int CPL_DLL GDALAttributeWriteInt64Array(GDALAttributeH hAttr, const int64_t *,
2929 : size_t);
2930 : int CPL_DLL GDALAttributeWriteDouble(GDALAttributeH hAttr, double);
2931 : int CPL_DLL GDALAttributeWriteDoubleArray(GDALAttributeH hAttr, const double *,
2932 : size_t);
2933 : bool CPL_DLL GDALAttributeRename(GDALAttributeH hAttr, const char *pszNewName);
2934 :
2935 : void CPL_DLL GDALDimensionRelease(GDALDimensionH hDim);
2936 : void CPL_DLL GDALReleaseDimensions(GDALDimensionH *dims, size_t nCount);
2937 : const char CPL_DLL *GDALDimensionGetName(GDALDimensionH hDim);
2938 : const char CPL_DLL *GDALDimensionGetFullName(GDALDimensionH hDim);
2939 : const char CPL_DLL *GDALDimensionGetType(GDALDimensionH hDim);
2940 : const char CPL_DLL *GDALDimensionGetDirection(GDALDimensionH hDim);
2941 : GUInt64 CPL_DLL GDALDimensionGetSize(GDALDimensionH hDim);
2942 : GDALMDArrayH CPL_DLL GDALDimensionGetIndexingVariable(GDALDimensionH hDim)
2943 : CPL_WARN_UNUSED_RESULT;
2944 : int CPL_DLL GDALDimensionSetIndexingVariable(GDALDimensionH hDim,
2945 : GDALMDArrayH hArray);
2946 : bool CPL_DLL GDALDimensionRename(GDALDimensionH hDim, const char *pszNewName);
2947 :
2948 : CPL_C_END
2949 :
2950 : #endif /* ndef GDAL_H_INCLUDED */
|