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 : CSLConstList CPL_DLL CPL_STDCALL GDALGetMetadata(GDALMajorObjectH,
1277 : const char *);
1278 : CPLErr CPL_DLL CPL_STDCALL GDALSetMetadata(GDALMajorObjectH, CSLConstList,
1279 : const char *);
1280 : const char CPL_DLL *CPL_STDCALL GDALGetMetadataItem(GDALMajorObjectH,
1281 : const char *, const char *);
1282 : CPLErr CPL_DLL CPL_STDCALL GDALSetMetadataItem(GDALMajorObjectH, const char *,
1283 : const char *, const char *);
1284 : const char CPL_DLL *CPL_STDCALL GDALGetDescription(GDALMajorObjectH);
1285 : void CPL_DLL CPL_STDCALL GDALSetDescription(GDALMajorObjectH, const char *);
1286 :
1287 : /* ==================================================================== */
1288 : /* GDALDataset class ... normally this represents one file. */
1289 : /* ==================================================================== */
1290 :
1291 : /** Name of driver metadata item for layer creation option list */
1292 : #define GDAL_DS_LAYER_CREATIONOPTIONLIST "DS_LAYER_CREATIONOPTIONLIST"
1293 :
1294 : GDALDriverH CPL_DLL CPL_STDCALL GDALGetDatasetDriver(GDALDatasetH);
1295 : char CPL_DLL **CPL_STDCALL GDALGetFileList(GDALDatasetH);
1296 : void CPL_DLL GDALDatasetMarkSuppressOnClose(GDALDatasetH);
1297 : CPLErr CPL_DLL CPL_STDCALL GDALClose(GDALDatasetH);
1298 : CPLErr CPL_DLL GDALCloseEx(GDALDatasetH hDS, GDALProgressFunc pfnProgress,
1299 : void *pProgressData);
1300 : bool CPL_DLL GDALDatasetGetCloseReportsProgress(GDALDatasetH hDS);
1301 : CPLErr CPL_DLL GDALDatasetRunCloseWithoutDestroying(GDALDatasetH hDS);
1302 : CPLErr CPL_DLL GDALDatasetRunCloseWithoutDestroyingEx(
1303 : GDALDatasetH hDS, GDALProgressFunc pfnProgress, void *pProgressData);
1304 : int CPL_DLL CPL_STDCALL GDALGetRasterXSize(GDALDatasetH);
1305 : int CPL_DLL CPL_STDCALL GDALGetRasterYSize(GDALDatasetH);
1306 : int CPL_DLL CPL_STDCALL GDALGetRasterCount(GDALDatasetH);
1307 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetRasterBand(GDALDatasetH, int);
1308 :
1309 : bool CPL_DLL GDALDatasetIsThreadSafe(GDALDatasetH, int nScopeFlags,
1310 : CSLConstList papszOptions);
1311 : GDALDatasetH CPL_DLL GDALGetThreadSafeDataset(GDALDatasetH, int nScopeFlags,
1312 : CSLConstList papszOptions);
1313 :
1314 : CPLErr CPL_DLL CPL_STDCALL GDALAddBand(GDALDatasetH hDS, GDALDataType eType,
1315 : CSLConstList papszOptions);
1316 :
1317 : GDALAsyncReaderH CPL_DLL CPL_STDCALL GDALBeginAsyncReader(
1318 : GDALDatasetH hDS, int nXOff, int nYOff, int nXSize, int nYSize, void *pBuf,
1319 : int nBufXSize, int nBufYSize, GDALDataType eBufType, int nBandCount,
1320 : int *panBandMap, int nPixelSpace, int nLineSpace, int nBandSpace,
1321 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1322 :
1323 : void CPL_DLL CPL_STDCALL GDALEndAsyncReader(GDALDatasetH hDS,
1324 : GDALAsyncReaderH hAsynchReaderH);
1325 :
1326 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetRasterIO(
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 : int nPixelSpace, int nLineSpace, int nBandSpace) CPL_WARN_UNUSED_RESULT;
1331 :
1332 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetRasterIOEx(
1333 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nDSXOff, int nDSYOff,
1334 : int nDSXSize, int nDSYSize, void *pBuffer, int nBXSize, int nBYSize,
1335 : GDALDataType eBDataType, int nBandCount, const int *panBandCount,
1336 : GSpacing nPixelSpace, GSpacing nLineSpace, GSpacing nBandSpace,
1337 : GDALRasterIOExtraArg *psExtraArg) CPL_WARN_UNUSED_RESULT;
1338 :
1339 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetAdviseRead(
1340 : GDALDatasetH hDS, int nDSXOff, int nDSYOff, int nDSXSize, int nDSYSize,
1341 : int nBXSize, int nBYSize, GDALDataType eBDataType, int nBandCount,
1342 : int *panBandCount, CSLConstList papszOptions);
1343 :
1344 : char CPL_DLL **
1345 : GDALDatasetGetCompressionFormats(GDALDatasetH hDS, int nXOff, int nYOff,
1346 : int nXSize, int nYSize, int nBandCount,
1347 : const int *panBandList) CPL_WARN_UNUSED_RESULT;
1348 : CPLErr CPL_DLL GDALDatasetReadCompressedData(
1349 : GDALDatasetH hDS, const char *pszFormat, int nXOff, int nYOff, int nXSize,
1350 : int nYSize, int nBandCount, const int *panBandList, void **ppBuffer,
1351 : size_t *pnBufferSize, char **ppszDetailedFormat);
1352 :
1353 : const char CPL_DLL *CPL_STDCALL GDALGetProjectionRef(GDALDatasetH);
1354 : OGRSpatialReferenceH CPL_DLL GDALGetSpatialRef(GDALDatasetH);
1355 : CPLErr CPL_DLL CPL_STDCALL GDALSetProjection(GDALDatasetH, const char *);
1356 : CPLErr CPL_DLL GDALSetSpatialRef(GDALDatasetH, OGRSpatialReferenceH);
1357 : CPLErr CPL_DLL CPL_STDCALL GDALGetGeoTransform(GDALDatasetH, double *);
1358 : CPLErr CPL_DLL CPL_STDCALL GDALSetGeoTransform(GDALDatasetH, const double *);
1359 :
1360 : CPLErr CPL_DLL GDALGetExtent(GDALDatasetH, OGREnvelope *,
1361 : OGRSpatialReferenceH hCRS);
1362 : CPLErr CPL_DLL GDALGetExtentWGS84LongLat(GDALDatasetH, OGREnvelope *);
1363 :
1364 : CPLErr CPL_DLL GDALDatasetGeolocationToPixelLine(
1365 : GDALDatasetH, double dfGeolocX, double dfGeolocY, OGRSpatialReferenceH hSRS,
1366 : double *pdfPixel, double *pdfLine, CSLConstList papszTransformerOptions);
1367 :
1368 : CPLErr CPL_DLL GDALDatasetGetInterBandCovarianceMatrix(
1369 : GDALDatasetH hDS, double *padfCovMatrix, size_t nSize, int nBandCount,
1370 : const int *panBandList, bool bApproxOK, bool bForce,
1371 : bool bWriteIntoMetadata, int nDeltaDegreeOfFreedom,
1372 : GDALProgressFunc pfnProgress, void *pProgressData);
1373 :
1374 : CPLErr CPL_DLL GDALDatasetComputeInterBandCovarianceMatrix(
1375 : GDALDatasetH hDS, double *padfCovMatrix, size_t nSize, int nBandCount,
1376 : const int *panBandList, bool bApproxOK, bool bWriteIntoMetadata,
1377 : int nDeltaDegreeOfFreedom, GDALProgressFunc pfnProgress,
1378 : void *pProgressData);
1379 :
1380 : int CPL_DLL CPL_STDCALL GDALGetGCPCount(GDALDatasetH);
1381 : const char CPL_DLL *CPL_STDCALL GDALGetGCPProjection(GDALDatasetH);
1382 : OGRSpatialReferenceH CPL_DLL GDALGetGCPSpatialRef(GDALDatasetH);
1383 : const GDAL_GCP CPL_DLL *CPL_STDCALL GDALGetGCPs(GDALDatasetH);
1384 : CPLErr CPL_DLL CPL_STDCALL GDALSetGCPs(GDALDatasetH, int, const GDAL_GCP *,
1385 : const char *);
1386 : CPLErr CPL_DLL GDALSetGCPs2(GDALDatasetH, int, const GDAL_GCP *,
1387 : OGRSpatialReferenceH);
1388 :
1389 : void CPL_DLL *CPL_STDCALL GDALGetInternalHandle(GDALDatasetH, const char *);
1390 : int CPL_DLL CPL_STDCALL GDALReferenceDataset(GDALDatasetH);
1391 : int CPL_DLL CPL_STDCALL GDALDereferenceDataset(GDALDatasetH);
1392 : int CPL_DLL CPL_STDCALL GDALReleaseDataset(GDALDatasetH);
1393 :
1394 : CPLErr CPL_DLL CPL_STDCALL GDALBuildOverviews(GDALDatasetH, const char *, int,
1395 : const int *, int, const int *,
1396 : GDALProgressFunc,
1397 : void *) CPL_WARN_UNUSED_RESULT;
1398 : CPLErr CPL_DLL CPL_STDCALL GDALBuildOverviewsEx(
1399 : GDALDatasetH, const char *, int, const int *, int, const int *,
1400 : GDALProgressFunc, void *, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1401 : void CPL_DLL CPL_STDCALL GDALGetOpenDatasets(GDALDatasetH **hDS, int *pnCount);
1402 : int CPL_DLL CPL_STDCALL GDALGetAccess(GDALDatasetH hDS);
1403 : CPLErr CPL_DLL CPL_STDCALL GDALFlushCache(GDALDatasetH hDS);
1404 : CPLErr CPL_DLL CPL_STDCALL GDALDropCache(GDALDatasetH hDS);
1405 :
1406 : CPLErr CPL_DLL CPL_STDCALL GDALCreateDatasetMaskBand(GDALDatasetH hDS,
1407 : int nFlags);
1408 :
1409 : CPLErr CPL_DLL CPL_STDCALL GDALDatasetCopyWholeRaster(
1410 : GDALDatasetH hSrcDS, GDALDatasetH hDstDS, CSLConstList papszOptions,
1411 : GDALProgressFunc pfnProgress, void *pProgressData) CPL_WARN_UNUSED_RESULT;
1412 :
1413 : CPLErr CPL_DLL CPL_STDCALL GDALRasterBandCopyWholeRaster(
1414 : GDALRasterBandH hSrcBand, GDALRasterBandH hDstBand,
1415 : const char *const *constpapszOptions, GDALProgressFunc pfnProgress,
1416 : void *pProgressData) CPL_WARN_UNUSED_RESULT;
1417 :
1418 : CPLErr CPL_DLL GDALRegenerateOverviews(GDALRasterBandH hSrcBand,
1419 : int nOverviewCount,
1420 : GDALRasterBandH *pahOverviewBands,
1421 : const char *pszResampling,
1422 : GDALProgressFunc pfnProgress,
1423 : void *pProgressData);
1424 :
1425 : CPLErr CPL_DLL GDALRegenerateOverviewsEx(GDALRasterBandH hSrcBand,
1426 : int nOverviewCount,
1427 : GDALRasterBandH *pahOverviewBands,
1428 : const char *pszResampling,
1429 : GDALProgressFunc pfnProgress,
1430 : void *pProgressData,
1431 : CSLConstList papszOptions);
1432 :
1433 : int CPL_DLL GDALDatasetGetLayerCount(GDALDatasetH);
1434 : OGRLayerH CPL_DLL GDALDatasetGetLayer(GDALDatasetH, int);
1435 :
1436 : /* Defined here to avoid circular dependency with ogr_api.h */
1437 : GDALDatasetH CPL_DLL OGR_L_GetDataset(OGRLayerH hLayer);
1438 :
1439 : OGRLayerH CPL_DLL GDALDatasetGetLayerByName(GDALDatasetH, const char *);
1440 : int CPL_DLL GDALDatasetIsLayerPrivate(GDALDatasetH, int);
1441 : OGRErr CPL_DLL GDALDatasetDeleteLayer(GDALDatasetH, int);
1442 : OGRLayerH CPL_DLL GDALDatasetCreateLayer(GDALDatasetH, const char *,
1443 : OGRSpatialReferenceH,
1444 : OGRwkbGeometryType, CSLConstList);
1445 : OGRLayerH CPL_DLL GDALDatasetCreateLayerFromGeomFieldDefn(GDALDatasetH,
1446 : const char *,
1447 : OGRGeomFieldDefnH,
1448 : CSLConstList);
1449 : OGRLayerH CPL_DLL GDALDatasetCopyLayer(GDALDatasetH, OGRLayerH, const char *,
1450 : CSLConstList);
1451 : void CPL_DLL GDALDatasetResetReading(GDALDatasetH);
1452 : OGRFeatureH CPL_DLL GDALDatasetGetNextFeature(GDALDatasetH hDS,
1453 : OGRLayerH *phBelongingLayer,
1454 : double *pdfProgressPct,
1455 : GDALProgressFunc pfnProgress,
1456 : void *pProgressData);
1457 : int CPL_DLL GDALDatasetTestCapability(GDALDatasetH, const char *);
1458 : OGRLayerH CPL_DLL GDALDatasetExecuteSQL(GDALDatasetH, const char *,
1459 : OGRGeometryH, const char *);
1460 : OGRErr CPL_DLL GDALDatasetAbortSQL(GDALDatasetH);
1461 : void CPL_DLL GDALDatasetReleaseResultSet(GDALDatasetH, OGRLayerH);
1462 : OGRStyleTableH CPL_DLL GDALDatasetGetStyleTable(GDALDatasetH);
1463 : void CPL_DLL GDALDatasetSetStyleTableDirectly(GDALDatasetH, OGRStyleTableH);
1464 : void CPL_DLL GDALDatasetSetStyleTable(GDALDatasetH, OGRStyleTableH);
1465 : OGRErr CPL_DLL GDALDatasetStartTransaction(GDALDatasetH hDS, int bForce);
1466 : OGRErr CPL_DLL GDALDatasetCommitTransaction(GDALDatasetH hDS);
1467 : OGRErr CPL_DLL GDALDatasetRollbackTransaction(GDALDatasetH hDS);
1468 : void CPL_DLL GDALDatasetClearStatistics(GDALDatasetH hDS);
1469 :
1470 : GDALMDArrayH CPL_DLL GDALDatasetAsMDArray(
1471 : GDALDatasetH hDS, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
1472 :
1473 : char CPL_DLL **GDALDatasetGetFieldDomainNames(GDALDatasetH, CSLConstList)
1474 : CPL_WARN_UNUSED_RESULT;
1475 : OGRFieldDomainH CPL_DLL GDALDatasetGetFieldDomain(GDALDatasetH hDS,
1476 : const char *pszName);
1477 : bool CPL_DLL GDALDatasetAddFieldDomain(GDALDatasetH hDS,
1478 : OGRFieldDomainH hFieldDomain,
1479 : char **ppszFailureReason);
1480 : bool CPL_DLL GDALDatasetDeleteFieldDomain(GDALDatasetH hDS, const char *pszName,
1481 : char **ppszFailureReason);
1482 : bool CPL_DLL GDALDatasetUpdateFieldDomain(GDALDatasetH hDS,
1483 : OGRFieldDomainH hFieldDomain,
1484 : char **ppszFailureReason);
1485 :
1486 : char CPL_DLL **GDALDatasetGetRelationshipNames(GDALDatasetH, CSLConstList)
1487 : CPL_WARN_UNUSED_RESULT;
1488 : GDALRelationshipH CPL_DLL GDALDatasetGetRelationship(GDALDatasetH hDS,
1489 : const char *pszName);
1490 :
1491 : bool CPL_DLL GDALDatasetAddRelationship(GDALDatasetH hDS,
1492 : GDALRelationshipH hRelationship,
1493 : char **ppszFailureReason);
1494 : bool CPL_DLL GDALDatasetDeleteRelationship(GDALDatasetH hDS,
1495 : const char *pszName,
1496 : char **ppszFailureReason);
1497 : bool CPL_DLL GDALDatasetUpdateRelationship(GDALDatasetH hDS,
1498 : GDALRelationshipH hRelationship,
1499 : char **ppszFailureReason);
1500 :
1501 : /** Type of functions to pass to GDALDatasetSetQueryLoggerFunc
1502 : * @since GDAL 3.7 */
1503 : typedef void (*GDALQueryLoggerFunc)(const char *pszSQL, const char *pszError,
1504 : int64_t lNumRecords,
1505 : int64_t lExecutionTimeMilliseconds,
1506 : void *pQueryLoggerArg);
1507 :
1508 : /**
1509 : * Sets the SQL query logger callback.
1510 : *
1511 : * When supported by the driver, the callback will be called with
1512 : * the executed SQL text, the error message, the execution time in milliseconds,
1513 : * the number of records fetched/affected and the client status data.
1514 : *
1515 : * A value of -1 in the execution time or in the number of records indicates
1516 : * that the values are unknown.
1517 : *
1518 : * @param hDS Dataset handle.
1519 : * @param pfnQueryLoggerFunc Callback function
1520 : * @param poQueryLoggerArg Opaque client status data
1521 : * @return true in case of success.
1522 : * @since GDAL 3.7
1523 : */
1524 : bool CPL_DLL GDALDatasetSetQueryLoggerFunc(
1525 : GDALDatasetH hDS, GDALQueryLoggerFunc pfnQueryLoggerFunc,
1526 : void *poQueryLoggerArg);
1527 :
1528 : /* ==================================================================== */
1529 : /* Informational utilities about subdatasets in file names */
1530 : /* ==================================================================== */
1531 :
1532 : /**
1533 : * @brief Returns a new GDALSubdatasetInfo object with methods to extract
1534 : * and manipulate subdataset information.
1535 : * If the pszFileName argument is not recognized by any driver as
1536 : * a subdataset descriptor, NULL is returned.
1537 : * The returned object must be freed with GDALDestroySubdatasetInfo().
1538 : * @param pszFileName File name with subdataset information
1539 : * @note This method does not check if the subdataset actually exists.
1540 : * @return Opaque pointer to a GDALSubdatasetInfo object or NULL if no drivers accepted the file name.
1541 : * @since GDAL 3.8
1542 : */
1543 : GDALSubdatasetInfoH CPL_DLL GDALGetSubdatasetInfo(const char *pszFileName);
1544 :
1545 : /**
1546 : * @brief Returns the file path component of a
1547 : * subdataset descriptor effectively stripping the information about the subdataset
1548 : * and returning the "parent" dataset descriptor.
1549 : * The returned string must be freed with CPLFree().
1550 : * @param hInfo Pointer to GDALSubdatasetInfo object
1551 : * @note This method does not check if the subdataset actually exists.
1552 : * @return The original string with the subdataset information removed.
1553 : * @since GDAL 3.8
1554 : */
1555 : char CPL_DLL *GDALSubdatasetInfoGetPathComponent(GDALSubdatasetInfoH hInfo);
1556 :
1557 : /**
1558 : * @brief Returns the subdataset component of a subdataset descriptor descriptor.
1559 : * The returned string must be freed with CPLFree().
1560 : * @param hInfo Pointer to GDALSubdatasetInfo object
1561 : * @note This method does not check if the subdataset actually exists.
1562 : * @return The subdataset name.
1563 : * @since GDAL 3.8
1564 : */
1565 : char CPL_DLL *
1566 : GDALSubdatasetInfoGetSubdatasetComponent(GDALSubdatasetInfoH hInfo);
1567 :
1568 : /**
1569 : * @brief Replaces the path component of a subdataset descriptor.
1570 : * The returned string must be freed with CPLFree().
1571 : * @param hInfo Pointer to GDALSubdatasetInfo object
1572 : * @param pszNewPath New path.
1573 : * @note This method does not check if the subdataset actually exists.
1574 : * @return The original subdataset descriptor with the old path component replaced by newPath.
1575 : * @since GDAL 3.8
1576 : */
1577 : char CPL_DLL *GDALSubdatasetInfoModifyPathComponent(GDALSubdatasetInfoH hInfo,
1578 : const char *pszNewPath);
1579 :
1580 : /**
1581 : * @brief Destroys a GDALSubdatasetInfo object.
1582 : * @param hInfo Pointer to GDALSubdatasetInfo object
1583 : * @since GDAL 3.8
1584 : */
1585 : void CPL_DLL GDALDestroySubdatasetInfo(GDALSubdatasetInfoH hInfo);
1586 :
1587 : /* ==================================================================== */
1588 : /* GDALRasterBand ... one band/channel in a dataset. */
1589 : /* ==================================================================== */
1590 :
1591 : /* Note: the only user of SRCVAL() is alg/gdal_simplesurf.cpp */
1592 :
1593 : /* clang-format off */
1594 : /**
1595 : * SRCVAL - Macro which may be used by pixel functions to obtain
1596 : * a pixel from a source buffer.
1597 : */
1598 : #define SRCVAL(papoSource, eSrcType, ii) \
1599 : (eSrcType == GDT_UInt8 ? CPL_REINTERPRET_CAST(const GByte *, papoSource)[ii] : \
1600 : eSrcType == GDT_Int8 ? CPL_REINTERPRET_CAST(const GInt8 *, papoSource)[ii] : \
1601 : eSrcType == GDT_UInt16 ? CPL_REINTERPRET_CAST(const GUInt16 *, papoSource)[ii] : \
1602 : eSrcType == GDT_Int16 ? CPL_REINTERPRET_CAST(const GInt16 *, papoSource)[ii] : \
1603 : eSrcType == GDT_UInt32 ? CPL_REINTERPRET_CAST(const GUInt32 *, papoSource)[ii] : \
1604 : eSrcType == GDT_Int32 ? CPL_REINTERPRET_CAST(const GInt32 *, papoSource)[ii] : \
1605 : eSrcType == GDT_UInt64 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const GUInt64 *, papoSource)[ii]) : \
1606 : eSrcType == GDT_Int64 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const GUInt64 *, papoSource)[ii]) : \
1607 : eSrcType == GDT_Float32 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const float *, papoSource)[ii]) : \
1608 : eSrcType == GDT_Float64 ? CPL_REINTERPRET_CAST(const double *, papoSource)[ii] : \
1609 : eSrcType == GDT_CInt16 ? CPL_REINTERPRET_CAST(const GInt16 *, papoSource)[(ii)*2] : \
1610 : eSrcType == GDT_CInt32 ? CPL_REINTERPRET_CAST(const GInt32 *, papoSource)[(ii)*2] : \
1611 : eSrcType == GDT_CFloat32 ? CPL_STATIC_CAST(double, CPL_REINTERPRET_CAST(const float *, papoSource)[ii*2]) : \
1612 : eSrcType == GDT_CFloat64 ? CPL_REINTERPRET_CAST(const double *, papoSource)[ii*2] : \
1613 : 0)
1614 :
1615 : /* clang-format on */
1616 :
1617 : /** Type of functions to pass to GDALAddDerivedBandPixelFunc.
1618 : */
1619 : typedef CPLErr (*GDALDerivedPixelFunc)(void **papoSources, int nSources,
1620 : void *pData, int nBufXSize,
1621 : int nBufYSize, GDALDataType eSrcType,
1622 : GDALDataType eBufType, int nPixelSpace,
1623 : int nLineSpace);
1624 :
1625 : /** Type of functions to pass to GDALAddDerivedBandPixelFuncWithArgs.
1626 : * @since GDAL 3.4 */
1627 : typedef CPLErr (*GDALDerivedPixelFuncWithArgs)(
1628 : void **papoSources, int nSources, void *pData, int nBufXSize, int nBufYSize,
1629 : GDALDataType eSrcType, GDALDataType eBufType, int nPixelSpace,
1630 : int nLineSpace, CSLConstList papszFunctionArgs);
1631 :
1632 : GDALDataType CPL_DLL CPL_STDCALL GDALGetRasterDataType(GDALRasterBandH);
1633 : void CPL_DLL CPL_STDCALL GDALGetBlockSize(GDALRasterBandH, int *pnXSize,
1634 : int *pnYSize);
1635 :
1636 : CPLErr CPL_DLL CPL_STDCALL GDALGetActualBlockSize(GDALRasterBandH,
1637 : int nXBlockOff,
1638 : int nYBlockOff, int *pnXValid,
1639 : int *pnYValid);
1640 :
1641 : CPLErr CPL_DLL CPL_STDCALL GDALRasterAdviseRead(GDALRasterBandH hRB,
1642 : int nDSXOff, int nDSYOff,
1643 : int nDSXSize, int nDSYSize,
1644 : int nBXSize, int nBYSize,
1645 : GDALDataType eBDataType,
1646 : CSLConstList papszOptions);
1647 :
1648 : CPLErr CPL_DLL CPL_STDCALL GDALRasterIO(GDALRasterBandH hRBand,
1649 : GDALRWFlag eRWFlag, int nDSXOff,
1650 : int nDSYOff, int nDSXSize, int nDSYSize,
1651 : void *pBuffer, int nBXSize, int nBYSize,
1652 : GDALDataType eBDataType,
1653 : int nPixelSpace,
1654 : int nLineSpace) CPL_WARN_UNUSED_RESULT;
1655 : CPLErr CPL_DLL CPL_STDCALL GDALRasterIOEx(
1656 : GDALRasterBandH hRBand, GDALRWFlag eRWFlag, int nDSXOff, int nDSYOff,
1657 : int nDSXSize, int nDSYSize, void *pBuffer, int nBXSize, int nBYSize,
1658 : GDALDataType eBDataType, GSpacing nPixelSpace, GSpacing nLineSpace,
1659 : GDALRasterIOExtraArg *psExtraArg) CPL_WARN_UNUSED_RESULT;
1660 : CPLErr CPL_DLL CPL_STDCALL GDALReadBlock(GDALRasterBandH, int, int,
1661 : void *) CPL_WARN_UNUSED_RESULT;
1662 : CPLErr CPL_DLL CPL_STDCALL GDALWriteBlock(GDALRasterBandH, int, int,
1663 : void *) CPL_WARN_UNUSED_RESULT;
1664 : int CPL_DLL CPL_STDCALL GDALGetRasterBandXSize(GDALRasterBandH);
1665 : int CPL_DLL CPL_STDCALL GDALGetRasterBandYSize(GDALRasterBandH);
1666 : GDALAccess CPL_DLL CPL_STDCALL GDALGetRasterAccess(GDALRasterBandH);
1667 : int CPL_DLL CPL_STDCALL GDALGetBandNumber(GDALRasterBandH);
1668 : GDALDatasetH CPL_DLL CPL_STDCALL GDALGetBandDataset(GDALRasterBandH);
1669 :
1670 : GDALColorInterp
1671 : CPL_DLL CPL_STDCALL GDALGetRasterColorInterpretation(GDALRasterBandH);
1672 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterColorInterpretation(GDALRasterBandH,
1673 : GDALColorInterp);
1674 : GDALColorTableH CPL_DLL CPL_STDCALL GDALGetRasterColorTable(GDALRasterBandH);
1675 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterColorTable(GDALRasterBandH,
1676 : GDALColorTableH);
1677 : int CPL_DLL CPL_STDCALL GDALHasArbitraryOverviews(GDALRasterBandH);
1678 : int CPL_DLL CPL_STDCALL GDALGetOverviewCount(GDALRasterBandH);
1679 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetOverview(GDALRasterBandH, int);
1680 : double CPL_DLL CPL_STDCALL GDALGetRasterNoDataValue(GDALRasterBandH, int *);
1681 : int64_t CPL_DLL CPL_STDCALL GDALGetRasterNoDataValueAsInt64(GDALRasterBandH,
1682 : int *);
1683 : uint64_t CPL_DLL CPL_STDCALL GDALGetRasterNoDataValueAsUInt64(GDALRasterBandH,
1684 : int *);
1685 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValue(GDALRasterBandH, double);
1686 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValueAsInt64(GDALRasterBandH,
1687 : int64_t);
1688 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterNoDataValueAsUInt64(GDALRasterBandH,
1689 : uint64_t);
1690 : CPLErr CPL_DLL CPL_STDCALL GDALDeleteRasterNoDataValue(GDALRasterBandH);
1691 : char CPL_DLL **CPL_STDCALL GDALGetRasterCategoryNames(GDALRasterBandH);
1692 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterCategoryNames(GDALRasterBandH,
1693 : CSLConstList);
1694 : double CPL_DLL CPL_STDCALL GDALGetRasterMinimum(GDALRasterBandH,
1695 : int *pbSuccess);
1696 : double CPL_DLL CPL_STDCALL GDALGetRasterMaximum(GDALRasterBandH,
1697 : int *pbSuccess);
1698 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterStatistics(
1699 : GDALRasterBandH, int bApproxOK, int bForce, double *pdfMin, double *pdfMax,
1700 : double *pdfMean, double *pdfStdDev);
1701 : CPLErr CPL_DLL CPL_STDCALL
1702 : GDALComputeRasterStatistics(GDALRasterBandH, int bApproxOK, double *pdfMin,
1703 : double *pdfMax, double *pdfMean, double *pdfStdDev,
1704 : GDALProgressFunc pfnProgress, void *pProgressData);
1705 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterStatistics(GDALRasterBandH hBand,
1706 : double dfMin, double dfMax,
1707 : double dfMean,
1708 : double dfStdDev);
1709 :
1710 : GDALMDArrayH
1711 : CPL_DLL GDALRasterBandAsMDArray(GDALRasterBandH) CPL_WARN_UNUSED_RESULT;
1712 :
1713 : const char CPL_DLL *CPL_STDCALL GDALGetRasterUnitType(GDALRasterBandH);
1714 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterUnitType(GDALRasterBandH hBand,
1715 : const char *pszNewValue);
1716 : double CPL_DLL CPL_STDCALL GDALGetRasterOffset(GDALRasterBandH, int *pbSuccess);
1717 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterOffset(GDALRasterBandH hBand,
1718 : double dfNewOffset);
1719 : double CPL_DLL CPL_STDCALL GDALGetRasterScale(GDALRasterBandH, int *pbSuccess);
1720 : CPLErr CPL_DLL CPL_STDCALL GDALSetRasterScale(GDALRasterBandH hBand,
1721 : double dfNewOffset);
1722 : CPLErr CPL_DLL CPL_STDCALL GDALComputeRasterMinMax(GDALRasterBandH hBand,
1723 : int bApproxOK,
1724 : double adfMinMax[2]);
1725 : CPLErr CPL_DLL GDALComputeRasterMinMaxLocation(GDALRasterBandH hBand,
1726 : double *pdfMin, double *pdfMax,
1727 : int *pnMinX, int *pnMinY,
1728 : int *pnMaxX, int *pnMaxY);
1729 : CPLErr CPL_DLL CPL_STDCALL GDALFlushRasterCache(GDALRasterBandH hBand);
1730 : CPLErr CPL_DLL CPL_STDCALL GDALDropRasterCache(GDALRasterBandH hBand);
1731 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterHistogram(
1732 : GDALRasterBandH hBand, double dfMin, double dfMax, int nBuckets,
1733 : int *panHistogram, int bIncludeOutOfRange, int bApproxOK,
1734 : GDALProgressFunc pfnProgress, void *pProgressData)
1735 : /*! @cond Doxygen_Suppress */
1736 : CPL_WARN_DEPRECATED("Use GDALGetRasterHistogramEx() instead")
1737 : /*! @endcond */
1738 : ;
1739 : CPLErr CPL_DLL CPL_STDCALL GDALGetRasterHistogramEx(
1740 : GDALRasterBandH hBand, double dfMin, double dfMax, int nBuckets,
1741 : GUIntBig *panHistogram, int bIncludeOutOfRange, int bApproxOK,
1742 : GDALProgressFunc pfnProgress, void *pProgressData);
1743 : CPLErr CPL_DLL CPL_STDCALL
1744 : GDALGetDefaultHistogram(GDALRasterBandH hBand, double *pdfMin, double *pdfMax,
1745 : int *pnBuckets, int **ppanHistogram, int bForce,
1746 : GDALProgressFunc pfnProgress, void *pProgressData)
1747 : /*! @cond Doxygen_Suppress */
1748 : CPL_WARN_DEPRECATED("Use GDALGetDefaultHistogramEx() instead")
1749 : /*! @endcond */
1750 : ;
1751 : CPLErr CPL_DLL CPL_STDCALL
1752 : GDALGetDefaultHistogramEx(GDALRasterBandH hBand, double *pdfMin, double *pdfMax,
1753 : int *pnBuckets, GUIntBig **ppanHistogram, int bForce,
1754 : GDALProgressFunc pfnProgress, void *pProgressData);
1755 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultHistogram(GDALRasterBandH hBand,
1756 : double dfMin, double dfMax,
1757 : int nBuckets,
1758 : int *panHistogram)
1759 : /*! @cond Doxygen_Suppress */
1760 : CPL_WARN_DEPRECATED("Use GDALSetDefaultHistogramEx() instead")
1761 : /*! @endcond */
1762 : ;
1763 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultHistogramEx(GDALRasterBandH hBand,
1764 : double dfMin, double dfMax,
1765 : int nBuckets,
1766 : GUIntBig *panHistogram);
1767 : int CPL_DLL CPL_STDCALL GDALGetRandomRasterSample(GDALRasterBandH, int,
1768 : float *);
1769 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetRasterSampleOverview(GDALRasterBandH,
1770 : int);
1771 : GDALRasterBandH CPL_DLL CPL_STDCALL
1772 : GDALGetRasterSampleOverviewEx(GDALRasterBandH, GUIntBig);
1773 : CPLErr CPL_DLL CPL_STDCALL GDALFillRaster(GDALRasterBandH hBand,
1774 : double dfRealValue,
1775 : double dfImaginaryValue);
1776 : CPLErr CPL_DLL CPL_STDCALL GDALComputeBandStats(
1777 : GDALRasterBandH hBand, int nSampleStep, double *pdfMean, double *pdfStdDev,
1778 : GDALProgressFunc pfnProgress, void *pProgressData);
1779 : CPLErr CPL_DLL GDALOverviewMagnitudeCorrection(GDALRasterBandH hBaseBand,
1780 : int nOverviewCount,
1781 : GDALRasterBandH *pahOverviews,
1782 : GDALProgressFunc pfnProgress,
1783 : void *pProgressData);
1784 :
1785 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
1786 : GDALGetDefaultRAT(GDALRasterBandH hBand);
1787 : CPLErr CPL_DLL CPL_STDCALL GDALSetDefaultRAT(GDALRasterBandH,
1788 : GDALRasterAttributeTableH);
1789 : CPLErr CPL_DLL CPL_STDCALL GDALAddDerivedBandPixelFunc(
1790 : const char *pszName, GDALDerivedPixelFunc pfnPixelFunc);
1791 : CPLErr CPL_DLL CPL_STDCALL GDALAddDerivedBandPixelFuncWithArgs(
1792 : const char *pszName, GDALDerivedPixelFuncWithArgs pfnPixelFunc,
1793 : const char *pszMetadata);
1794 :
1795 : CPLErr CPL_DLL GDALRasterInterpolateAtPoint(GDALRasterBandH hBand,
1796 : double dfPixel, double dfLine,
1797 : GDALRIOResampleAlg eInterpolation,
1798 : double *pdfRealValue,
1799 : double *pdfImagValue);
1800 :
1801 : CPLErr CPL_DLL GDALRasterInterpolateAtGeolocation(
1802 : GDALRasterBandH hBand, double dfGeolocX, double dfGeolocY,
1803 : OGRSpatialReferenceH hSRS, GDALRIOResampleAlg eInterpolation,
1804 : double *pdfRealValue, double *pdfImagValue,
1805 : CSLConstList papszTransformerOptions);
1806 :
1807 : /** Generic pointer for the working structure of VRTProcessedDataset
1808 : * function. */
1809 : typedef void *VRTPDWorkingDataPtr;
1810 :
1811 : /** Initialization function to pass to GDALVRTRegisterProcessedDatasetFunc.
1812 : *
1813 : * This initialization function is called for each step of a VRTProcessedDataset
1814 : * that uses the related algorithm.
1815 : * The initialization function returns the output data type, output band count
1816 : * and potentially initializes a working structure, typically parsing arguments.
1817 : *
1818 : * @param pszFuncName Function name. Must be unique and not null.
1819 : * @param pUserData User data. May be nullptr. Must remain valid during the
1820 : * lifetime of GDAL.
1821 : * @param papszFunctionArgs Function arguments as a list of key=value pairs.
1822 : * @param nInBands Number of input bands.
1823 : * @param eInDT Input data type.
1824 : * @param[in,out] padfInNoData Array of nInBands values for the input nodata
1825 : * value. The init function may also override them.
1826 : * @param[in,out] pnOutBands Pointer whose value must be set to the number of
1827 : * output bands. This will be set to 0 by the caller
1828 : * when calling the function, unless this is the
1829 : * final step, in which case it will be initialized
1830 : * with the number of expected output bands.
1831 : * @param[out] peOutDT Pointer whose value must be set to the output
1832 : * data type.
1833 : * @param[in,out] ppadfOutNoData Pointer to an array of *pnOutBands values
1834 : * for the output nodata value that the
1835 : * function must set.
1836 : * For non-final steps, *ppadfOutNoData
1837 : * will be nullptr and it is the responsibility
1838 : * of the function to CPLMalloc()'ate it.
1839 : * If this is the final step, it will be
1840 : * already allocated and initialized with the
1841 : * expected nodata values from the output
1842 : * dataset (if the init function need to
1843 : * reallocate it, it must use CPLRealloc())
1844 : * @param pszVRTPath Directory of the VRT
1845 : * @param[out] ppWorkingData Pointer whose value must be set to a working
1846 : * structure, or nullptr.
1847 : * @return CE_None in case of success, error otherwise.
1848 : * @since GDAL 3.9 */
1849 : typedef CPLErr (*GDALVRTProcessedDatasetFuncInit)(
1850 : const char *pszFuncName, void *pUserData, CSLConstList papszFunctionArgs,
1851 : int nInBands, GDALDataType eInDT, double *padfInNoData, int *pnOutBands,
1852 : GDALDataType *peOutDT, double **ppadfOutNoData, const char *pszVRTPath,
1853 : VRTPDWorkingDataPtr *ppWorkingData);
1854 :
1855 : /** Free function to pass to GDALVRTRegisterProcessedDatasetFunc.
1856 : *
1857 : * @param pszFuncName Function name. Must be unique and not null.
1858 : * @param pUserData User data. May be nullptr. Must remain valid during the
1859 : * lifetime of GDAL.
1860 : * @param pWorkingData Value of the *ppWorkingData output parameter of
1861 : * GDALVRTProcessedDatasetFuncInit.
1862 : * @since GDAL 3.9
1863 : */
1864 : typedef void (*GDALVRTProcessedDatasetFuncFree)(
1865 : const char *pszFuncName, void *pUserData, VRTPDWorkingDataPtr pWorkingData);
1866 :
1867 : /** Processing function to pass to GDALVRTRegisterProcessedDatasetFunc.
1868 : * @param pszFuncName Function name. Must be unique and not null.
1869 : * @param pUserData User data. May be nullptr. Must remain valid during the
1870 : * lifetime of GDAL.
1871 : * @param pWorkingData Value of the *ppWorkingData output parameter of
1872 : * GDALVRTProcessedDatasetFuncInit.
1873 : * @param papszFunctionArgs Function arguments as a list of key=value pairs.
1874 : * @param nBufXSize Width in pixels of pInBuffer and pOutBuffer
1875 : * @param nBufYSize Height in pixels of pInBuffer and pOutBuffer
1876 : * @param pInBuffer Input buffer. It is pixel-interleaved
1877 : * (i.e. R00,G00,B00,R01,G01,B01, etc.)
1878 : * @param nInBufferSize Size in bytes of pInBuffer
1879 : * @param eInDT Data type of pInBuffer
1880 : * @param nInBands Number of bands in pInBuffer.
1881 : * @param padfInNoData Input nodata values.
1882 : * @param pOutBuffer Output buffer. It is pixel-interleaved
1883 : * (i.e. R00,G00,B00,R01,G01,B01, etc.)
1884 : * @param nOutBufferSize Size in bytes of pOutBuffer
1885 : * @param eOutDT Data type of pOutBuffer
1886 : * @param nOutBands Number of bands in pOutBuffer.
1887 : * @param padfOutNoData Input nodata values.
1888 : * @param dfSrcXOff Source X coordinate in pixel of the top-left of the region
1889 : * @param dfSrcYOff Source Y coordinate in pixel of the top-left of the region
1890 : * @param dfSrcXSize Width in pixels of the region
1891 : * @param dfSrcYSize Height in pixels of the region
1892 : * @param adfSrcGT Source geotransform
1893 : * @param pszVRTPath Directory of the VRT
1894 : * @param papszExtra Extra arguments (unused for now)
1895 : * @since GDAL 3.9
1896 : */
1897 : typedef CPLErr (*GDALVRTProcessedDatasetFuncProcess)(
1898 : const char *pszFuncName, void *pUserData, VRTPDWorkingDataPtr pWorkingData,
1899 : CSLConstList papszFunctionArgs, int nBufXSize, int nBufYSize,
1900 : const void *pInBuffer, size_t nInBufferSize, GDALDataType eInDT,
1901 : int nInBands, const double *padfInNoData, void *pOutBuffer,
1902 : size_t nOutBufferSize, GDALDataType eOutDT, int nOutBands,
1903 : const double *padfOutNoData, double dfSrcXOff, double dfSrcYOff,
1904 : double dfSrcXSize, double dfSrcYSize, const double adfSrcGT[/*6*/],
1905 : const char *pszVRTPath, CSLConstList papszExtra);
1906 :
1907 : CPLErr CPL_DLL GDALVRTRegisterProcessedDatasetFunc(
1908 : const char *pszFuncName, void *pUserData, const char *pszXMLMetadata,
1909 : GDALDataType eRequestedInputDT, const GDALDataType *paeSupportedInputDT,
1910 : size_t nSupportedInputDTSize, const int *panSupportedInputBandCount,
1911 : size_t nSupportedInputBandCountSize,
1912 : GDALVRTProcessedDatasetFuncInit pfnInit,
1913 : GDALVRTProcessedDatasetFuncFree pfnFree,
1914 : GDALVRTProcessedDatasetFuncProcess pfnProcess, CSLConstList papszOptions);
1915 :
1916 : GDALRasterBandH CPL_DLL CPL_STDCALL GDALGetMaskBand(GDALRasterBandH hBand);
1917 : int CPL_DLL CPL_STDCALL GDALGetMaskFlags(GDALRasterBandH hBand);
1918 : CPLErr CPL_DLL CPL_STDCALL GDALCreateMaskBand(GDALRasterBandH hBand,
1919 : int nFlags);
1920 : bool CPL_DLL GDALIsMaskBand(GDALRasterBandH hBand);
1921 :
1922 : /** Flag returned by GDALGetMaskFlags() to indicate that all pixels are valid */
1923 : #define GMF_ALL_VALID 0x01
1924 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1925 : * valid for all bands */
1926 : #define GMF_PER_DATASET 0x02
1927 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1928 : * an alpha band */
1929 : #define GMF_ALPHA 0x04
1930 : /** Flag returned by GDALGetMaskFlags() to indicate that the mask band is
1931 : * computed from nodata values */
1932 : #define GMF_NODATA 0x08
1933 :
1934 : /** Flag returned by GDALGetDataCoverageStatus() when the driver does not
1935 : * implement GetDataCoverageStatus(). This flag should be returned together
1936 : * with GDAL_DATA_COVERAGE_STATUS_DATA */
1937 : #define GDAL_DATA_COVERAGE_STATUS_UNIMPLEMENTED 0x01
1938 :
1939 : /** Flag returned by GDALGetDataCoverageStatus() when there is (potentially)
1940 : * data in the queried window. Can be combined with the binary or operator
1941 : * with GDAL_DATA_COVERAGE_STATUS_UNIMPLEMENTED or
1942 : * GDAL_DATA_COVERAGE_STATUS_EMPTY */
1943 : #define GDAL_DATA_COVERAGE_STATUS_DATA 0x02
1944 :
1945 : /** Flag returned by GDALGetDataCoverageStatus() when there is nodata in the
1946 : * queried window. This is typically identified by the concept of missing block
1947 : * in formats that supports it.
1948 : * Can be combined with the binary or operator with
1949 : * GDAL_DATA_COVERAGE_STATUS_DATA */
1950 : #define GDAL_DATA_COVERAGE_STATUS_EMPTY 0x04
1951 :
1952 : int CPL_DLL CPL_STDCALL GDALGetDataCoverageStatus(GDALRasterBandH hBand,
1953 : int nXOff, int nYOff,
1954 : int nXSize, int nYSize,
1955 : int nMaskFlagStop,
1956 : double *pdfDataPct);
1957 :
1958 : void CPL_DLL GDALComputedRasterBandRelease(GDALComputedRasterBandH hBand);
1959 :
1960 : /** Raster algebra unary operation */
1961 : typedef enum
1962 : {
1963 : /** Logical not */
1964 : GRAUO_LOGICAL_NOT,
1965 : /** Absolute value (module for complex data type) */
1966 : GRAUO_ABS,
1967 : /** Square root */
1968 : GRAUO_SQRT,
1969 : /** Natural logarithm (``ln``) */
1970 : GRAUO_LOG,
1971 : /** Logarithm base 10 */
1972 : GRAUO_LOG10,
1973 : } GDALRasterAlgebraUnaryOperation;
1974 :
1975 : GDALComputedRasterBandH CPL_DLL GDALRasterBandUnaryOp(
1976 : GDALRasterBandH hBand,
1977 : GDALRasterAlgebraUnaryOperation eOp) CPL_WARN_UNUSED_RESULT;
1978 :
1979 : /** Raster algebra binary operation */
1980 : typedef enum
1981 : {
1982 : /** Addition */
1983 : GRABO_ADD,
1984 : /** Subtraction */
1985 : GRABO_SUB,
1986 : /** Multiplication */
1987 : GRABO_MUL,
1988 : /** Division */
1989 : GRABO_DIV,
1990 : /** Power */
1991 : GRABO_POW,
1992 : /** Strictly greater than test*/
1993 : GRABO_GT,
1994 : /** Greater or equal to test */
1995 : GRABO_GE,
1996 : /** Strictly lesser than test */
1997 : GRABO_LT,
1998 : /** Lesser or equal to test */
1999 : GRABO_LE,
2000 : /** Equality test */
2001 : GRABO_EQ,
2002 : /** Non-equality test */
2003 : GRABO_NE,
2004 : /** Logical and */
2005 : GRABO_LOGICAL_AND,
2006 : /** Logical or */
2007 : GRABO_LOGICAL_OR
2008 : } GDALRasterAlgebraBinaryOperation;
2009 :
2010 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpBand(
2011 : GDALRasterBandH hBand, GDALRasterAlgebraBinaryOperation eOp,
2012 : GDALRasterBandH hOtherBand) CPL_WARN_UNUSED_RESULT;
2013 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpDouble(
2014 : GDALRasterBandH hBand, GDALRasterAlgebraBinaryOperation eOp,
2015 : double constant) CPL_WARN_UNUSED_RESULT;
2016 : GDALComputedRasterBandH CPL_DLL GDALRasterBandBinaryOpDoubleToBand(
2017 : double constant, GDALRasterAlgebraBinaryOperation eOp,
2018 : GDALRasterBandH hBand) CPL_WARN_UNUSED_RESULT;
2019 :
2020 : GDALComputedRasterBandH CPL_DLL
2021 : GDALRasterBandIfThenElse(GDALRasterBandH hCondBand, GDALRasterBandH hThenBand,
2022 : GDALRasterBandH hElseBand) CPL_WARN_UNUSED_RESULT;
2023 :
2024 : GDALComputedRasterBandH CPL_DLL GDALRasterBandAsDataType(
2025 : GDALRasterBandH hBand, GDALDataType eDT) CPL_WARN_UNUSED_RESULT;
2026 :
2027 : GDALComputedRasterBandH CPL_DLL GDALMaximumOfNBands(
2028 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2029 : GDALComputedRasterBandH CPL_DLL GDALRasterBandMaxConstant(
2030 : GDALRasterBandH hBand, double dfConstant) CPL_WARN_UNUSED_RESULT;
2031 : GDALComputedRasterBandH CPL_DLL GDALMinimumOfNBands(
2032 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2033 : GDALComputedRasterBandH CPL_DLL GDALRasterBandMinConstant(
2034 : GDALRasterBandH hBand, double dfConstant) CPL_WARN_UNUSED_RESULT;
2035 : GDALComputedRasterBandH CPL_DLL GDALMeanOfNBands(
2036 : size_t nBandCount, GDALRasterBandH *pahBands) CPL_WARN_UNUSED_RESULT;
2037 :
2038 : /* ==================================================================== */
2039 : /* GDALAsyncReader */
2040 : /* ==================================================================== */
2041 :
2042 : GDALAsyncStatusType CPL_DLL CPL_STDCALL GDALARGetNextUpdatedRegion(
2043 : GDALAsyncReaderH hARIO, double dfTimeout, int *pnXBufOff, int *pnYBufOff,
2044 : int *pnXBufSize, int *pnYBufSize);
2045 : int CPL_DLL CPL_STDCALL GDALARLockBuffer(GDALAsyncReaderH hARIO,
2046 : double dfTimeout);
2047 : void CPL_DLL CPL_STDCALL GDALARUnlockBuffer(GDALAsyncReaderH hARIO);
2048 :
2049 : /* -------------------------------------------------------------------- */
2050 : /* Helper functions. */
2051 : /* -------------------------------------------------------------------- */
2052 : int CPL_DLL CPL_STDCALL GDALGeneralCmdLineProcessor(int nArgc,
2053 : char ***ppapszArgv,
2054 : int nOptions);
2055 : void CPL_DLL CPL_STDCALL GDALSwapWords(void *pData, int nWordSize,
2056 : int nWordCount, int nWordSkip);
2057 : void CPL_DLL CPL_STDCALL GDALSwapWordsEx(void *pData, int nWordSize,
2058 : size_t nWordCount, int nWordSkip);
2059 :
2060 : void CPL_DLL CPL_STDCALL GDALCopyWords(const void *CPL_RESTRICT pSrcData,
2061 : GDALDataType eSrcType,
2062 : int nSrcPixelOffset,
2063 : void *CPL_RESTRICT pDstData,
2064 : GDALDataType eDstType,
2065 : int nDstPixelOffset, int nWordCount);
2066 :
2067 : void CPL_DLL CPL_STDCALL GDALCopyWords64(
2068 : const void *CPL_RESTRICT pSrcData, GDALDataType eSrcType,
2069 : int nSrcPixelOffset, void *CPL_RESTRICT pDstData, GDALDataType eDstType,
2070 : int nDstPixelOffset, GPtrDiff_t nWordCount);
2071 :
2072 : void CPL_DLL GDALCopyBits(const GByte *pabySrcData, int nSrcOffset,
2073 : int nSrcStep, GByte *pabyDstData, int nDstOffset,
2074 : int nDstStep, int nBitCount, int nStepCount);
2075 :
2076 : void CPL_DLL GDALDeinterleave(const void *pSourceBuffer, GDALDataType eSourceDT,
2077 : int nComponents, void **ppDestBuffer,
2078 : GDALDataType eDestDT, size_t nIters);
2079 :
2080 : void CPL_DLL GDALTranspose2D(const void *pSrc, GDALDataType eSrcType,
2081 : void *pDst, GDALDataType eDstType,
2082 : size_t nSrcWidth, size_t nSrcHeight);
2083 :
2084 : double CPL_DLL GDALGetNoDataReplacementValue(GDALDataType, double);
2085 :
2086 : int CPL_DLL CPL_STDCALL GDALLoadWorldFile(const char *, double *);
2087 : int CPL_DLL CPL_STDCALL GDALReadWorldFile(const char *, const char *, double *);
2088 : int CPL_DLL CPL_STDCALL GDALWriteWorldFile(const char *, const char *,
2089 : double *);
2090 : int CPL_DLL CPL_STDCALL GDALLoadTabFile(const char *, double *, char **, int *,
2091 : GDAL_GCP **);
2092 : int CPL_DLL CPL_STDCALL GDALReadTabFile(const char *, double *, char **, int *,
2093 : GDAL_GCP **);
2094 : int CPL_DLL CPL_STDCALL GDALLoadOziMapFile(const char *, double *, char **,
2095 : int *, GDAL_GCP **);
2096 : int CPL_DLL CPL_STDCALL GDALReadOziMapFile(const char *, double *, char **,
2097 : int *, GDAL_GCP **);
2098 :
2099 : const char CPL_DLL *CPL_STDCALL GDALDecToDMS(double, const char *, int);
2100 : double CPL_DLL CPL_STDCALL GDALPackedDMSToDec(double);
2101 : double CPL_DLL CPL_STDCALL GDALDecToPackedDMS(double);
2102 :
2103 : /* Note to developers : please keep this section in sync with ogr_core.h */
2104 :
2105 : #ifndef GDAL_VERSION_INFO_DEFINED
2106 : #ifndef DOXYGEN_SKIP
2107 : #define GDAL_VERSION_INFO_DEFINED
2108 : #endif
2109 : const char CPL_DLL *CPL_STDCALL GDALVersionInfo(const char *);
2110 : #endif
2111 :
2112 : #ifndef GDAL_CHECK_VERSION
2113 :
2114 : int CPL_DLL CPL_STDCALL GDALCheckVersion(int nVersionMajor, int nVersionMinor,
2115 : const char *pszCallingComponentName);
2116 :
2117 : /** Helper macro for GDALCheckVersion()
2118 : @see GDALCheckVersion()
2119 : */
2120 : #define GDAL_CHECK_VERSION(pszCallingComponentName) \
2121 : GDALCheckVersion(GDAL_VERSION_MAJOR, GDAL_VERSION_MINOR, \
2122 : pszCallingComponentName)
2123 :
2124 : #endif
2125 :
2126 : /*! @cond Doxygen_Suppress */
2127 : #ifdef GDAL_COMPILATION
2128 : #define GDALExtractRPCInfoV1 GDALExtractRPCInfo
2129 : #else
2130 : #define GDALRPCInfo GDALRPCInfoV2
2131 : #define GDALExtractRPCInfo GDALExtractRPCInfoV2
2132 : #endif
2133 :
2134 : /* Deprecated: use GDALRPCInfoV2 */
2135 : typedef struct
2136 : {
2137 : double dfLINE_OFF; /*!< Line offset */
2138 : double dfSAMP_OFF; /*!< Sample/Pixel offset */
2139 : double dfLAT_OFF; /*!< Latitude offset */
2140 : double dfLONG_OFF; /*!< Longitude offset */
2141 : double dfHEIGHT_OFF; /*!< Height offset */
2142 :
2143 : double dfLINE_SCALE; /*!< Line scale */
2144 : double dfSAMP_SCALE; /*!< Sample/Pixel scale */
2145 : double dfLAT_SCALE; /*!< Latitude scale */
2146 : double dfLONG_SCALE; /*!< Longitude scale */
2147 : double dfHEIGHT_SCALE; /*!< Height scale */
2148 :
2149 : double adfLINE_NUM_COEFF[20]; /*!< Line Numerator Coefficients */
2150 : double adfLINE_DEN_COEFF[20]; /*!< Line Denominator Coefficients */
2151 : double adfSAMP_NUM_COEFF[20]; /*!< Sample/Pixel Numerator Coefficients */
2152 : double adfSAMP_DEN_COEFF[20]; /*!< Sample/Pixel Denominator Coefficients */
2153 :
2154 : double dfMIN_LONG; /*!< Minimum longitude */
2155 : double dfMIN_LAT; /*!< Minimum latitude */
2156 : double dfMAX_LONG; /*!< Maximum longitude */
2157 : double dfMAX_LAT; /*!< Maximum latitude */
2158 : } GDALRPCInfoV1;
2159 :
2160 : /*! @endcond */
2161 :
2162 : /** Structure to store Rational Polynomial Coefficients / Rigorous Projection
2163 : * Model. See http://geotiff.maptools.org/rpc_prop.html */
2164 : typedef struct
2165 : {
2166 : double dfLINE_OFF; /*!< Line offset */
2167 : double dfSAMP_OFF; /*!< Sample/Pixel offset */
2168 : double dfLAT_OFF; /*!< Latitude offset */
2169 : double dfLONG_OFF; /*!< Longitude offset */
2170 : double dfHEIGHT_OFF; /*!< Height offset */
2171 :
2172 : double dfLINE_SCALE; /*!< Line scale */
2173 : double dfSAMP_SCALE; /*!< Sample/Pixel scale */
2174 : double dfLAT_SCALE; /*!< Latitude scale */
2175 : double dfLONG_SCALE; /*!< Longitude scale */
2176 : double dfHEIGHT_SCALE; /*!< Height scale */
2177 :
2178 : double adfLINE_NUM_COEFF[20]; /*!< Line Numerator Coefficients */
2179 : double adfLINE_DEN_COEFF[20]; /*!< Line Denominator Coefficients */
2180 : double adfSAMP_NUM_COEFF[20]; /*!< Sample/Pixel Numerator Coefficients */
2181 : double adfSAMP_DEN_COEFF[20]; /*!< Sample/Pixel Denominator Coefficients */
2182 :
2183 : double dfMIN_LONG; /*!< Minimum longitude */
2184 : double dfMIN_LAT; /*!< Minimum latitude */
2185 : double dfMAX_LONG; /*!< Maximum longitude */
2186 : double dfMAX_LAT; /*!< Maximum latitude */
2187 :
2188 : /* Those fields should be at the end. And all above fields should be the
2189 : * same as in GDALRPCInfoV1 */
2190 : double dfERR_BIAS; /*!< Bias error */
2191 : double dfERR_RAND; /*!< Random error */
2192 : } GDALRPCInfoV2;
2193 :
2194 : /*! @cond Doxygen_Suppress */
2195 : int CPL_DLL CPL_STDCALL GDALExtractRPCInfoV1(CSLConstList, GDALRPCInfoV1 *);
2196 : /*! @endcond */
2197 : int CPL_DLL CPL_STDCALL GDALExtractRPCInfoV2(CSLConstList, GDALRPCInfoV2 *);
2198 :
2199 : /* ==================================================================== */
2200 : /* Color tables. */
2201 : /* ==================================================================== */
2202 :
2203 : /** Color tuple */
2204 : typedef struct
2205 : {
2206 : /*! gray, red, cyan or hue */
2207 : short c1;
2208 :
2209 : /*! green, magenta, or lightness */
2210 : short c2;
2211 :
2212 : /*! blue, yellow, or saturation */
2213 : short c3;
2214 :
2215 : /*! alpha or blackband */
2216 : short c4;
2217 : } GDALColorEntry;
2218 :
2219 : GDALColorTableH CPL_DLL CPL_STDCALL GDALCreateColorTable(GDALPaletteInterp)
2220 : CPL_WARN_UNUSED_RESULT;
2221 : void CPL_DLL CPL_STDCALL GDALDestroyColorTable(GDALColorTableH);
2222 : GDALColorTableH CPL_DLL CPL_STDCALL GDALCloneColorTable(GDALColorTableH);
2223 : GDALPaletteInterp
2224 : CPL_DLL CPL_STDCALL GDALGetPaletteInterpretation(GDALColorTableH);
2225 : int CPL_DLL CPL_STDCALL GDALGetColorEntryCount(GDALColorTableH);
2226 : const GDALColorEntry CPL_DLL *CPL_STDCALL GDALGetColorEntry(GDALColorTableH,
2227 : int);
2228 : int CPL_DLL CPL_STDCALL GDALGetColorEntryAsRGB(GDALColorTableH, int,
2229 : GDALColorEntry *);
2230 : void CPL_DLL CPL_STDCALL GDALSetColorEntry(GDALColorTableH, int,
2231 : const GDALColorEntry *);
2232 : void CPL_DLL CPL_STDCALL GDALCreateColorRamp(GDALColorTableH hTable,
2233 : int nStartIndex,
2234 : const GDALColorEntry *psStartColor,
2235 : int nEndIndex,
2236 : const GDALColorEntry *psEndColor);
2237 :
2238 : /* ==================================================================== */
2239 : /* Raster Attribute Table */
2240 : /* ==================================================================== */
2241 :
2242 : /** Field type of raster attribute table */
2243 : typedef enum
2244 : {
2245 : /*! Integer field */ GFT_Integer,
2246 : /*! Floating point (double) field */ GFT_Real,
2247 : /*! String field */ GFT_String,
2248 : /*! Boolean field (GDAL >= 3.12) */ GFT_Boolean,
2249 : /*! DateTime field (GDAL >= 3.12) */ GFT_DateTime,
2250 : /*! Geometry field, as WKB (GDAL >= 3.12) */ GFT_WKBGeometry
2251 : } GDALRATFieldType;
2252 :
2253 : /** First invalid value for the GDALRATFieldType enumeration */
2254 : #define GFT_MaxCount (GFT_WKBGeometry + 1)
2255 :
2256 : /** Field usage of raster attribute table */
2257 : typedef enum
2258 : {
2259 : /*! General purpose field. */ GFU_Generic = 0,
2260 : /*! Histogram pixel count */ GFU_PixelCount = 1,
2261 : /*! Class name */ GFU_Name = 2,
2262 : /*! Class range minimum */ GFU_Min = 3,
2263 : /*! Class range maximum */ GFU_Max = 4,
2264 : /*! Class value (min=max) */ GFU_MinMax = 5,
2265 : /*! Red class color (0-255) */ GFU_Red = 6,
2266 : /*! Green class color (0-255) */ GFU_Green = 7,
2267 : /*! Blue class color (0-255) */ GFU_Blue = 8,
2268 : /*! Alpha (0=transparent,255=opaque)*/ GFU_Alpha = 9,
2269 : /*! Color Range Red Minimum */ GFU_RedMin = 10,
2270 : /*! Color Range Green Minimum */ GFU_GreenMin = 11,
2271 : /*! Color Range Blue Minimum */ GFU_BlueMin = 12,
2272 : /*! Color Range Alpha Minimum */ GFU_AlphaMin = 13,
2273 : /*! Color Range Red Maximum */ GFU_RedMax = 14,
2274 : /*! Color Range Green Maximum */ GFU_GreenMax = 15,
2275 : /*! Color Range Blue Maximum */ GFU_BlueMax = 16,
2276 : /*! Color Range Alpha Maximum */ GFU_AlphaMax = 17,
2277 : /*! Maximum GFU value (equals to GFU_AlphaMax+1 currently) */ GFU_MaxCount
2278 : } GDALRATFieldUsage;
2279 :
2280 : /** RAT table type (thematic or athematic)
2281 : */
2282 : typedef enum
2283 : {
2284 : /*! Thematic table type */ GRTT_THEMATIC,
2285 : /*! Athematic table type */ GRTT_ATHEMATIC
2286 : } GDALRATTableType;
2287 :
2288 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
2289 : GDALCreateRasterAttributeTable(void) CPL_WARN_UNUSED_RESULT;
2290 :
2291 : void CPL_DLL CPL_STDCALL
2292 : GDALDestroyRasterAttributeTable(GDALRasterAttributeTableH);
2293 :
2294 : int CPL_DLL CPL_STDCALL GDALRATGetColumnCount(GDALRasterAttributeTableH);
2295 :
2296 : const char CPL_DLL *CPL_STDCALL GDALRATGetNameOfCol(GDALRasterAttributeTableH,
2297 : int);
2298 : GDALRATFieldUsage CPL_DLL CPL_STDCALL
2299 : GDALRATGetUsageOfCol(GDALRasterAttributeTableH, int);
2300 : GDALRATFieldType CPL_DLL CPL_STDCALL
2301 : GDALRATGetTypeOfCol(GDALRasterAttributeTableH, int);
2302 :
2303 : const char CPL_DLL *GDALGetRATFieldTypeName(GDALRATFieldType);
2304 : const char CPL_DLL *GDALGetRATFieldUsageName(GDALRATFieldUsage);
2305 :
2306 : int CPL_DLL CPL_STDCALL GDALRATGetColOfUsage(GDALRasterAttributeTableH,
2307 : GDALRATFieldUsage);
2308 : int CPL_DLL CPL_STDCALL GDALRATGetRowCount(GDALRasterAttributeTableH);
2309 :
2310 : const char CPL_DLL *CPL_STDCALL
2311 : GDALRATGetValueAsString(GDALRasterAttributeTableH, int iRow, int iField);
2312 : int CPL_DLL CPL_STDCALL GDALRATGetValueAsInt(GDALRasterAttributeTableH,
2313 : int iRow, int iField);
2314 : double CPL_DLL CPL_STDCALL GDALRATGetValueAsDouble(GDALRasterAttributeTableH,
2315 : int iRow, int iField);
2316 : bool CPL_DLL GDALRATGetValueAsBoolean(GDALRasterAttributeTableH, int iRow,
2317 : int iField);
2318 :
2319 : #ifdef __cplusplus
2320 : extern "C++"
2321 : {
2322 : #endif
2323 :
2324 : /** Structure encoding a DateTime field for a GDAL Raster Attribute Table.
2325 : *
2326 : * @since 3.12
2327 : */
2328 : struct GDALRATDateTime
2329 : {
2330 : /*! Year */ int nYear;
2331 : /*! Month [1, 12] */ int nMonth;
2332 : /*! Day [1, 31] */ int nDay;
2333 : /*! Hour [0, 23] */ int nHour;
2334 : /*! Minute [0, 59] */ int nMinute;
2335 : /*! Second [0, 61) */ float fSecond;
2336 : /*! Time zone hour [0, 23] */ int nTimeZoneHour;
2337 : /*! Time zone minute: 0, 15, 30, 45 */ int nTimeZoneMinute;
2338 : /*! Whether time zone is positive (or null) */ bool bPositiveTimeZone;
2339 : /*! Whether this object is valid */ bool bIsValid;
2340 :
2341 : #ifdef __cplusplus
2342 137 : GDALRATDateTime()
2343 137 : : nYear(0), nMonth(0), nDay(0), nHour(0), nMinute(0), fSecond(0),
2344 : nTimeZoneHour(0), nTimeZoneMinute(0), bPositiveTimeZone(false),
2345 137 : bIsValid(false)
2346 : {
2347 69 : }
2348 : #endif
2349 : };
2350 :
2351 : #ifdef __cplusplus
2352 : }
2353 : #endif
2354 :
2355 : /*! @cond Doxygen_Suppress */
2356 : typedef struct GDALRATDateTime GDALRATDateTime;
2357 : /*! @endcond */
2358 :
2359 : CPLErr CPL_DLL GDALRATGetValueAsDateTime(GDALRasterAttributeTableH, int iRow,
2360 : int iField,
2361 : GDALRATDateTime *psDateTime);
2362 : const GByte CPL_DLL *GDALRATGetValueAsWKBGeometry(GDALRasterAttributeTableH,
2363 : int iRow, int iField,
2364 : size_t *pnWKBSize);
2365 :
2366 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsString(GDALRasterAttributeTableH,
2367 : int iRow, int iField,
2368 : const char *);
2369 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsInt(GDALRasterAttributeTableH,
2370 : int iRow, int iField, int);
2371 : void CPL_DLL CPL_STDCALL GDALRATSetValueAsDouble(GDALRasterAttributeTableH,
2372 : int iRow, int iField, double);
2373 : CPLErr CPL_DLL GDALRATSetValueAsBoolean(GDALRasterAttributeTableH, int iRow,
2374 : int iField, bool);
2375 : CPLErr CPL_DLL GDALRATSetValueAsDateTime(GDALRasterAttributeTableH, int iRow,
2376 : int iField,
2377 : const GDALRATDateTime *psDateTime);
2378 : CPLErr CPL_DLL GDALRATSetValueAsWKBGeometry(GDALRasterAttributeTableH, int iRow,
2379 : int iField, const void *pabyWKB,
2380 : size_t nWKBSize);
2381 :
2382 : int CPL_DLL CPL_STDCALL
2383 : GDALRATChangesAreWrittenToFile(GDALRasterAttributeTableH hRAT);
2384 :
2385 : CPLErr CPL_DLL CPL_STDCALL GDALRATValuesIOAsDouble(
2386 : GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag, int iField,
2387 : int iStartRow, int iLength, double *pdfData);
2388 : CPLErr CPL_DLL CPL_STDCALL
2389 : GDALRATValuesIOAsInteger(GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag,
2390 : int iField, int iStartRow, int iLength, int *pnData);
2391 : CPLErr CPL_DLL CPL_STDCALL GDALRATValuesIOAsString(
2392 : GDALRasterAttributeTableH hRAT, GDALRWFlag eRWFlag, int iField,
2393 : int iStartRow, int iLength, char **papszStrList);
2394 : CPLErr CPL_DLL GDALRATValuesIOAsBoolean(GDALRasterAttributeTableH hRAT,
2395 : GDALRWFlag eRWFlag, int iField,
2396 : int iStartRow, int iLength,
2397 : bool *pbData);
2398 : CPLErr CPL_DLL GDALRATValuesIOAsDateTime(GDALRasterAttributeTableH hRAT,
2399 : GDALRWFlag eRWFlag, int iField,
2400 : int iStartRow, int iLength,
2401 : GDALRATDateTime *pasDateTime);
2402 : CPLErr CPL_DLL GDALRATValuesIOAsWKBGeometry(GDALRasterAttributeTableH hRAT,
2403 : GDALRWFlag eRWFlag, int iField,
2404 : int iStartRow, int iLength,
2405 : GByte **ppabyWKB,
2406 : size_t *pnWKBSize);
2407 :
2408 : void CPL_DLL CPL_STDCALL GDALRATSetRowCount(GDALRasterAttributeTableH, int);
2409 : CPLErr CPL_DLL CPL_STDCALL GDALRATCreateColumn(GDALRasterAttributeTableH,
2410 : const char *, GDALRATFieldType,
2411 : GDALRATFieldUsage);
2412 : CPLErr CPL_DLL CPL_STDCALL GDALRATSetLinearBinning(GDALRasterAttributeTableH,
2413 : double, double);
2414 : int CPL_DLL CPL_STDCALL GDALRATGetLinearBinning(GDALRasterAttributeTableH,
2415 : double *, double *);
2416 : CPLErr CPL_DLL CPL_STDCALL GDALRATSetTableType(
2417 : GDALRasterAttributeTableH hRAT, const GDALRATTableType eInTableType);
2418 : GDALRATTableType CPL_DLL CPL_STDCALL
2419 : GDALRATGetTableType(GDALRasterAttributeTableH hRAT);
2420 : CPLErr CPL_DLL CPL_STDCALL
2421 : GDALRATInitializeFromColorTable(GDALRasterAttributeTableH, GDALColorTableH);
2422 : GDALColorTableH CPL_DLL CPL_STDCALL
2423 : GDALRATTranslateToColorTable(GDALRasterAttributeTableH, int nEntryCount);
2424 : void CPL_DLL CPL_STDCALL GDALRATDumpReadable(GDALRasterAttributeTableH, FILE *);
2425 : GDALRasterAttributeTableH CPL_DLL CPL_STDCALL
2426 : GDALRATClone(const GDALRasterAttributeTableH);
2427 :
2428 : void CPL_DLL *CPL_STDCALL GDALRATSerializeJSON(GDALRasterAttributeTableH)
2429 : CPL_WARN_UNUSED_RESULT;
2430 :
2431 : int CPL_DLL CPL_STDCALL GDALRATGetRowOfValue(GDALRasterAttributeTableH, double);
2432 : void CPL_DLL CPL_STDCALL GDALRATRemoveStatistics(GDALRasterAttributeTableH);
2433 :
2434 : /* -------------------------------------------------------------------- */
2435 : /* Relationships */
2436 : /* -------------------------------------------------------------------- */
2437 :
2438 : /** Cardinality of relationship.
2439 : *
2440 : * @since GDAL 3.6
2441 : */
2442 : typedef enum
2443 : {
2444 : /** One-to-one */
2445 : GRC_ONE_TO_ONE,
2446 : /** One-to-many */
2447 : GRC_ONE_TO_MANY,
2448 : /** Many-to-one */
2449 : GRC_MANY_TO_ONE,
2450 : /** Many-to-many */
2451 : GRC_MANY_TO_MANY,
2452 : } GDALRelationshipCardinality;
2453 :
2454 : /** Type of relationship.
2455 : *
2456 : * @since GDAL 3.6
2457 : */
2458 : typedef enum
2459 : {
2460 : /** Composite relationship */
2461 : GRT_COMPOSITE,
2462 : /** Association relationship */
2463 : GRT_ASSOCIATION,
2464 : /** Aggregation relationship */
2465 : GRT_AGGREGATION,
2466 : } GDALRelationshipType;
2467 :
2468 : GDALRelationshipH CPL_DLL GDALRelationshipCreate(const char *, const char *,
2469 : const char *,
2470 : GDALRelationshipCardinality);
2471 : void CPL_DLL CPL_STDCALL GDALDestroyRelationship(GDALRelationshipH);
2472 : const char CPL_DLL *GDALRelationshipGetName(GDALRelationshipH);
2473 : GDALRelationshipCardinality
2474 : CPL_DLL GDALRelationshipGetCardinality(GDALRelationshipH);
2475 : const char CPL_DLL *GDALRelationshipGetLeftTableName(GDALRelationshipH);
2476 : const char CPL_DLL *GDALRelationshipGetRightTableName(GDALRelationshipH);
2477 : const char CPL_DLL *GDALRelationshipGetMappingTableName(GDALRelationshipH);
2478 : void CPL_DLL GDALRelationshipSetMappingTableName(GDALRelationshipH,
2479 : const char *);
2480 : char CPL_DLL **GDALRelationshipGetLeftTableFields(GDALRelationshipH);
2481 : char CPL_DLL **GDALRelationshipGetRightTableFields(GDALRelationshipH);
2482 : void CPL_DLL GDALRelationshipSetLeftTableFields(GDALRelationshipH,
2483 : CSLConstList);
2484 : void CPL_DLL GDALRelationshipSetRightTableFields(GDALRelationshipH,
2485 : CSLConstList);
2486 : char CPL_DLL **GDALRelationshipGetLeftMappingTableFields(GDALRelationshipH);
2487 : char CPL_DLL **GDALRelationshipGetRightMappingTableFields(GDALRelationshipH);
2488 : void CPL_DLL GDALRelationshipSetLeftMappingTableFields(GDALRelationshipH,
2489 : CSLConstList);
2490 : void CPL_DLL GDALRelationshipSetRightMappingTableFields(GDALRelationshipH,
2491 : CSLConstList);
2492 : GDALRelationshipType CPL_DLL GDALRelationshipGetType(GDALRelationshipH);
2493 : void CPL_DLL GDALRelationshipSetType(GDALRelationshipH, GDALRelationshipType);
2494 : const char CPL_DLL *GDALRelationshipGetForwardPathLabel(GDALRelationshipH);
2495 : void CPL_DLL GDALRelationshipSetForwardPathLabel(GDALRelationshipH,
2496 : const char *);
2497 : const char CPL_DLL *GDALRelationshipGetBackwardPathLabel(GDALRelationshipH);
2498 : void CPL_DLL GDALRelationshipSetBackwardPathLabel(GDALRelationshipH,
2499 : const char *);
2500 : const char CPL_DLL *GDALRelationshipGetRelatedTableType(GDALRelationshipH);
2501 : void CPL_DLL GDALRelationshipSetRelatedTableType(GDALRelationshipH,
2502 : const char *);
2503 :
2504 : /* ==================================================================== */
2505 : /* GDAL Cache Management */
2506 : /* ==================================================================== */
2507 :
2508 : void CPL_DLL CPL_STDCALL GDALSetCacheMax(int nBytes);
2509 : int CPL_DLL CPL_STDCALL GDALGetCacheMax(void);
2510 : int CPL_DLL CPL_STDCALL GDALGetCacheUsed(void);
2511 : void CPL_DLL CPL_STDCALL GDALSetCacheMax64(GIntBig nBytes);
2512 : GIntBig CPL_DLL CPL_STDCALL GDALGetCacheMax64(void);
2513 : GIntBig CPL_DLL CPL_STDCALL GDALGetCacheUsed64(void);
2514 :
2515 : int CPL_DLL CPL_STDCALL GDALFlushCacheBlock(void);
2516 :
2517 : /* ==================================================================== */
2518 : /* GDAL virtual memory */
2519 : /* ==================================================================== */
2520 :
2521 : CPLVirtualMem CPL_DLL *GDALDatasetGetVirtualMem(
2522 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2523 : int nYSize, int nBufXSize, int nBufYSize, GDALDataType eBufType,
2524 : int nBandCount, int *panBandMap, int nPixelSpace, GIntBig nLineSpace,
2525 : GIntBig nBandSpace, size_t nCacheSize, size_t nPageSizeHint,
2526 : int bSingleThreadUsage, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2527 :
2528 : CPLVirtualMem CPL_DLL *GDALRasterBandGetVirtualMem(
2529 : GDALRasterBandH hBand, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2530 : int nYSize, int nBufXSize, int nBufYSize, GDALDataType eBufType,
2531 : int nPixelSpace, GIntBig nLineSpace, size_t nCacheSize,
2532 : size_t nPageSizeHint, int bSingleThreadUsage,
2533 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2534 :
2535 : CPLVirtualMem CPL_DLL *
2536 : GDALGetVirtualMemAuto(GDALRasterBandH hBand, GDALRWFlag eRWFlag,
2537 : int *pnPixelSpace, GIntBig *pnLineSpace,
2538 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2539 :
2540 : /**! Enumeration to describe the tile organization */
2541 : typedef enum
2542 : {
2543 : /*! Tile Interleaved by Pixel: tile (0,0) with internal band interleaved by
2544 : pixel organization, tile (1, 0), ... */
2545 : GTO_TIP,
2546 : /*! Band Interleaved by Tile : tile (0,0) of first band, tile (0,0) of
2547 : second band, ... tile (1,0) of first band, tile (1,0) of second band, ...
2548 : */
2549 : GTO_BIT,
2550 : /*! Band SeQuential : all the tiles of first band, all the tiles of
2551 : following band... */
2552 : GTO_BSQ
2553 : } GDALTileOrganization;
2554 :
2555 : CPLVirtualMem CPL_DLL *GDALDatasetGetTiledVirtualMem(
2556 : GDALDatasetH hDS, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2557 : int nYSize, int nTileXSize, int nTileYSize, GDALDataType eBufType,
2558 : int nBandCount, int *panBandMap, GDALTileOrganization eTileOrganization,
2559 : size_t nCacheSize, int bSingleThreadUsage,
2560 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2561 :
2562 : CPLVirtualMem CPL_DLL *GDALRasterBandGetTiledVirtualMem(
2563 : GDALRasterBandH hBand, GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize,
2564 : int nYSize, int nTileXSize, int nTileYSize, GDALDataType eBufType,
2565 : size_t nCacheSize, int bSingleThreadUsage,
2566 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2567 :
2568 : /* ==================================================================== */
2569 : /* VRTPansharpenedDataset class. */
2570 : /* ==================================================================== */
2571 :
2572 : GDALDatasetH CPL_DLL GDALCreatePansharpenedVRT(
2573 : const char *pszXML, GDALRasterBandH hPanchroBand, int nInputSpectralBands,
2574 : GDALRasterBandH *pahInputSpectralBands) CPL_WARN_UNUSED_RESULT;
2575 :
2576 : /* =================================================================== */
2577 : /* Misc API */
2578 : /* ==================================================================== */
2579 :
2580 : CPLXMLNode CPL_DLL *
2581 : GDALGetJPEG2000Structure(const char *pszFilename,
2582 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2583 :
2584 : /* ==================================================================== */
2585 : /* Multidimensional API_api */
2586 : /* ==================================================================== */
2587 :
2588 : GDALDatasetH CPL_DLL
2589 : GDALCreateMultiDimensional(GDALDriverH hDriver, const char *pszName,
2590 : CSLConstList papszRootGroupOptions,
2591 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2592 :
2593 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreate(GDALDataType eType)
2594 : CPL_WARN_UNUSED_RESULT;
2595 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateString(
2596 : size_t nMaxStringLength) CPL_WARN_UNUSED_RESULT;
2597 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateStringEx(
2598 : size_t nMaxStringLength,
2599 : GDALExtendedDataTypeSubType eSubType) CPL_WARN_UNUSED_RESULT;
2600 : GDALExtendedDataTypeH CPL_DLL GDALExtendedDataTypeCreateCompound(
2601 : const char *pszName, size_t nTotalSize, size_t nComponents,
2602 : const GDALEDTComponentH *comps) CPL_WARN_UNUSED_RESULT;
2603 : void CPL_DLL GDALExtendedDataTypeRelease(GDALExtendedDataTypeH hEDT);
2604 : const char CPL_DLL *GDALExtendedDataTypeGetName(GDALExtendedDataTypeH hEDT);
2605 : GDALExtendedDataTypeClass CPL_DLL
2606 : GDALExtendedDataTypeGetClass(GDALExtendedDataTypeH hEDT);
2607 : GDALDataType CPL_DLL
2608 : GDALExtendedDataTypeGetNumericDataType(GDALExtendedDataTypeH hEDT);
2609 : size_t CPL_DLL GDALExtendedDataTypeGetSize(GDALExtendedDataTypeH hEDT);
2610 : size_t CPL_DLL
2611 : GDALExtendedDataTypeGetMaxStringLength(GDALExtendedDataTypeH hEDT);
2612 : GDALEDTComponentH CPL_DLL *
2613 : GDALExtendedDataTypeGetComponents(GDALExtendedDataTypeH hEDT,
2614 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2615 : void CPL_DLL GDALExtendedDataTypeFreeComponents(GDALEDTComponentH *components,
2616 : size_t nCount);
2617 : int CPL_DLL GDALExtendedDataTypeCanConvertTo(GDALExtendedDataTypeH hSourceEDT,
2618 : GDALExtendedDataTypeH hTargetEDT);
2619 : int CPL_DLL GDALExtendedDataTypeEquals(GDALExtendedDataTypeH hFirstEDT,
2620 : GDALExtendedDataTypeH hSecondEDT);
2621 : GDALExtendedDataTypeSubType CPL_DLL
2622 : GDALExtendedDataTypeGetSubType(GDALExtendedDataTypeH hEDT);
2623 : GDALRasterAttributeTableH CPL_DLL
2624 : GDALExtendedDataTypeGetRAT(GDALExtendedDataTypeH hEDT) CPL_WARN_UNUSED_RESULT;
2625 :
2626 : GDALEDTComponentH CPL_DLL
2627 : GDALEDTComponentCreate(const char *pszName, size_t nOffset,
2628 : GDALExtendedDataTypeH hType) CPL_WARN_UNUSED_RESULT;
2629 : void CPL_DLL GDALEDTComponentRelease(GDALEDTComponentH hComp);
2630 : const char CPL_DLL *GDALEDTComponentGetName(GDALEDTComponentH hComp);
2631 : size_t CPL_DLL GDALEDTComponentGetOffset(GDALEDTComponentH hComp);
2632 : GDALExtendedDataTypeH CPL_DLL GDALEDTComponentGetType(GDALEDTComponentH hComp)
2633 : CPL_WARN_UNUSED_RESULT;
2634 :
2635 : GDALGroupH CPL_DLL GDALDatasetGetRootGroup(GDALDatasetH hDS)
2636 : CPL_WARN_UNUSED_RESULT;
2637 : void CPL_DLL GDALGroupRelease(GDALGroupH hGroup);
2638 : const char CPL_DLL *GDALGroupGetName(GDALGroupH hGroup);
2639 : const char CPL_DLL *GDALGroupGetFullName(GDALGroupH hGroup);
2640 : char CPL_DLL **
2641 : GDALGroupGetMDArrayNames(GDALGroupH hGroup,
2642 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2643 : char CPL_DLL **GDALGroupGetMDArrayFullNamesRecursive(
2644 : GDALGroupH hGroup, CSLConstList papszGroupOptions,
2645 : CSLConstList papszArrayOptions) CPL_WARN_UNUSED_RESULT;
2646 : GDALMDArrayH CPL_DLL
2647 : GDALGroupOpenMDArray(GDALGroupH hGroup, const char *pszMDArrayName,
2648 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2649 : GDALMDArrayH CPL_DLL GDALGroupOpenMDArrayFromFullname(
2650 : GDALGroupH hGroup, const char *pszMDArrayName,
2651 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2652 : GDALMDArrayH CPL_DLL GDALGroupResolveMDArray(
2653 : GDALGroupH hGroup, const char *pszName, const char *pszStartingPoint,
2654 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2655 : char CPL_DLL **
2656 : GDALGroupGetGroupNames(GDALGroupH hGroup,
2657 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2658 : GDALGroupH CPL_DLL
2659 : GDALGroupOpenGroup(GDALGroupH hGroup, const char *pszSubGroupName,
2660 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2661 : GDALGroupH CPL_DLL GDALGroupOpenGroupFromFullname(
2662 : GDALGroupH hGroup, const char *pszMDArrayName,
2663 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2664 : char CPL_DLL **
2665 : GDALGroupGetVectorLayerNames(GDALGroupH hGroup,
2666 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2667 : OGRLayerH CPL_DLL
2668 : GDALGroupOpenVectorLayer(GDALGroupH hGroup, const char *pszVectorLayerName,
2669 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2670 : GDALDimensionH CPL_DLL *
2671 : GDALGroupGetDimensions(GDALGroupH hGroup, size_t *pnCount,
2672 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2673 : GDALAttributeH CPL_DLL GDALGroupGetAttribute(
2674 : GDALGroupH hGroup, const char *pszName) CPL_WARN_UNUSED_RESULT;
2675 : GDALAttributeH CPL_DLL *
2676 : GDALGroupGetAttributes(GDALGroupH hGroup, size_t *pnCount,
2677 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2678 : CSLConstList CPL_DLL GDALGroupGetStructuralInfo(GDALGroupH hGroup);
2679 : GDALGroupH CPL_DLL
2680 : GDALGroupCreateGroup(GDALGroupH hGroup, const char *pszSubGroupName,
2681 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2682 : bool CPL_DLL GDALGroupDeleteGroup(GDALGroupH hGroup, const char *pszName,
2683 : CSLConstList papszOptions);
2684 : GDALDimensionH CPL_DLL GDALGroupCreateDimension(
2685 : GDALGroupH hGroup, const char *pszName, const char *pszType,
2686 : const char *pszDirection, GUInt64 nSize,
2687 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2688 : GDALMDArrayH CPL_DLL GDALGroupCreateMDArray(
2689 : GDALGroupH hGroup, const char *pszName, size_t nDimensions,
2690 : GDALDimensionH *pahDimensions, GDALExtendedDataTypeH hEDT,
2691 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2692 : bool CPL_DLL GDALGroupDeleteMDArray(GDALGroupH hGroup, const char *pszName,
2693 : CSLConstList papszOptions);
2694 : GDALAttributeH CPL_DLL GDALGroupCreateAttribute(
2695 : GDALGroupH hGroup, const char *pszName, size_t nDimensions,
2696 : const GUInt64 *panDimensions, GDALExtendedDataTypeH hEDT,
2697 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2698 : bool CPL_DLL GDALGroupDeleteAttribute(GDALGroupH hGroup, const char *pszName,
2699 : CSLConstList papszOptions);
2700 : bool CPL_DLL GDALGroupRename(GDALGroupH hGroup, const char *pszNewName);
2701 : GDALGroupH CPL_DLL GDALGroupSubsetDimensionFromSelection(
2702 : GDALGroupH hGroup, const char *pszSelection, CSLConstList papszOptions);
2703 : size_t CPL_DLL GDALGroupGetDataTypeCount(GDALGroupH hGroup);
2704 : GDALExtendedDataTypeH CPL_DLL GDALGroupGetDataType(GDALGroupH hGroup,
2705 : size_t nIdx);
2706 :
2707 : void CPL_DLL GDALMDArrayRelease(GDALMDArrayH hMDArray);
2708 : const char CPL_DLL *GDALMDArrayGetName(GDALMDArrayH hArray);
2709 : const char CPL_DLL *GDALMDArrayGetFullName(GDALMDArrayH hArray);
2710 : GUInt64 CPL_DLL GDALMDArrayGetTotalElementsCount(GDALMDArrayH hArray);
2711 : size_t CPL_DLL GDALMDArrayGetDimensionCount(GDALMDArrayH hArray);
2712 : GDALDimensionH CPL_DLL *
2713 : GDALMDArrayGetDimensions(GDALMDArrayH hArray,
2714 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2715 : GDALExtendedDataTypeH CPL_DLL GDALMDArrayGetDataType(GDALMDArrayH hArray)
2716 : CPL_WARN_UNUSED_RESULT;
2717 : int CPL_DLL GDALMDArrayRead(GDALMDArrayH hArray, const GUInt64 *arrayStartIdx,
2718 : const size_t *count, const GInt64 *arrayStep,
2719 : const GPtrDiff_t *bufferStride,
2720 : GDALExtendedDataTypeH bufferDatatype,
2721 : void *pDstBuffer, const void *pDstBufferAllocStart,
2722 : size_t nDstBufferllocSize);
2723 : int CPL_DLL GDALMDArrayWrite(GDALMDArrayH hArray, const GUInt64 *arrayStartIdx,
2724 : const size_t *count, const GInt64 *arrayStep,
2725 : const GPtrDiff_t *bufferStride,
2726 : GDALExtendedDataTypeH bufferDatatype,
2727 : const void *pSrcBuffer,
2728 : const void *psrcBufferAllocStart,
2729 : size_t nSrcBufferllocSize);
2730 : int CPL_DLL GDALMDArrayAdviseRead(GDALMDArrayH hArray,
2731 : const GUInt64 *arrayStartIdx,
2732 : const size_t *count);
2733 : int CPL_DLL GDALMDArrayAdviseReadEx(GDALMDArrayH hArray,
2734 : const GUInt64 *arrayStartIdx,
2735 : const size_t *count,
2736 : CSLConstList papszOptions);
2737 : GDALAttributeH CPL_DLL GDALMDArrayGetAttribute(
2738 : GDALMDArrayH hArray, const char *pszName) CPL_WARN_UNUSED_RESULT;
2739 : GDALAttributeH CPL_DLL *
2740 : GDALMDArrayGetAttributes(GDALMDArrayH hArray, size_t *pnCount,
2741 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2742 : GDALAttributeH CPL_DLL GDALMDArrayCreateAttribute(
2743 : GDALMDArrayH hArray, const char *pszName, size_t nDimensions,
2744 : const GUInt64 *panDimensions, GDALExtendedDataTypeH hEDT,
2745 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2746 : bool CPL_DLL GDALMDArrayDeleteAttribute(GDALMDArrayH hArray,
2747 : const char *pszName,
2748 : CSLConstList papszOptions);
2749 : bool CPL_DLL GDALMDArrayResize(GDALMDArrayH hArray,
2750 : const GUInt64 *panNewDimSizes,
2751 : CSLConstList papszOptions);
2752 : const void CPL_DLL *GDALMDArrayGetRawNoDataValue(GDALMDArrayH hArray);
2753 : double CPL_DLL GDALMDArrayGetNoDataValueAsDouble(GDALMDArrayH hArray,
2754 : int *pbHasNoDataValue);
2755 : int64_t CPL_DLL GDALMDArrayGetNoDataValueAsInt64(GDALMDArrayH hArray,
2756 : int *pbHasNoDataValue);
2757 : uint64_t CPL_DLL GDALMDArrayGetNoDataValueAsUInt64(GDALMDArrayH hArray,
2758 : int *pbHasNoDataValue);
2759 : int CPL_DLL GDALMDArraySetRawNoDataValue(GDALMDArrayH hArray, const void *);
2760 : int CPL_DLL GDALMDArraySetNoDataValueAsDouble(GDALMDArrayH hArray,
2761 : double dfNoDataValue);
2762 : int CPL_DLL GDALMDArraySetNoDataValueAsInt64(GDALMDArrayH hArray,
2763 : int64_t nNoDataValue);
2764 : int CPL_DLL GDALMDArraySetNoDataValueAsUInt64(GDALMDArrayH hArray,
2765 : uint64_t nNoDataValue);
2766 : int CPL_DLL GDALMDArraySetScale(GDALMDArrayH hArray, double dfScale);
2767 : int CPL_DLL GDALMDArraySetScaleEx(GDALMDArrayH hArray, double dfScale,
2768 : GDALDataType eStorageType);
2769 : double CPL_DLL GDALMDArrayGetScale(GDALMDArrayH hArray, int *pbHasValue);
2770 : double CPL_DLL GDALMDArrayGetScaleEx(GDALMDArrayH hArray, int *pbHasValue,
2771 : GDALDataType *peStorageType);
2772 : int CPL_DLL GDALMDArraySetOffset(GDALMDArrayH hArray, double dfOffset);
2773 : int CPL_DLL GDALMDArraySetOffsetEx(GDALMDArrayH hArray, double dfOffset,
2774 : GDALDataType eStorageType);
2775 : double CPL_DLL GDALMDArrayGetOffset(GDALMDArrayH hArray, int *pbHasValue);
2776 : double CPL_DLL GDALMDArrayGetOffsetEx(GDALMDArrayH hArray, int *pbHasValue,
2777 : GDALDataType *peStorageType);
2778 : GUInt64 CPL_DLL *GDALMDArrayGetBlockSize(GDALMDArrayH hArray, size_t *pnCount);
2779 : int CPL_DLL GDALMDArraySetUnit(GDALMDArrayH hArray, const char *);
2780 : const char CPL_DLL *GDALMDArrayGetUnit(GDALMDArrayH hArray);
2781 : int CPL_DLL GDALMDArraySetSpatialRef(GDALMDArrayH, OGRSpatialReferenceH);
2782 : OGRSpatialReferenceH CPL_DLL GDALMDArrayGetSpatialRef(GDALMDArrayH hArray);
2783 : size_t CPL_DLL *GDALMDArrayGetProcessingChunkSize(GDALMDArrayH hArray,
2784 : size_t *pnCount,
2785 : size_t nMaxChunkMemory);
2786 : CSLConstList CPL_DLL GDALMDArrayGetStructuralInfo(GDALMDArrayH hArray);
2787 : GDALMDArrayH CPL_DLL GDALMDArrayGetView(GDALMDArrayH hArray,
2788 : const char *pszViewExpr);
2789 : GDALMDArrayH CPL_DLL GDALMDArrayTranspose(GDALMDArrayH hArray,
2790 : size_t nNewAxisCount,
2791 : const int *panMapNewAxisToOldAxis);
2792 : GDALMDArrayH CPL_DLL GDALMDArrayGetUnscaled(GDALMDArrayH hArray);
2793 : GDALMDArrayH CPL_DLL GDALMDArrayGetMask(GDALMDArrayH hArray,
2794 : CSLConstList papszOptions);
2795 : GDALDatasetH CPL_DLL GDALMDArrayAsClassicDataset(GDALMDArrayH hArray,
2796 : size_t iXDim, size_t iYDim);
2797 : GDALDatasetH CPL_DLL GDALMDArrayAsClassicDatasetEx(GDALMDArrayH hArray,
2798 : size_t iXDim, size_t iYDim,
2799 : GDALGroupH hRootGroup,
2800 : CSLConstList papszOptions);
2801 : CPLErr CPL_DLL GDALMDArrayGetStatistics(
2802 : GDALMDArrayH hArray, GDALDatasetH, int bApproxOK, int bForce,
2803 : double *pdfMin, double *pdfMax, double *pdfMean, double *pdfStdDev,
2804 : GUInt64 *pnValidCount, GDALProgressFunc pfnProgress, void *pProgressData);
2805 : int CPL_DLL GDALMDArrayComputeStatistics(GDALMDArrayH hArray, GDALDatasetH,
2806 : int bApproxOK, double *pdfMin,
2807 : double *pdfMax, double *pdfMean,
2808 : double *pdfStdDev,
2809 : GUInt64 *pnValidCount,
2810 : GDALProgressFunc, void *pProgressData);
2811 : int CPL_DLL GDALMDArrayComputeStatisticsEx(
2812 : GDALMDArrayH hArray, GDALDatasetH, int bApproxOK, double *pdfMin,
2813 : double *pdfMax, double *pdfMean, double *pdfStdDev, GUInt64 *pnValidCount,
2814 : GDALProgressFunc, void *pProgressData, CSLConstList papszOptions);
2815 : GDALMDArrayH CPL_DLL GDALMDArrayGetResampled(GDALMDArrayH hArray,
2816 : size_t nNewDimCount,
2817 : const GDALDimensionH *pahNewDims,
2818 : GDALRIOResampleAlg resampleAlg,
2819 : OGRSpatialReferenceH hTargetSRS,
2820 : CSLConstList papszOptions);
2821 : GDALMDArrayH CPL_DLL GDALMDArrayGetGridded(
2822 : GDALMDArrayH hArray, const char *pszGridOptions, GDALMDArrayH hXArray,
2823 : GDALMDArrayH hYArray, CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2824 :
2825 : GDALMDArrayH CPL_DLL *
2826 : GDALMDArrayGetCoordinateVariables(GDALMDArrayH hArray,
2827 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2828 :
2829 : GDALMDArrayH CPL_DLL *
2830 : GDALMDArrayGetMeshGrid(const GDALMDArrayH *pahInputArrays,
2831 : size_t nCountInputArrays, size_t *pnCountOutputArrays,
2832 : CSLConstList papszOptions) CPL_WARN_UNUSED_RESULT;
2833 :
2834 : #ifdef __cplusplus
2835 : extern "C++"
2836 : {
2837 : #endif
2838 :
2839 : /** Information on a raw block of a GDALMDArray
2840 : *
2841 : * @since 3.12
2842 : */
2843 : struct
2844 : #ifdef __cplusplus
2845 : CPL_DLL
2846 : #endif
2847 : GDALMDArrayRawBlockInfo
2848 : {
2849 : /** Filename into which the raw block is found */
2850 : char *pszFilename;
2851 : /** File offset within pszFilename of the start of the raw block */
2852 : uint64_t nOffset;
2853 : /** Size in bytes of the raw block */
2854 : uint64_t nSize;
2855 : /** NULL or Null-terminated list of driver specific information on the
2856 : * raw block */
2857 : char **papszInfo;
2858 : /** In-memory buffer of nSize bytes. When this is set, pszFilename and
2859 : * nOffset are set to NULL.
2860 : *
2861 : * When using C++ copy constructor or copy-assignment operator, if
2862 : * a memory allocation fails, a CPLError() will be emitted and this
2863 : * field will be NULL, but nSize not zero.
2864 : */
2865 : GByte *pabyInlineData;
2866 :
2867 : #ifdef __cplusplus
2868 : /*! @cond Doxygen_Suppress */
2869 26 : inline GDALMDArrayRawBlockInfo()
2870 26 : : pszFilename(nullptr), nOffset(0), nSize(0), papszInfo(nullptr),
2871 26 : pabyInlineData(nullptr)
2872 : {
2873 26 : }
2874 :
2875 : ~GDALMDArrayRawBlockInfo();
2876 :
2877 : void clear();
2878 :
2879 : GDALMDArrayRawBlockInfo(const GDALMDArrayRawBlockInfo &);
2880 : GDALMDArrayRawBlockInfo &operator=(const GDALMDArrayRawBlockInfo &);
2881 : GDALMDArrayRawBlockInfo(GDALMDArrayRawBlockInfo &&);
2882 : GDALMDArrayRawBlockInfo &operator=(GDALMDArrayRawBlockInfo &&);
2883 : /*! @endcond */
2884 : #endif
2885 : };
2886 :
2887 : #ifdef __cplusplus
2888 : }
2889 : #endif
2890 :
2891 : /*! @cond Doxygen_Suppress */
2892 : typedef struct GDALMDArrayRawBlockInfo GDALMDArrayRawBlockInfo;
2893 : /*! @endcond */
2894 :
2895 : GDALMDArrayRawBlockInfo CPL_DLL *GDALMDArrayRawBlockInfoCreate(void);
2896 : void CPL_DLL
2897 : GDALMDArrayRawBlockInfoRelease(GDALMDArrayRawBlockInfo *psBlockInfo);
2898 : bool CPL_DLL GDALMDArrayGetRawBlockInfo(GDALMDArrayH hArray,
2899 : const uint64_t *panBlockCoordinates,
2900 : GDALMDArrayRawBlockInfo *psBlockInfo);
2901 :
2902 : int CPL_DLL GDALMDArrayGetOverviewCount(GDALMDArrayH hArray);
2903 : GDALMDArrayH CPL_DLL GDALMDArrayGetOverview(GDALMDArrayH hArray, int nIdx);
2904 :
2905 : void CPL_DLL GDALReleaseArrays(GDALMDArrayH *arrays, size_t nCount);
2906 : int CPL_DLL GDALMDArrayCache(GDALMDArrayH hArray, CSLConstList papszOptions);
2907 : bool CPL_DLL GDALMDArrayRename(GDALMDArrayH hArray, const char *pszNewName);
2908 :
2909 : GDALRasterAttributeTableH CPL_DLL GDALCreateRasterAttributeTableFromMDArrays(
2910 : GDALRATTableType eTableType, int nArrays, const GDALMDArrayH *ahArrays,
2911 : const GDALRATFieldUsage *paeUsages);
2912 :
2913 : void CPL_DLL GDALAttributeRelease(GDALAttributeH hAttr);
2914 : void CPL_DLL GDALReleaseAttributes(GDALAttributeH *attributes, size_t nCount);
2915 : const char CPL_DLL *GDALAttributeGetName(GDALAttributeH hAttr);
2916 : const char CPL_DLL *GDALAttributeGetFullName(GDALAttributeH hAttr);
2917 : GUInt64 CPL_DLL GDALAttributeGetTotalElementsCount(GDALAttributeH hAttr);
2918 : size_t CPL_DLL GDALAttributeGetDimensionCount(GDALAttributeH hAttr);
2919 : GUInt64 CPL_DLL *
2920 : GDALAttributeGetDimensionsSize(GDALAttributeH hAttr,
2921 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2922 : GDALExtendedDataTypeH CPL_DLL GDALAttributeGetDataType(GDALAttributeH hAttr)
2923 : CPL_WARN_UNUSED_RESULT;
2924 : GByte CPL_DLL *GDALAttributeReadAsRaw(GDALAttributeH hAttr,
2925 : size_t *pnSize) CPL_WARN_UNUSED_RESULT;
2926 : void CPL_DLL GDALAttributeFreeRawResult(GDALAttributeH hAttr, GByte *raw,
2927 : size_t nSize);
2928 : const char CPL_DLL *GDALAttributeReadAsString(GDALAttributeH hAttr);
2929 : int CPL_DLL GDALAttributeReadAsInt(GDALAttributeH hAttr);
2930 : int64_t CPL_DLL GDALAttributeReadAsInt64(GDALAttributeH hAttr);
2931 : double CPL_DLL GDALAttributeReadAsDouble(GDALAttributeH hAttr);
2932 : char CPL_DLL **
2933 : GDALAttributeReadAsStringArray(GDALAttributeH hAttr) CPL_WARN_UNUSED_RESULT;
2934 : int CPL_DLL *GDALAttributeReadAsIntArray(GDALAttributeH hAttr, size_t *pnCount)
2935 : CPL_WARN_UNUSED_RESULT;
2936 : int64_t CPL_DLL *
2937 : GDALAttributeReadAsInt64Array(GDALAttributeH hAttr,
2938 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2939 : double CPL_DLL *
2940 : GDALAttributeReadAsDoubleArray(GDALAttributeH hAttr,
2941 : size_t *pnCount) CPL_WARN_UNUSED_RESULT;
2942 : int CPL_DLL GDALAttributeWriteRaw(GDALAttributeH hAttr, const void *, size_t);
2943 : int CPL_DLL GDALAttributeWriteString(GDALAttributeH hAttr, const char *);
2944 : int CPL_DLL GDALAttributeWriteStringArray(GDALAttributeH hAttr, CSLConstList);
2945 : int CPL_DLL GDALAttributeWriteInt(GDALAttributeH hAttr, int);
2946 : int CPL_DLL GDALAttributeWriteIntArray(GDALAttributeH hAttr, const int *,
2947 : size_t);
2948 : int CPL_DLL GDALAttributeWriteInt64(GDALAttributeH hAttr, int64_t);
2949 : int CPL_DLL GDALAttributeWriteInt64Array(GDALAttributeH hAttr, const int64_t *,
2950 : size_t);
2951 : int CPL_DLL GDALAttributeWriteDouble(GDALAttributeH hAttr, double);
2952 : int CPL_DLL GDALAttributeWriteDoubleArray(GDALAttributeH hAttr, const double *,
2953 : size_t);
2954 : bool CPL_DLL GDALAttributeRename(GDALAttributeH hAttr, const char *pszNewName);
2955 :
2956 : void CPL_DLL GDALDimensionRelease(GDALDimensionH hDim);
2957 : void CPL_DLL GDALReleaseDimensions(GDALDimensionH *dims, size_t nCount);
2958 : const char CPL_DLL *GDALDimensionGetName(GDALDimensionH hDim);
2959 : const char CPL_DLL *GDALDimensionGetFullName(GDALDimensionH hDim);
2960 : const char CPL_DLL *GDALDimensionGetType(GDALDimensionH hDim);
2961 : const char CPL_DLL *GDALDimensionGetDirection(GDALDimensionH hDim);
2962 : GUInt64 CPL_DLL GDALDimensionGetSize(GDALDimensionH hDim);
2963 : GDALMDArrayH CPL_DLL GDALDimensionGetIndexingVariable(GDALDimensionH hDim)
2964 : CPL_WARN_UNUSED_RESULT;
2965 : int CPL_DLL GDALDimensionSetIndexingVariable(GDALDimensionH hDim,
2966 : GDALMDArrayH hArray);
2967 : bool CPL_DLL GDALDimensionRename(GDALDimensionH hDim, const char *pszNewName);
2968 :
2969 : CPL_C_END
2970 :
2971 : #endif /* ndef GDAL_H_INCLUDED */
|