Skip to content

Commit 630ddb7

Browse files

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
 

‎python/core/qgis.sip

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ public:
4949
WKBMultiPoint,
5050
WKBMultiLineString,
5151
WKBMultiPolygon,
52-
WKBUnknown
52+
WKBUnknown,
53+
WKBPoint25D = 0x80000001,
54+
WKBLineString25D,
55+
WKBPolygon25D,
56+
WKBMultiPoint25D,
57+
WKBMultiLineString25D,
58+
WKBMultiPolygon25D
5359
};
5460
enum GeometryType
5561
{
@@ -104,6 +110,8 @@ public:
104110
const int PROJ_PREFIX_LEN;
105111
/** The length of teh string "+ellps=" */
106112
const int ELLPS_PREFIX_LEN;
113+
/** The length of the string "+lat_1=" */
114+
const int LAT_PREFIX_LEN;
107115
/** Magick number that determins whether a projection srsid is a system (srs.db)
108116
* or user (~/.qgis.qgis.db) defined projection. */
109117
const int USER_CRS_START_ID;
@@ -116,3 +124,5 @@ public:
116124
const float MINIMUM_POINT_SIZE;
117125
/** Magic number that determines the minimum allowable point size for point symbols */
118126
const float DEFAULT_POINT_SIZE;
127+
const double DEFAULT_LINE_WIDTH;
128+

0 commit comments

Comments
 (0)
Please sign in to comment.