GDAL
ogr_core.h
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Project: OpenGIS Simple Features Reference Implementation
4 * Purpose: Define some core portability services for cross-platform OGR code.
5 * Author: Frank Warmerdam, warmerdam@pobox.com
6 *
7 ******************************************************************************
8 * Copyright (c) 1999, 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 OGR_CORE_H_INCLUDED
15#define OGR_CORE_H_INCLUDED
16
17#include "cpl_port.h"
18#if defined(GDAL_COMPILATION)
19#define DO_NOT_DEFINE_GDAL_DATE_NAME
20#endif
21#include "gdal_version.h"
22
29#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
30
31extern "C++"
32{
33#if !defined(DOXYGEN_SKIP)
34#include <cmath>
35#include <limits>
36#endif
37
38 class OGREnvelope3D;
39
43 class CPL_DLL OGREnvelope
44 {
45 public:
48 : MinX(std::numeric_limits<double>::infinity()),
49 MaxX(-std::numeric_limits<double>::infinity()),
50 MinY(std::numeric_limits<double>::infinity()),
51 MaxY(-std::numeric_limits<double>::infinity())
52 {
53 }
54
56 OGREnvelope(const OGREnvelope &oOther)
57 : MinX(oOther.MinX), MaxX(oOther.MaxX), MinY(oOther.MinY),
58 MaxY(oOther.MaxY)
59 {
60 }
61
63 OGREnvelope &operator=(const OGREnvelope &) = default;
64
66 double MinX;
67
69 double MaxX;
70
72 double MinY;
73
75 double MaxY;
76
77#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
78#pragma GCC diagnostic push
79#pragma GCC diagnostic ignored "-Wfloat-equal"
80#endif
83 int IsInit() const
84 {
85 return MinX != std::numeric_limits<double>::infinity();
86 }
87
88#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
89#pragma GCC diagnostic pop
90#endif
91
94 void Merge(OGREnvelope const &sOther)
95 {
96 MinX = MIN(MinX, sOther.MinX);
97 MaxX = MAX(MaxX, sOther.MaxX);
98 MinY = MIN(MinY, sOther.MinY);
99 MaxY = MAX(MaxY, sOther.MaxY);
100 }
101
104 void Merge(double dfX, double dfY)
105 {
106 MinX = MIN(MinX, dfX);
107 MaxX = MAX(MaxX, dfX);
108 MinY = MIN(MinY, dfY);
109 MaxY = MAX(MaxY, dfY);
110 }
111
114 void Intersect(OGREnvelope const &sOther)
115 {
116 if (Intersects(sOther))
117 {
118 if (IsInit())
119 {
120 MinX = MAX(MinX, sOther.MinX);
121 MaxX = MIN(MaxX, sOther.MaxX);
122 MinY = MAX(MinY, sOther.MinY);
123 MaxY = MIN(MaxY, sOther.MaxY);
124 }
125 else
126 {
127 MinX = sOther.MinX;
128 MaxX = sOther.MaxX;
129 MinY = sOther.MinY;
130 MaxY = sOther.MaxY;
131 }
132 }
133 else
134 {
135 *this = OGREnvelope();
136 }
137 }
138
141 int Intersects(OGREnvelope const &other) const
142 {
143 return MinX <= other.MaxX && MaxX >= other.MinX &&
144 MinY <= other.MaxY && MaxY >= other.MinY;
145 }
146
148 int Contains(OGREnvelope const &other) const
149 {
150 return MinX <= other.MinX && MinY <= other.MinY &&
151 MaxX >= other.MaxX && MaxY >= other.MaxY;
152 }
153
156 bool operator==(const OGREnvelope &other) const
157 {
158#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
159#pragma GCC diagnostic push
160#pragma GCC diagnostic ignored "-Wfloat-equal"
161#endif
162 return MinX == other.MinX && MinY == other.MinY &&
163 MaxX == other.MaxX && MaxY == other.MaxY;
164
165#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
166#pragma GCC diagnostic pop
167#endif
168 }
169
172 bool operator!=(const OGREnvelope &other) const
173 {
174 return !(*this == other);
175 }
176 };
177
178} // extern "C++"
179
180#else
181typedef struct
182{
183 double MinX;
184 double MaxX;
185 double MinY;
186 double MaxY;
188#endif
189
190#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
191
192extern "C++"
193{
194
198 class CPL_DLL OGREnvelope3D : public OGREnvelope
199 {
200 public:
203 : OGREnvelope(), MinZ(std::numeric_limits<double>::infinity()),
204 MaxZ(-std::numeric_limits<double>::infinity())
205 {
206 }
207
210 : OGREnvelope(oOther), MinZ(oOther.MinZ), MaxZ(oOther.MaxZ)
211 {
212 }
213
216
218 bool Is3D() const
219 {
220 return std::isfinite(MinZ) && std::isfinite(MaxZ);
221 }
222
224 double MinZ;
225
227 double MaxZ;
228
229#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
230#pragma GCC diagnostic push
231#pragma GCC diagnostic ignored "-Wfloat-equal"
232#endif
235 int IsInit() const
236 {
237 return MinX != std::numeric_limits<double>::infinity();
238 }
239#ifdef HAVE_GCC_DIAGNOSTIC_PUSH
240#pragma GCC diagnostic pop
241#endif
242
245 void Merge(OGREnvelope3D const &sOther)
246 {
247 MinX = MIN(MinX, sOther.MinX);
248 MaxX = MAX(MaxX, sOther.MaxX);
249 MinY = MIN(MinY, sOther.MinY);
250 MaxY = MAX(MaxY, sOther.MaxY);
251 MinZ = MIN(MinZ, sOther.MinZ);
252 MaxZ = MAX(MaxZ, sOther.MaxZ);
253 }
254
257 void Merge(OGREnvelope const &sOther)
258 {
259 MinX = MIN(MinX, sOther.MinX);
260 MaxX = MAX(MaxX, sOther.MaxX);
261 MinY = MIN(MinY, sOther.MinY);
262 MaxY = MAX(MaxY, sOther.MaxY);
263 }
264
267 void Merge(double dfX, double dfY, double dfZ)
268 {
269 MinX = MIN(MinX, dfX);
270 MaxX = MAX(MaxX, dfX);
271 MinY = MIN(MinY, dfY);
272 MaxY = MAX(MaxY, dfY);
273 MinZ = MIN(MinZ, dfZ);
274 MaxZ = MAX(MaxZ, dfZ);
275 }
276
279 void Intersect(OGREnvelope3D const &sOther)
280 {
281 if (Intersects(sOther))
282 {
283 if (IsInit())
284 {
285 MinX = MAX(MinX, sOther.MinX);
286 MaxX = MIN(MaxX, sOther.MaxX);
287 MinY = MAX(MinY, sOther.MinY);
288 MaxY = MIN(MaxY, sOther.MaxY);
289 MinZ = MAX(MinZ, sOther.MinZ);
290 MaxZ = MIN(MaxZ, sOther.MaxZ);
291 }
292 else
293 {
294 MinX = sOther.MinX;
295 MaxX = sOther.MaxX;
296 MinY = sOther.MinY;
297 MaxY = sOther.MaxY;
298 MinZ = sOther.MinZ;
299 MaxZ = sOther.MaxZ;
300 }
301 }
302 else
303 {
304 *this = OGREnvelope3D();
305 }
306 }
307
310 int Intersects(OGREnvelope3D const &other) const
311 {
312 return MinX <= other.MaxX && MaxX >= other.MinX &&
313 MinY <= other.MaxY && MaxY >= other.MinY &&
314 MinZ <= other.MaxZ && MaxZ >= other.MinZ;
315 }
316
318 int Contains(OGREnvelope3D const &other) const
319 {
320 return MinX <= other.MinX && MinY <= other.MinY &&
321 MaxX >= other.MaxX && MaxY >= other.MaxY &&
322 MinZ <= other.MinZ && MaxZ >= other.MaxZ;
323 }
324 };
325
326} // extern "C++"
327
328#else
329typedef struct
330{
331 double MinX;
332 double MaxX;
333 double MinY;
334 double MaxY;
335 double MinZ;
336 double MaxZ;
338#endif
339
341
343void CPL_DLL *OGRMalloc(size_t) CPL_WARN_DEPRECATED("Use CPLMalloc instead.");
344void CPL_DLL *OGRCalloc(size_t, size_t)
345 CPL_WARN_DEPRECATED("Use CPLCalloc instead.");
346void CPL_DLL *OGRRealloc(void *, size_t)
347 CPL_WARN_DEPRECATED("Use CPLRealloc instead.");
348char CPL_DLL *OGRStrdup(const char *)
349 CPL_WARN_DEPRECATED("Use CPLStrdup instead.");
350void CPL_DLL OGRFree(void *) CPL_WARN_DEPRECATED("Use CPLFree instead.");
353#ifdef STRICT_OGRERR_TYPE
355typedef enum
356{
367} OGRErr;
368#else
370typedef int OGRErr;
371
372#define OGRERR_NONE 0
373#define OGRERR_NOT_ENOUGH_DATA 1
374#define OGRERR_NOT_ENOUGH_MEMORY 2
375#define OGRERR_UNSUPPORTED_GEOMETRY_TYPE 3
376#define OGRERR_UNSUPPORTED_OPERATION 4
377#define OGRERR_CORRUPT_DATA 5
378#define OGRERR_FAILURE 6
379#define OGRERR_UNSUPPORTED_SRS 7
380#define OGRERR_INVALID_HANDLE 8
381#define OGRERR_NON_EXISTING_FEATURE \
382 9
384#endif
385
387typedef int OGRBoolean;
388
389/* -------------------------------------------------------------------- */
390/* ogr_geometry.h related definitions. */
391/* -------------------------------------------------------------------- */
392
393#if defined(HAVE_GCC_DIAGNOSTIC_PUSH) && __STDC_VERSION__ < 202311L
394/* wkbPoint25D and friends cause warnings with -Wpedantic prior to C23. */
395/* Cf https://github.com/OSGeo/gdal/issues/2322 */
396#pragma GCC diagnostic push
397#pragma GCC diagnostic ignored "-Wpedantic"
398#endif
399
405typedef enum
406{
410 wkbLineString = 2,
412 wkbPolygon = 3,
417 5,
424 wkbCompoundCurve = 9,
426 wkbCurvePolygon = 10,
429 wkbMultiCurve = 11,
431 wkbMultiSurface = 12,
433 wkbCurve =
434 13,
435 wkbSurface =
436 14,
438 15,
440 wkbTIN = 16,
444 wkbNone = 100,
447 wkbCircularStringZ = 1008,
449 wkbCompoundCurveZ = 1009,
451 wkbCurvePolygonZ = 1010,
453 wkbMultiCurveZ = 1011,
455 wkbMultiSurfaceZ = 1012,
457 wkbCurveZ = 1013,
459 wkbSurfaceZ = 1014,
462 wkbTINZ = 1016,
465 wkbPointM = 2001,
467 wkbPolygonM = 2003,
477 wkbCurveM = 2013,
478 wkbSurfaceM = 2014,
480 wkbTINM = 2016,
483 wkbPointZM = 3001,
495 wkbCurveZM = 3013,
498 wkbTINZM = 3016,
501#if defined(DOXYGEN_SKIP)
502 // Sphinx doesn't like 0x8000000x constants
503 wkbPoint25D = -2147483647,
504 wkbLineString25D = -2147483646,
505 wkbPolygon25D = -2147483645,
506 wkbMultiPoint25D = -2147483644,
507 wkbMultiLineString25D = -2147483643,
508 wkbMultiPolygon25D = -2147483642,
509 wkbGeometryCollection25D = -2147483641
510#else
511 wkbPoint25D = 0x80000001,
512 wkbLineString25D = 0x80000002,
513 wkbPolygon25D = 0x80000003,
514 wkbMultiPoint25D = 0x80000004,
515 wkbMultiLineString25D = 0x80000005,
516 wkbMultiPolygon25D = 0x80000006,
517 wkbGeometryCollection25D = 0x80000007
518#endif
520
521#if defined(HAVE_GCC_DIAGNOSTIC_PUSH) && __STDC_VERSION__ < 202311L
522#pragma GCC diagnostic pop
523#endif
524
525/* clang-format off */
541/* clang-format on */
542
551
552#ifndef GDAL_COMPILATION
554#define wkb25DBit 0x80000000
555#endif
556
557#ifndef __cplusplus
559#define wkbFlatten(x) OGR_GT_Flatten((OGRwkbGeometryType)(x))
560#else
562#define wkbFlatten(x) OGR_GT_Flatten(static_cast<OGRwkbGeometryType>(x))
563#endif
564
568#define wkbHasZ(x) (OGR_GT_HasZ(x) != 0)
569
573#define wkbSetZ(x) OGR_GT_SetZ(x)
574
578#define wkbHasM(x) (OGR_GT_HasM(x) != 0)
579
584#define wkbSetM(x) OGR_GT_SetM(x)
585
586#ifndef DOXYGEN_SKIP
587#define ogrZMarker 0x21125711
588#endif
589
590const char CPL_DLL *OGRGeometryTypeToName(OGRwkbGeometryType eType);
592 OGRwkbGeometryType eExtra);
594 OGRwkbGeometryType eExtra,
595 int bAllowPromotingToCurves);
600 int bSetZ, int bSetM);
601int CPL_DLL OGR_GT_HasZ(OGRwkbGeometryType eType);
602int CPL_DLL OGR_GT_HasM(OGRwkbGeometryType eType);
604 OGRwkbGeometryType eSuperType);
612
614typedef enum
615{
616 wkbXDR = 0,
617 wkbNDR = 1
619
620#ifndef DOXYGEN_SKIP
621
622#ifndef NO_HACK_FOR_IBM_DB2_V72
623#define HACK_FOR_IBM_DB2_V72
624#endif
625
626#ifdef HACK_FOR_IBM_DB2_V72
627#define DB2_V72_FIX_BYTE_ORDER(x) ((((x)&0x31) == (x)) ? ((x)&0x1) : (x))
628#define DB2_V72_UNFIX_BYTE_ORDER(x) \
629 CPL_STATIC_CAST(unsigned char, OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER \
630 ? ((x) | 0x30) \
631 : (x))
632#else
633#define DB2_V72_FIX_BYTE_ORDER(x) (x)
634#define DB2_V72_UNFIX_BYTE_ORDER(x) (x)
635#endif
636
637#endif /* #ifndef DOXYGEN_SKIP */
638
642#define ALTER_NAME_FLAG 0x1
643
647#define ALTER_TYPE_FLAG 0x2
648
652#define ALTER_WIDTH_PRECISION_FLAG 0x4
653
658#define ALTER_NULLABLE_FLAG 0x8
659
664#define ALTER_DEFAULT_FLAG 0x10
665
670#define ALTER_UNIQUE_FLAG 0x20
671
676#define ALTER_DOMAIN_FLAG 0x40
677
682#define ALTER_ALTERNATIVE_NAME_FLAG 0x80
683
688#define ALTER_COMMENT_FLAG 0x100
689
693#define ALTER_ALL_FLAG \
694 (ALTER_NAME_FLAG | ALTER_TYPE_FLAG | ALTER_WIDTH_PRECISION_FLAG | \
695 ALTER_NULLABLE_FLAG | ALTER_DEFAULT_FLAG | ALTER_UNIQUE_FLAG | \
696 ALTER_DOMAIN_FLAG | ALTER_ALTERNATIVE_NAME_FLAG | ALTER_COMMENT_FLAG)
697
702#define ALTER_GEOM_FIELD_DEFN_NAME_FLAG 0x1000
703
708#define ALTER_GEOM_FIELD_DEFN_TYPE_FLAG 0x2000
709
714#define ALTER_GEOM_FIELD_DEFN_NULLABLE_FLAG 0x4000
715
720#define ALTER_GEOM_FIELD_DEFN_SRS_FLAG 0x8000
721
726#define ALTER_GEOM_FIELD_DEFN_SRS_COORD_EPOCH_FLAG 0x10000
727
732#define ALTER_GEOM_FIELD_DEFN_ALL_FLAG \
733 (ALTER_GEOM_FIELD_DEFN_NAME_FLAG | ALTER_GEOM_FIELD_DEFN_TYPE_FLAG | \
734 ALTER_GEOM_FIELD_DEFN_NULLABLE_FLAG | ALTER_GEOM_FIELD_DEFN_SRS_FLAG | \
735 ALTER_GEOM_FIELD_DEFN_SRS_COORD_EPOCH_FLAG)
736
741#define OGR_F_VAL_NULL 0x00000001
742
747#define OGR_F_VAL_GEOM_TYPE 0x00000002
748
753#define OGR_F_VAL_WIDTH 0x00000004
754
761#define OGR_F_VAL_ALLOW_NULL_WHEN_DEFAULT 0x00000008
762
769#define OGR_F_VAL_ALLOW_DIFFERENT_GEOM_DIM 0x00000010
770
775#define OGR_F_VAL_ALL (0x7FFFFFFF & ~OGR_F_VAL_ALLOW_DIFFERENT_GEOM_DIM)
776
777/************************************************************************/
778/* ogr_feature.h related definitions. */
779/************************************************************************/
780
787typedef enum
788{
OFTInteger = 0, OFTIntegerList = 1, OFTReal = 2, OFTRealList = 3, OFTString = 4, OFTStringList = 5, OFTWideString = 6, OFTWideStringList = 7, OFTBinary = 8, OFTDate = 9, OFTTime = 10, OFTDateTime = 11, OFTInteger64 = 12, OFTInteger64List = 13,
803 OFTMaxType = 13
805
815typedef enum
816{
OFSTNone = 0,
833 OFSTMaxSubType = 5
835
840typedef enum
841{
842 OJUndefined = 0,
843 OJLeft = 1,
844 OJRight = 2
846
848#define OGRNullFID -1
849
850/* Special value for an unknown field type. This should only be used
851 * while reading a file. At the end of file any unknown types should
852 * be set to OFTString.
853 */
855#define OGRUnknownType static_cast<OGRFieldType>(-1)
863#define OGRUnsetMarker -21121
864
871#define OGRNullMarker -21122
872
877#define OGR_TZFLAG_UNKNOWN 0
878
880#define OGR_TZFLAG_LOCALTIME 1
881
886#define OGR_TZFLAG_MIXED_TZ 2
887
894#define OGR_TZFLAG_UTC 100
895
896/************************************************************************/
897/* OGRField */
898/************************************************************************/
899
904typedef union
905{
907 int Integer;
908 GIntBig Integer64;
909 double Real;
910 char *String;
911
912 struct
913 {
914 int nCount;
915 int *paList;
916 } IntegerList;
917
918 struct
919 {
920 int nCount;
921 GIntBig *paList;
922 } Integer64List;
923
924 struct
925 {
926 int nCount;
927 double *paList;
928 } RealList;
929
930 struct
931 {
932 int nCount;
933 char **paList;
934 } StringList;
935
936 struct
937 {
938 int nCount;
939 GByte *paData;
940 } Binary;
941
942 struct
943 {
944 int nMarker1;
945 int nMarker2;
946 int nMarker3;
947 } Set;
948
949 struct
950 {
951 GInt16 Year;
952 GByte Month;
953 GByte Day;
954 GByte Hour;
955 GByte Minute;
956 GByte TZFlag; /* 0=unknown, 1=localtime(ambiguous),
957 100=GMT, 104=GMT+1, 80=GMT-5, etc */
958 GByte Reserved; /* must be set to 0 */
959 float Second; /* with millisecond accuracy. at the end of the structure,
960 so as to keep it 12 bytes on 32 bit */
961 } Date;
962
964} OGRField;
965
967int CPL_DLL OGR_GET_MS(float fSec);
968
970#define OGRPARSEDATE_OPTION_LAX 1
971
972int CPL_DLL OGRParseDate(const char *pszInput, OGRField *psOutput,
973 int nOptions);
974
975/* -------------------------------------------------------------------- */
976/* Constants from ogrsf_frmts.h for capabilities. */
977/* -------------------------------------------------------------------- */
978#define OLCRandomRead "RandomRead"
979#define OLCSequentialWrite \
980 "SequentialWrite"
981#define OLCRandomWrite "RandomWrite"
982#define OLCFastSpatialFilter \
983 "FastSpatialFilter"
984#define OLCFastFeatureCount \
985 "FastFeatureCount"
987#define OLCFastGetExtent \
988 "FastGetExtent"
989#define OLCFastGetExtent3D \
990 "FastGetExtent3D"
991#define OLCCreateField \
992 "CreateField"
994#define OLCDeleteField \
995 "DeleteField"
997#define OLCReorderFields \
998 "ReorderFields"
999#define OLCAlterFieldDefn \
1000 "AlterFieldDefn"
1001#define OLCAlterGeomFieldDefn \
1002 "AlterGeomFieldDefn"
1004#define OLCTransactions \
1005 "Transactions"
1007#define OLCDeleteFeature \
1008 "DeleteFeature"
1009#define OLCUpsertFeature \
1010 "UpsertFeature"
1011#define OLCUpdateFeature \
1012 "UpdateFeature"
1014#define OLCFastSetNextByIndex \
1015 "FastSetNextByIndex"
1017#define OLCStringsAsUTF8 \
1018 "StringsAsUTF8"
1020#define OLCIgnoreFields \
1021 "IgnoreFields"
1022#define OLCCreateGeomField \
1023 "CreateGeomField"
1024#define OLCCurveGeometries \
1025 "CurveGeometries"
1026#define OLCMeasuredGeometries \
1027 "MeasuredGeometries"
1029#define OLCZGeometries \
1030 "ZGeometries"
1032#define OLCRename \
1033 "Rename"
1034#define OLCFastGetArrowStream \
1035 "FastGetArrowStream"
1037#define OLCFastWriteArrowBatch \
1038 "FastWriteArrowBatch"
1041#define ODsCCreateLayer \
1042 "CreateLayer"
1043#define ODsCDeleteLayer \
1044 "DeleteLayer"
1045/* Reserved: "RenameLayer" */
1046#define ODsCCreateGeomFieldAfterCreateLayer \
1047 "CreateGeomFieldAfterCreateLayer"
1049#define ODsCCurveGeometries \
1050 "CurveGeometries"
1051#define ODsCTransactions \
1052 "Transactions"
1053#define ODsCEmulatedTransactions \
1054 "EmulatedTransactions"
1056#define ODsCMeasuredGeometries \
1057 "MeasuredGeometries"
1059#define ODsCZGeometries \
1060 "ZGeometries"
1062#define ODsCRandomLayerRead \
1063 "RandomLayerRead"
1065/* Note the unfortunate trailing space at the end of the string */
1066#define ODsCRandomLayerWrite \
1067 "RandomLayerWrite "
1069#define ODsCAddFieldDomain \
1070 "AddFieldDomain"
1072#define ODsCDeleteFieldDomain \
1073 "DeleteFieldDomain"
1075#define ODsCUpdateFieldDomain \
1076 "UpdateFieldDomain"
1079#define ODrCCreateDataSource \
1080 "CreateDataSource"
1081#define ODrCDeleteDataSource \
1082 "DeleteDataSource"
1084/* -------------------------------------------------------------------- */
1085/* Layer metadata items. */
1086/* -------------------------------------------------------------------- */
1091#define OLMD_FID64 "OLMD_FID64"
1092
1093/************************************************************************/
1094/* ogr_featurestyle.h related definitions. */
1095/************************************************************************/
1096
1110
1123
1141
1160
1182
1213
1214/* -------------------------------------------------------------------- */
1215/* Field domains */
1216/* -------------------------------------------------------------------- */
1217
1222typedef struct
1223{
1225 char *pszCode;
1226
1230
1244
1262
1279
1280/* ------------------------------------------------------------------- */
1281/* Version checking */
1282/* -------------------------------------------------------------------- */
1283
1284#ifndef DOXYGEN_SKIP
1285
1286/* Note to developers : please keep this section in sync with gdal.h */
1287
1288#ifndef GDAL_VERSION_INFO_DEFINED
1289#define GDAL_VERSION_INFO_DEFINED
1290const char CPL_DLL *CPL_STDCALL GDALVersionInfo(const char *);
1291#endif
1292
1293#ifndef GDAL_CHECK_VERSION
1294
1307int CPL_DLL CPL_STDCALL GDALCheckVersion(int nVersionMajor, int nVersionMinor,
1308 const char *pszCallingComponentName);
1309
1311#define GDAL_CHECK_VERSION(pszCallingComponentName) \
1312 GDALCheckVersion(GDAL_VERSION_MAJOR, GDAL_VERSION_MINOR, \
1313 pszCallingComponentName)
1314
1315#endif
1316
1317#endif /* #ifndef DOXYGEN_SKIP */
1318
1320
1321#endif /* ndef OGR_CORE_H_INCLUDED */
Simple container for a bounding region in 3D.
Definition ogr_core.h:199
void Merge(OGREnvelope const &sOther)
Update the current object by computing its union with the other rectangle.
Definition ogr_core.h:257
void Merge(OGREnvelope3D const &sOther)
Update the current object by computing its union with the other rectangle.
Definition ogr_core.h:245
int IsInit() const
Return whether the object has been initialized, that is, is non empty.
Definition ogr_core.h:235
void Merge(double dfX, double dfY, double dfZ)
Update the current object by computing its union with the provided point.
Definition ogr_core.h:267
int Intersects(OGREnvelope3D const &other) const
Return whether the current object intersects with the other rectangle.
Definition ogr_core.h:310
double MaxZ
Maximum Z value.
Definition ogr_core.h:227
OGREnvelope3D & operator=(const OGREnvelope3D &)=default
Assignment operator.
bool Is3D() const
Returns TRUE if MinZ and MaxZ are both valid numbers.
Definition ogr_core.h:218
double MinZ
Minimum Z value.
Definition ogr_core.h:224
OGREnvelope3D()
Default constructor.
Definition ogr_core.h:202
int Contains(OGREnvelope3D const &other) const
Return whether the current object contains the other rectangle.
Definition ogr_core.h:318
void Intersect(OGREnvelope3D const &sOther)
Update the current object by computing its intersection with the other rectangle.
Definition ogr_core.h:279
OGREnvelope3D(const OGREnvelope3D &oOther)
Copy constructor.
Definition ogr_core.h:209
Simple container for a bounding region (rectangle)
Definition ogr_core.h:44
int Contains(OGREnvelope const &other) const
Return whether the current object contains the other rectangle.
Definition ogr_core.h:148
double MinY
Minimum Y value.
Definition ogr_core.h:72
bool operator!=(const OGREnvelope &other) const
Return whether the current rectangle is not equal to the other rectangle.
Definition ogr_core.h:172
double MaxX
Maximum X value.
Definition ogr_core.h:69
void Intersect(OGREnvelope const &sOther)
Update the current object by computing its intersection with the other rectangle.
Definition ogr_core.h:114
double MinX
Minimum X value.
Definition ogr_core.h:66
OGREnvelope()
Default constructor.
Definition ogr_core.h:47
double MaxY
Maximum Y value.
Definition ogr_core.h:75
int IsInit() const
Return whether the object has been initialized, that is, is non empty.
Definition ogr_core.h:83
int Intersects(OGREnvelope const &other) const
Return whether the current object intersects with the other rectangle.
Definition ogr_core.h:141
void Merge(double dfX, double dfY)
Update the current object by computing its union with the provided point.
Definition ogr_core.h:104
bool operator==(const OGREnvelope &other) const
Return whether the current rectangle is equal to the other rectangle.
Definition ogr_core.h:156
OGREnvelope & operator=(const OGREnvelope &)=default
Assignment operator.
OGREnvelope(const OGREnvelope &oOther)
Copy constructor.
Definition ogr_core.h:56
void Merge(OGREnvelope const &sOther)
Update the current object by computing its union with the other rectangle.
Definition ogr_core.h:94
Core portability definitions for CPL.
#define MIN(a, b)
Macro to compute the minimum of 2 values.
Definition cpl_port.h:362
short GInt16
Int16 type.
Definition cpl_port.h:171
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:289
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:285
unsigned char GByte
Unsigned byte type.
Definition cpl_port.h:175
long long GIntBig
Large signed integer type (generally 64-bit integer type).
Definition cpl_port.h:205
#define MAX(a, b)
Macro to compute the maximum of 2 values.
Definition cpl_port.h:364
int GDALCheckVersion(int nVersionMajor, int nVersionMinor, const char *pszCallingComponentName)
Return TRUE if GDAL library version at runtime matches nVersionMajor.nVersionMinor.
Definition gdal_misc.cpp:3042
const char * GDALVersionInfo(const char *)
Get runtime version information.
Definition gdal_misc.cpp:2846
OGRwkbGeometryType OGRMergeGeometryTypesEx(OGRwkbGeometryType eMain, OGRwkbGeometryType eExtra, int bAllowPromotingToCurves)
Find common geometry type.
Definition ogrgeometry.cpp:2982
#define OGRERR_NOT_ENOUGH_MEMORY
Not enough memory.
Definition ogr_core.h:374
int OGR_GT_HasM(OGRwkbGeometryType eType)
Return if the geometry type is a measured type.
Definition ogrgeometry.cpp:7653
int OGR_GT_IsSurface(OGRwkbGeometryType)
Return if a geometry type is an instance of Surface.
Definition ogrgeometry.cpp:8045
int OGRBoolean
Type for a OGR boolean.
Definition ogr_core.h:387
OGRFieldSubType
List of field subtypes.
Definition ogr_core.h:816
@ OFSTBoolean
Boolean integer.
Definition ogr_core.h:819
@ OFSTInt16
Signed 16-bit integer.
Definition ogr_core.h:821
@ OFSTUUID
UUID string representation.
Definition ogr_core.h:832
@ OFSTJSON
JSON content.
Definition ogr_core.h:828
@ OFSTNone
No subtype.
Definition ogr_core.h:817
@ OFSTFloat32
Single precision (32 bit) floating point.
Definition ogr_core.h:824
ogr_style_tool_param_symbol_id
List of parameters for use with OGRStyleSymbol.
Definition ogr_core.h:1165
@ OGRSTSymbolDy
Dy.
Definition ogr_core.h:1171
@ OGRSTSymbolId
Id.
Definition ogr_core.h:1166
@ OGRSTSymbolSize
Size.
Definition ogr_core.h:1169
@ OGRSTSymbolFontName
Font name.
Definition ogr_core.h:1176
@ OGRSTSymbolColor
Color.
Definition ogr_core.h:1168
@ OGRSTSymbolDx
Dx.
Definition ogr_core.h:1170
@ OGRSTSymbolPerp
Perpendicular.
Definition ogr_core.h:1173
@ OGRSTSymbolAngle
Angle.
Definition ogr_core.h:1167
@ OGRSTSymbolOColor
Outline color.
Definition ogr_core.h:1177
@ OGRSTSymbolPriority
Priority.
Definition ogr_core.h:1175
@ OGRSTSymbolStep
Step.
Definition ogr_core.h:1172
@ OGRSTSymbolOffset
Offset.
Definition ogr_core.h:1174
enum ogr_style_tool_param_symbol_id OGRSTSymbolParam
List of parameters for use with OGRStyleSymbol.
OGRFieldDomainMergePolicy
Merge policy for field domains.
Definition ogr_core.h:1271
@ OFDMP_SUM
Sum.
Definition ogr_core.h:1275
@ OFDMP_GEOMETRY_WEIGHTED
New values are computed as the weighted average of the source values.
Definition ogr_core.h:1277
@ OFDMP_DEFAULT_VALUE
Default value.
Definition ogr_core.h:1273
OGRwkbByteOrder
Enumeration to describe byte order.
Definition ogr_core.h:615
@ wkbXDR
MSB/Sun/Motorola: Most Significant Byte First
Definition ogr_core.h:616
@ wkbNDR
LSB/Intel/Vax: Least Significant Byte First
Definition ogr_core.h:617
int OGRParseDate(const char *pszInput, OGRField *psOutput, int nOptions)
Parse date string.
Definition ogrutils.cpp:1072
#define OGRERR_UNSUPPORTED_GEOMETRY_TYPE
Unsupported geometry type.
Definition ogr_core.h:375
OGRFieldDomainType
Type of field domain.
Definition ogr_core.h:1236
@ OFDT_RANGE
Range (min/max)
Definition ogr_core.h:1240
@ OFDT_CODED
Coded.
Definition ogr_core.h:1238
@ OFDT_GLOB
Glob (used by GeoPackage)
Definition ogr_core.h:1242
enum ogr_style_tool_param_pen_id OGRSTPenParam
List of parameters for use with OGRStylePen.
OGRwkbGeometryType OGR_GT_GetLinear(OGRwkbGeometryType eType)
Returns the non-curve geometry type that can contain the passed geometry type.
Definition ogrgeometry.cpp:7982
int OGR_GT_IsCurve(OGRwkbGeometryType)
Return if a geometry type is an instance of Curve.
Definition ogrgeometry.cpp:8024
OGRwkbGeometryType OGR_GT_SetZ(OGRwkbGeometryType eType)
Returns the 3D geometry type corresponding to the passed geometry type.
Definition ogrgeometry.cpp:7676
#define OGRERR_FAILURE
Failure.
Definition ogr_core.h:378
#define OGRERR_UNSUPPORTED_OPERATION
Unsupported operation.
Definition ogr_core.h:376
OGRwkbVariant
Output variants of WKB we support.
Definition ogr_core.h:544
@ wkbVariantPostGIS1
PostGIS 1.X has different codes for CurvePolygon, MultiCurve and MultiSurface.
Definition ogr_core.h:548
@ wkbVariantOldOgc
Old-style 99-402 extended dimension (Z) WKB types.
Definition ogr_core.h:545
@ wkbVariantIso
SFSQL 1.2 and ISO SQL/MM Part 3 extended dimension (Z&M) WKB types.
Definition ogr_core.h:546
#define OGRERR_NONE
Success.
Definition ogr_core.h:372
OGRwkbGeometryType OGRMergeGeometryTypes(OGRwkbGeometryType eMain, OGRwkbGeometryType eExtra)
Find common geometry type.
Definition ogrgeometry.cpp:2946
OGRJustification
Display justification for field values.
Definition ogr_core.h:841
OGRFieldType
List of feature field types.
Definition ogr_core.h:788
@ OFTTime
Time.
Definition ogr_core.h:799
@ OFTInteger64List
List of signed 64bit integers.
Definition ogr_core.h:802
@ OFTIntegerList
List of signed 32bit integers.
Definition ogr_core.h:790
@ OFTDate
Date.
Definition ogr_core.h:798
@ OFTWideStringList
deprecated
Definition ogr_core.h:796
@ OFTInteger
Single signed 32bit integer.
Definition ogr_core.h:789
@ OFTString
String of ASCII chars.
Definition ogr_core.h:793
@ OFTBinary
Raw Binary data.
Definition ogr_core.h:797
@ OFTRealList
List of doubles.
Definition ogr_core.h:792
@ OFTReal
Double Precision floating point.
Definition ogr_core.h:791
@ OFTStringList
Array of strings.
Definition ogr_core.h:794
@ OFTDateTime
Date and Time.
Definition ogr_core.h:800
@ OFTInteger64
Single signed 64bit integer.
Definition ogr_core.h:801
@ OFTWideString
deprecated
Definition ogr_core.h:795
OGRwkbGeometryType OGR_GT_GetCurve(OGRwkbGeometryType eType)
Returns the curve geometry type that can contain the passed geometry type.
Definition ogrgeometry.cpp:7932
OGRwkbGeometryType
List of well known binary geometry types.
Definition ogr_core.h:406
@ wkbPolygon25D
2.5D extension as per 99-402
Definition ogr_core.h:505
@ wkbCurve
Curve (abstract type).
Definition ogr_core.h:433
@ wkbLineString
1-dimensional geometric object with linear interpolation between Points, standard WKB
Definition ogr_core.h:410
@ wkbCircularString
one or more circular arc segments connected end to end, ISO SQL/MM Part 3.
Definition ogr_core.h:422
@ wkbSurfaceZM
ISO SQL/MM Part 3.
Definition ogr_core.h:496
@ wkbPolygon
planar 2-dimensional geometric object defined by 1 exterior boundary and 0 or more interior boundarie...
Definition ogr_core.h:412
@ wkbTriangle
a Triangle.
Definition ogr_core.h:442
@ wkbPoint25D
2.5D extension as per 99-402
Definition ogr_core.h:503
@ wkbSurfaceZ
wkbSurface with Z component.
Definition ogr_core.h:459
@ wkbMultiSurfaceM
ISO SQL/MM Part 3.
Definition ogr_core.h:476
@ wkbPolygonZM
ISO SQL/MM Part 3.
Definition ogr_core.h:485
@ wkbMultiPolygon25D
2.5D extension as per 99-402
Definition ogr_core.h:508
@ wkbPolyhedralSurfaceM
ISO SQL/MM Part 3.
Definition ogr_core.h:479
@ wkbTINZM
ISO SQL/MM Part 3.
Definition ogr_core.h:498
@ wkbMultiPointZM
ISO SQL/MM Part 3.
Definition ogr_core.h:486
@ wkbPointM
ISO SQL/MM Part 3.
Definition ogr_core.h:465
@ wkbMultiLineString
GeometryCollection of LineStrings, standard WKB.
Definition ogr_core.h:416
@ wkbCompoundCurveM
ISO SQL/MM Part 3.
Definition ogr_core.h:473
@ wkbUnknown
unknown type, non-standard
Definition ogr_core.h:407
@ wkbMultiSurfaceZM
ISO SQL/MM Part 3.
Definition ogr_core.h:494
@ wkbTINZ
ISO SQL/MM Part 3.
Definition ogr_core.h:462
@ wkbCircularStringM
ISO SQL/MM Part 3.
Definition ogr_core.h:472
@ wkbPolygonM
ISO SQL/MM Part 3.
Definition ogr_core.h:467
@ wkbMultiCurveM
ISO SQL/MM Part 3.
Definition ogr_core.h:475
@ wkbLinearRing
non-standard, just for createGeometry()
Definition ogr_core.h:445
@ wkbLineStringM
ISO SQL/MM Part 3.
Definition ogr_core.h:466
@ wkbTIN
a PolyhedralSurface consisting only of Triangle patches ISO SQL/MM Part 3.
Definition ogr_core.h:440
@ wkbGeometryCollection25D
2.5D extension as per 99-402
Definition ogr_core.h:509
@ wkbSurfaceM
ISO SQL/MM Part 3.
Definition ogr_core.h:478
@ wkbCurvePolygonM
ISO SQL/MM Part 3.
Definition ogr_core.h:474
@ wkbPolyhedralSurface
a contiguous collection of polygons, which share common boundary segments, ISO SQL/MM Part 3.
Definition ogr_core.h:437
@ wkbSurface
Surface (abstract type).
Definition ogr_core.h:435
@ wkbMultiCurveZ
wkbMultiCurve with Z component.
Definition ogr_core.h:453
@ wkbCircularStringZ
wkbCircularString with Z component.
Definition ogr_core.h:447
@ wkbPoint
0-dimensional geometric object, standard WKB
Definition ogr_core.h:409
@ wkbCompoundCurve
sequence of contiguous curves, ISO SQL/MM Part 3.
Definition ogr_core.h:424
@ wkbPolyhedralSurfaceZ
ISO SQL/MM Part 3.
Definition ogr_core.h:461
@ wkbGeometryCollection
geometric object that is a collection of 1 or more geometric objects, standard WKB
Definition ogr_core.h:419
@ wkbMultiPolygon
GeometryCollection of Polygons, standard WKB.
Definition ogr_core.h:418
@ wkbMultiPoint
GeometryCollection of Points, standard WKB.
Definition ogr_core.h:415
@ wkbMultiLineStringM
ISO SQL/MM Part 3.
Definition ogr_core.h:469
@ wkbMultiCurveZM
ISO SQL/MM Part 3.
Definition ogr_core.h:493
@ wkbMultiPoint25D
2.5D extension as per 99-402
Definition ogr_core.h:506
@ wkbNone
non-standard, for pure attribute records
Definition ogr_core.h:444
@ wkbMultiPointM
ISO SQL/MM Part 3.
Definition ogr_core.h:468
@ wkbCircularStringZM
ISO SQL/MM Part 3.
Definition ogr_core.h:490
@ wkbCurvePolygonZ
wkbCurvePolygon with Z component.
Definition ogr_core.h:451
@ wkbCompoundCurveZM
ISO SQL/MM Part 3.
Definition ogr_core.h:491
@ wkbTriangleZ
ISO SQL/MM Part 3.
Definition ogr_core.h:463
@ wkbPointZM
ISO SQL/MM Part 3.
Definition ogr_core.h:483
@ wkbCurvePolygon
planar surface, defined by 1 exterior boundary and zero or more interior boundaries,...
Definition ogr_core.h:426
@ wkbLineStringZM
ISO SQL/MM Part 3.
Definition ogr_core.h:484
@ wkbMultiSurface
GeometryCollection of Surfaces, ISO SQL/MM Part 3.
Definition ogr_core.h:431
@ wkbMultiPolygonM
ISO SQL/MM Part 3.
Definition ogr_core.h:470
@ wkbCurveZM
ISO SQL/MM Part 3.
Definition ogr_core.h:495
@ wkbLineString25D
2.5D extension as per 99-402
Definition ogr_core.h:504
@ wkbMultiLineStringZM
ISO SQL/MM Part 3.
Definition ogr_core.h:487
@ wkbPolyhedralSurfaceZM
ISO SQL/MM Part 3.
Definition ogr_core.h:497
@ wkbGeometryCollectionZM
ISO SQL/MM Part 3.
Definition ogr_core.h:489
@ wkbTriangleZM
ISO SQL/MM Part 3.
Definition ogr_core.h:499
@ wkbGeometryCollectionM
ISO SQL/MM Part 3.
Definition ogr_core.h:471
@ wkbCurveM
ISO SQL/MM Part 3.
Definition ogr_core.h:477
@ wkbMultiLineString25D
2.5D extension as per 99-402
Definition ogr_core.h:507
@ wkbTriangleM
ISO SQL/MM Part 3.
Definition ogr_core.h:481
@ wkbMultiPolygonZM
ISO SQL/MM Part 3.
Definition ogr_core.h:488
@ wkbTINM
ISO SQL/MM Part 3.
Definition ogr_core.h:480
@ wkbCurveZ
wkbCurve with Z component.
Definition ogr_core.h:457
@ wkbCurvePolygonZM
ISO SQL/MM Part 3.
Definition ogr_core.h:492
@ wkbMultiCurve
GeometryCollection of Curves, ISO SQL/MM Part 3.
Definition ogr_core.h:429
@ wkbCompoundCurveZ
wkbCompoundCurve with Z component.
Definition ogr_core.h:449
@ wkbMultiSurfaceZ
wkbMultiSurface with Z component.
Definition ogr_core.h:455
OGRwkbGeometryType OGR_GT_SetModifier(OGRwkbGeometryType eType, int bSetZ, int bSetM)
Returns a XY, XYZ, XYM or XYZM geometry type depending on parameter.
Definition ogrgeometry.cpp:7727
#define OGRERR_CORRUPT_DATA
Corrupt data.
Definition ogr_core.h:377
ogr_style_tool_param_label_id
List of parameters for use with OGRStyleLabel.
Definition ogr_core.h:1187
@ OGRSTLabelUnderline
Underline.
Definition ogr_core.h:1201
@ OGRSTLabelPriority
Priority.
Definition ogr_core.h:1202
@ OGRSTLabelAdjVert
OBSOLETE; do not use.
Definition ogr_core.h:1206
@ OGRSTLabelBold
Bold.
Definition ogr_core.h:1199
@ OGRSTLabelStrikeout
Strike out.
Definition ogr_core.h:1203
@ OGRSTLabelBColor
Background color.
Definition ogr_core.h:1193
@ OGRSTLabelPlacement
Placement.
Definition ogr_core.h:1194
@ OGRSTLabelPerp
Perpendicular.
Definition ogr_core.h:1198
@ OGRSTLabelOColor
Outline color.
Definition ogr_core.h:1208
@ OGRSTLabelDx
Dx.
Definition ogr_core.h:1196
@ OGRSTLabelHColor
Highlight color.
Definition ogr_core.h:1207
@ OGRSTLabelItalic
Italic.
Definition ogr_core.h:1200
@ OGRSTLabelTextString
Text string.
Definition ogr_core.h:1190
@ OGRSTLabelSize
Size.
Definition ogr_core.h:1189
@ OGRSTLabelAngle
Angle.
Definition ogr_core.h:1191
@ OGRSTLabelFColor
Foreground color.
Definition ogr_core.h:1192
@ OGRSTLabelDy
Dy.
Definition ogr_core.h:1197
@ OGRSTLabelFontName
Font name.
Definition ogr_core.h:1188
@ OGRSTLabelStretch
Stretch.
Definition ogr_core.h:1204
@ OGRSTLabelAnchor
Anchor.
Definition ogr_core.h:1195
@ OGRSTLabelAdjHor
OBSOLETE; do not use.
Definition ogr_core.h:1205
ogr_style_tool_units_id
List of units supported by OGRStyleTools.
Definition ogr_core.h:1115
@ OGRSTUGround
Ground unit.
Definition ogr_core.h:1116
@ OGRSTUMM
Millimeter.
Definition ogr_core.h:1119
@ OGRSTUInches
Inch.
Definition ogr_core.h:1121
@ OGRSTUCM
Centimeter.
Definition ogr_core.h:1120
@ OGRSTUPoints
Points.
Definition ogr_core.h:1118
@ OGRSTUPixel
Pixel.
Definition ogr_core.h:1117
int OGR_GT_IsSubClassOf(OGRwkbGeometryType eType, OGRwkbGeometryType eSuperType)
Returns if a type is a subclass of another one.
Definition ogrgeometry.cpp:7754
OGRwkbGeometryType OGR_GT_GetSingle(OGRwkbGeometryType eType)
Returns the non-collection type that be contained in the passed geometry type.
Definition ogrgeometry.cpp:7878
enum ogr_style_tool_class_id OGRSTClassId
OGRStyleTool derived class types (returned by GetType()).
#define OGRERR_NON_EXISTING_FEATURE
Non existing feature.
Definition ogr_core.h:381
const char * OGRGeometryTypeToName(OGRwkbGeometryType eType)
Fetch a human readable name corresponding to an OGRwkbGeometryType value.
Definition ogrgeometry.cpp:2724
enum ogr_style_tool_units_id OGRSTUnitId
List of units supported by OGRStyleTools.
#define OGRERR_INVALID_HANDLE
Invalid handle.
Definition ogr_core.h:380
enum ogr_style_tool_param_brush_id OGRSTBrushParam
List of parameters for use with OGRStyleBrush.
enum ogr_style_tool_param_label_id OGRSTLabelParam
List of parameters for use with OGRStyleLabel.
#define OGRERR_NOT_ENOUGH_DATA
Not enough data to deserialize.
Definition ogr_core.h:373
int OGRErr
Type for a OGR error.
Definition ogr_core.h:370
int OGR_GET_MS(float fSec)
Return the number of milliseconds from a datetime with decimal seconds.
Definition ogrutils.cpp:2332
ogr_style_tool_param_brush_id
List of parameters for use with OGRStyleBrush.
Definition ogr_core.h:1146
@ OGRSTBrushAngle
Angle.
Definition ogr_core.h:1150
@ OGRSTBrushId
Id.
Definition ogr_core.h:1149
@ OGRSTBrushPriority
Priority.
Definition ogr_core.h:1154
@ OGRSTBrushBColor
Background color.
Definition ogr_core.h:1148
@ OGRSTBrushSize
Size.
Definition ogr_core.h:1151
@ OGRSTBrushDy
Dy.
Definition ogr_core.h:1153
@ OGRSTBrushFColor
Foreground color.
Definition ogr_core.h:1147
@ OGRSTBrushDx
Dx.
Definition ogr_core.h:1152
OGRwkbGeometryType OGR_GT_GetCollection(OGRwkbGeometryType eType)
Returns the collection type that can contain the passed geometry type.
Definition ogrgeometry.cpp:7818
OGRwkbGeometryType OGR_GT_SetM(OGRwkbGeometryType eType)
Returns the measured geometry type corresponding to the passed geometry type.
Definition ogrgeometry.cpp:7700
ogr_style_tool_class_id
OGRStyleTool derived class types (returned by GetType()).
Definition ogr_core.h:1102
@ OGRSTCBrush
Brush.
Definition ogr_core.h:1105
@ OGRSTCVector
Vector.
Definition ogr_core.h:1108
@ OGRSTCNone
None.
Definition ogr_core.h:1103
@ OGRSTCLabel
Label.
Definition ogr_core.h:1107
@ OGRSTCPen
Pen.
Definition ogr_core.h:1104
@ OGRSTCSymbol
Symbol.
Definition ogr_core.h:1106
OGRwkbGeometryType OGR_GT_Flatten(OGRwkbGeometryType eType)
Returns the 2D geometry type corresponding to the passed geometry type.
Definition ogrgeometry.cpp:7604
ogr_style_tool_param_pen_id
List of parameters for use with OGRStylePen.
Definition ogr_core.h:1128
@ OGRSTPenId
Id.
Definition ogr_core.h:1132
@ OGRSTPenCap
Cap.
Definition ogr_core.h:1134
@ OGRSTPenPerOffset
Perpendicular offset.
Definition ogr_core.h:1133
@ OGRSTPenWidth
Width.
Definition ogr_core.h:1130
@ OGRSTPenColor
Color.
Definition ogr_core.h:1129
@ OGRSTPenJoin
Join.
Definition ogr_core.h:1135
@ OGRSTPenPriority
Priority.
Definition ogr_core.h:1136
@ OGRSTPenPattern
Pattern.
Definition ogr_core.h:1131
int OGR_GT_IsNonLinear(OGRwkbGeometryType)
Return if a geometry type is a non-linear geometry type.
Definition ogrgeometry.cpp:8067
#define OGRERR_UNSUPPORTED_SRS
Unsupported SRS.
Definition ogr_core.h:379
int OGR_GT_HasZ(OGRwkbGeometryType eType)
Return if the geometry type is a 3D geometry type.
Definition ogrgeometry.cpp:7629
OGRFieldDomainSplitPolicy
Split policy for field domains.
Definition ogr_core.h:1253
@ OFDSP_DEFAULT_VALUE
Default value.
Definition ogr_core.h:1255
@ OFDSP_DUPLICATE
Duplicate.
Definition ogr_core.h:1257
@ OFDSP_GEOMETRY_RATIO
New values are computed by the ratio of their area/length compared to the area/length of the original...
Definition ogr_core.h:1260
Associates a code and a value.
Definition ogr_core.h:1223
char * pszValue
Value.
Definition ogr_core.h:1228
char * pszCode
Code.
Definition ogr_core.h:1225
OGRFeature field attribute value union.
Definition ogr_core.h:905